cose-kit
Version:
This is an early prototype of a RFC8152 COSE library for node.js.
5 lines (4 loc) • 312 B
TypeScript
import { JWK, KeyLike } from 'jose';
export declare function COSEKeyToJWK(coseKey: Uint8Array | Map<number, unknown>): JWK;
export declare function importCOSEKey(coseKey: Uint8Array | Map<number, number | Uint8Array>): Promise<Uint8Array | KeyLike>;
export declare function COSEKeyFromJWK(jwk: JWK): Uint8Array;