RSA-OAEP key wrapping with SHA-256 as digest function.

The key argument of CCF.wrapKey can be of arbitrary content up to the maximum size supported by the wrapping algorithm. The wrappingKey argument must be a PEM-encoded RSA public key.

interface RsaOaepParams {
    label?: ArrayBuffer;
    name: "RSA-OAEP";
}

Properties

Properties

label?: ArrayBuffer

A label to be associated with the wrapped key.

name: "RSA-OAEP"