n8n-nodes-aes
Version:
n8n community node to encrypt and decrypt data using crypto-js.
24 lines • 666 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.AesKey = void 0;
class AesKey {
constructor() {
this.name = 'aesKey';
this.displayName = 'AES Key API';
this.properties = [
{
displayName: 'AES Key',
name: 'key',
type: 'string',
typeOptions: {
password: false,
rows: 5,
hint: 'AES Key, must be 32 characters long',
},
default: '',
}
];
}
}
exports.AesKey = AesKey;
//# sourceMappingURL=AesKey.credentials.js.map
;