import { KmipStruct } from "../json/KmipStruct"; import { CryptographicParameters } from "../types/CryptographicParameters"; export declare class Encrypt implements KmipStruct { private _unique_identifier?; private _cryptographic_parameters?; private _data?; private _iv_counter_nonce?; private _correlation_value?; private _init_indicator?; private _final_indicator?; private _authenticated_encryption_additional_data?; constructor(unique_identifier?: string, cryptographic_parameters?: CryptographicParameters, data?: Uint8Array, iv_counter_nonce?: Uint8Array, correlation_value?: Uint8Array, init_indicator?: boolean, final_indicator?: boolean, authenticated_encryption_additional_data?: Uint8Array); get unique_identifier(): string | undefined; set unique_identifier(value: string | undefined); get cryptographic_parameters(): CryptographicParameters | undefined; set cryptographic_parameters(value: CryptographicParameters | undefined); get data(): Uint8Array | undefined; set data(value: Uint8Array | undefined); get iv_counter_nonce(): Uint8Array | undefined; set iv_counter_nonce(value: Uint8Array | undefined); get correlation_value(): Uint8Array | undefined; set correlation_value(value: Uint8Array | undefined); get init_indicator(): boolean | undefined; set init_indicator(value: boolean | undefined); get final_indicator(): boolean | undefined; set final_indicator(value: boolean | undefined); get authenticated_encryption_additional_data(): Uint8Array | undefined; set authenticated_encryption_additional_data(value: Uint8Array | undefined); equals(o: any): boolean; toString(): string; } //# sourceMappingURL=Encrypt.d.ts.map