Decodes to supplied chain, the supplied encoded string
| Return Type | Function name | Arguments |
|---|---|---|
| hzEcode | Base64Decode | (hzChain&,hzString&,) |
Declared in file: hzCodec.h
Defined in file : hzCodec.cpp
Function Logic:
Function body:
hzEcode Base64Decode (hzChain& Decoded)hzString& str,
{
// Category: Codec
//
// Decodes to supplied chain, the supplied encoded string
return Base64Decode(Decoded, *str) ;
}