I assume it is something I am doing though, I have not worked much with custom modules to be honest, so a newbie at it.
I added you code to a file called aes128cbc.js and placed it in the /extensions/server_connect/modules/ folder along with an hjson file called aes128cbc.hjson
This is what I added to the hjson
[
{
type: 'crypto',
module : 'aes128cbc',
action : 'encrypt',
groupTitle : 'Custom SagePay Crypto',
groupIcon : 'fal fa-lg fal fa-barcode comp-data',
title : 'SagePay Crypto',
icon : 'fal fa-lg fa-barcode comp-data',
dataPickObject: true,
properties : [
{
group: 'Crypto options',
variables: [
{ name: 'name', optionName: 'name', title: 'Name', type: 'text', required: true, defaultValue: 'xxx', help: 'blah'},
{ name: 'data', optionName:'data', title: 'Data', type: 'text', required: true, defaultValue :'', help: 'blah'},
{ name: 'password', optionName:'password', title: 'Password', type: 'password', required: true, defaultValue :'', help: 'blah'},
{ name: 'cryptoOutput', optionName: 'output', title: 'Output', type: 'boolean', defaultValue: false }
]
}
]
},
]
So I am assuming your code is perfect and I have just done something wrong here.