Interface AesEncryption<I, G>

AES encryption algorithm.

interface AesEncryption<I, G> {
    cryptoGenerate: ((params, extractable) => Promise<GeneratedSecretKey<I>>);
    importSpki?: ((spki, der) => Promise<CryptoAlgorithm.PublicKey<I>>);
    ivLength: number;
    keyUsages: Record<"secret", readonly KeyUsage[]>;
    makeAesKeyGenParams: ((genParams) => AesKeyGenParams);
    makeLLDecrypt: ((key) => LLDecrypt);
    makeLLEncrypt: ((key) => LLEncrypt);
    uuid: string;
}

Type Parameters

  • I
  • G extends AesGenParams

Hierarchy (view full)

Properties

cryptoGenerate: ((params, extractable) => Promise<GeneratedSecretKey<I>>)

Generate key pair (for asymmetric algorithm) or secret key (for symmetric algorithm).

Type declaration

    • (params, extractable): Promise<GeneratedSecretKey<I>>
    • Parameters

      • params: G

        Key generation parameters.

      • extractable: boolean

        Whether to generate as extractable WebCrypto key.

      Returns Promise<GeneratedSecretKey<I>>

Returns

Generated key pair or secret key.

Remarks

Some algorithms allow importing an existing key pair from a serialization format such as PKCS#8 or JWK. This could be supported by passing the serialized key as part of params, and then importing instead of generating in this method.

importSpki?: ((spki, der) => Promise<CryptoAlgorithm.PublicKey<I>>)

Import public key from SubjectPublicKeyInfo.

Type declaration

Remarks

This should only appear on asymmetric algorithm.

ivLength: number
keyUsages: Record<"secret", readonly KeyUsage[]>

WebCrypto KeyUsages for generated keys. These are specified separately for private/public/secret keys.

makeAesKeyGenParams: ((genParams) => AesKeyGenParams)

Type declaration

    • (genParams): AesKeyGenParams
    • Parameters

      • genParams: G

      Returns AesKeyGenParams

makeLLDecrypt: ((key) => LLDecrypt)

Create a low level decryption function from private key (in asymmetric algorithm) or secret key (in symmetric algorithm).

Type declaration

makeLLEncrypt: ((key) => LLEncrypt)

Create a low level encryption function from public key (in asymmetric algorithm) or secret key (in symmetric algorithm).

Type declaration

uuid: string

Identifies an algorithm in storage.

Remarks

This should be changed when the serialization format changes.

Generated using TypeDoc