Interface SessionEncryptionResult

Result of producing an EnvelopedData value with the Channel Session Protocol.

interface SessionEncryptionResult {
    dhKeyId: ArrayBuffer;
    dhPrivateKey: CryptoKey;
    envelopedData: SessionEnvelopedData;
}

Properties

dhKeyId: ArrayBuffer

Id of ECDH key pair.

dhPrivateKey: CryptoKey

Private key of the ECDH key pair

envelopedData: SessionEnvelopedData

EnvelopedData value using the Channel Session Protocol.

Generated using TypeDoc