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