keyobject-to-cryptokey
v1.1.0
Published
Converts KeyObject instances to CryptoKey for use with a given JSON Web Algorithm
Downloads
9
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);