Encrypts data
OperationsEncrypt input using AES-256
function : AES256(key:Byte[], input:Byte[]) ~ Byte[]
Name | Type | Description |
---|---|---|
key | Byte[] | encryption key |
input | Byte[] | bytes to encrypted |
Type | Description |
---|---|
Byte[] | encrypted bytes |
Encode input using Base64
function : native : Base64(in:String) ~ String
Name | Type | Description |
---|---|---|
in | String | bytes to encoded |
Type | Description |
---|---|
String | encoded bytes |