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