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.DesKey = void 0;
class DesKey {
constructor() {
this.name = 'desKey';
this.displayName = 'DES Key API';
this.properties = [
{
displayName: 'DES Key',
name: 'key',
type: 'string',
typeOptions: {
password: false,
rows: 5,
hint: 'DES Key, must be 32 characters long',
},
default: '',
}
];
}
}
exports.DesKey = DesKey;
//# sourceMappingURL=DesKey.credentials.js.map
;