@backblaze-labs/b2-sdk - v0.1.0
    Preparing search index...

    Interface SseCCustomerSetting

    Server-side encryption using customer-provided keys (SSE-C).

    interface SseCCustomerSetting {
        algorithm: "AES256";
        customerKey: string;
        customerKeyMd5: string;
        mode: "SSE-C";
    }
    Index

    Properties

    algorithm: "AES256"

    Encryption algorithm. Always 'AES256'.

    customerKey: string

    Base64-encoded 256-bit encryption key provided by the customer.

    customerKeyMd5: string

    Base64-encoded MD5 digest of the customer-provided key, used for integrity verification.

    mode: "SSE-C"

    Encryption mode discriminator. Always 'SSE-C'.