interface webcrypto.CryptoKeyPair Usage in Denoimport { type webcrypto } from "node:crypto"; type { CryptoKeyPair } = webcrypto; The CryptoKeyPair is a simple dictionary object with publicKey and privateKey properties, representing an asymmetric key pair. Properties privateKey: CryptoKey A CryptoKey whose type will be 'private'. publicKey: CryptoKey A CryptoKey whose type will be 'public'.