@nebius/js-sdk - v0.2.22
    Preparing search index...

    Interface SymmetricDecryptRequest

    interface SymmetricDecryptRequest {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.kms.v1.SymmetricDecryptRequest";
        aadContext: Uint8Array;
        ciphertext: Uint8Array;
        keyId: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined
    Index

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.kms.v1.SymmetricDecryptRequest"
    aadContext: Uint8Array

    Additional authenticated data, must be the same as was provided in the corresponding [SymmetricEncryptRequest]. Should be encoded with base64.

    ciphertext: Uint8Array

    Ciphertext to be decrypted. Should be encoded with base64.

    keyId: string

    ID of the symmetric KMS key to use for decryption.