@sovereignbase/cryptosuite
    Preparing search index...

    Type Alias CipherKey

    CipherKey:
        | JsonWebKey & {
            crv?: undefined;
            d?: undefined;
            dp?: undefined;
            dq?: undefined;
            e?: undefined;
            n?: undefined;
            oth?: undefined;
            p?: undefined;
            q?: undefined;
            qi?: undefined;
            x?: undefined;
            y?: undefined;
        } & {
            alg: "A256CTR";
            k: string;
            key_ops: readonly ("encrypt" | "decrypt")[];
            kty: "oct";
            use: "enc";
        }
        | JsonWebKey & {
            crv?: undefined;
            d?: undefined;
            dp?: undefined;
            dq?: undefined;
            e?: undefined;
            n?: undefined;
            oth?: undefined;
            p?: undefined;
            q?: undefined;
            qi?: undefined;
            x?: undefined;
            y?: undefined;
        } & {
            alg: "A256GCM";
            k: string;
            key_ops: readonly ("encrypt" | "decrypt")[];
            kty: "oct";
            use: "enc";
        }

    Symmetric AES-CTR-256 JWK used for cipher messaging operations.