keyobject-to-cryptokey
v1.0.2
Published
Converts KeyObject instances to CryptoKey for use with a given JSON Web Algorithm
Downloads
14
Readme
keyobject-to-cryptokey
Converts KeyObject instances to CryptoKey for use with a given JSON Web Algorithm
import { convert } from "keyobject-to-cryptokey";
let key!: crypto.KeyObject;
let alg!: string;
const cryptoKey = convert(key, alg);