UNPKG

@confluentinc/schemaregistry

Version:
43 lines (42 loc) 1.3 kB
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1"; import type { Message } from "@bufbuild/protobuf"; /** * Describes the file rules/encryption/tink/proto/aes_gcm.proto. */ export declare const file_rules_encryption_tink_proto_aes_gcm: GenFile; /** * @generated from message google.crypto.tink.AesGcmKeyFormat */ export type AesGcmKeyFormat = Message<"google.crypto.tink.AesGcmKeyFormat"> & { /** * @generated from field: uint32 key_size = 2; */ keySize: number; /** * @generated from field: uint32 version = 3; */ version: number; }; /** * Describes the message google.crypto.tink.AesGcmKeyFormat. * Use `create(AesGcmKeyFormatSchema)` to create a new message. */ export declare const AesGcmKeyFormatSchema: GenMessage<AesGcmKeyFormat>; /** * @generated from message google.crypto.tink.AesGcmKey */ export type AesGcmKey = Message<"google.crypto.tink.AesGcmKey"> & { /** * @generated from field: uint32 version = 1; */ version: number; /** * @generated from field: bytes key_value = 3; */ keyValue: Uint8Array; }; /** * Describes the message google.crypto.tink.AesGcmKey. * Use `create(AesGcmKeySchema)` to create a new message. */ export declare const AesGcmKeySchema: GenMessage<AesGcmKey>;