Base64Decode
See javadoc - uk.gov.gchq.koryphe.impl.function.Base64Decode
Available since Koryphe version 1.8.0
Decodes a base64 encoded byte array
Examples
Decode base 64
Java
JSON
Full JSON
Python
final Base64Decode function = new Base64Decode();
{
"class" : "Base64Decode"
}
{
"class" : "uk.gov.gchq.koryphe.impl.function.Base64Decode"
}
g.Base64Decode()
Input type:
byte[]
Example inputs:
Input Type | Input | Result Type | Result |
---|---|---|---|
byte[] | dGVzdCBzdHJpbmc= | byte[] | test string |
null | null |