Skip to content

Commit

Permalink
cleaning
Browse files Browse the repository at this point in the history
  • Loading branch information
OR13 committed Oct 3, 2024
1 parent e05f008 commit 2fcaaed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cbor/pretty/prettyCose.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as cbor from 'cbor-web'
import { prettyCoseSign1 } from './prettyCoseSign1'

export const prettyCose = (data: Buffer) => {
export const prettyCose = (data: ArrayBuffer) => {
const decoded = cbor.decode(data)
if (decoded.tag === 18) {
return prettyCoseSign1(data)
Expand Down

0 comments on commit 2fcaaed

Please sign in to comment.