Decrypts data
OperationsDecrypts input using AES-256
function : AES256(key:Byte[], stream_in:Byte[]) ~ Byte[]
Name | Type | Description |
---|---|---|
key | Byte[] | encryption key |
stream_in | Byte[] | bytes to decrypted |
Type | Description |
---|---|
Byte[] | decrypted bytes |
Decrypts input using Base64
function : native : Base64(input:String) ~ Byte[]
Name | Type | Description |
---|---|---|
input | String | input bytes to decrypted |
Type | Description |
---|---|
Byte[] | decrypted bytes |