Ik heb het antwoord kunnen achterhalen. Voor My-SQL
om te decoderen:
SELECT CAST(AES_DECRYPT(encrypted-field,'my-encryption-key') as CHAR(50)) from table
versleutelen:
SELECT AES_ENCRYPT(encrypted-field,'my-encryption-key') from table;
Voor H2:
versleutelen:
ENCRYPT('AES', STRINGTOUTF8('<encryption-key>'), STRINGTOUTF8('<text to be encrypted>'))
decoderen:
TRIM(CHAR(0) FROM UTF8TOSTRING(DECRYPT('AES', STRINGTOUTF8('<encryption-key>'), '<text to be encrypted>')))