UNPKG

@requestnetwork/multi-format

Version:
15 lines 656 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Aes256GcmMultiFormat = void 0; const types_1 = require("@requestnetwork/types"); const serializable_multi_format_1 = require("../serializable-multi-format"); /** * Class to serialize and deserialize multi-format AES-256-GCM encrypted data */ class Aes256GcmMultiFormat extends serializable_multi_format_1.SerializableMultiFormat { constructor() { super(types_1.MultiFormatTypes.prefix.AES256_GCM_ENCRYPTED, types_1.EncryptionTypes.METHOD.AES256_GCM); } } exports.Aes256GcmMultiFormat = Aes256GcmMultiFormat; //# sourceMappingURL=aes256-gcm-format.js.map