Classes | |
| class | SHA1DigestAlgorythm |
| class | SHA1Hash |
| SHA1 Hash data More... | |
Functions | |
| bool | IsBase64 (Char8 c) |
| Query if the char is Base64 . More... | |
| void | Base64Encode (const void *data, const Int32 dataSize, BaseStaticString &result) |
| Base64Encode . More... | |
| void | Base64Encode (const void *data, const Int32 dataSize, Stream &result) |
| Base64Encode . More... | |
| void | Base64Encode (Stream &source, Stream &result) |
| Base64Encode . More... | |
| Int32 | Base64Decode (PCChar8 source, void *data, const Int32 dataSize) |
| Base64Decode . More... | |
Base64Decode .
| source | The data source (string with char 0 at the end). Length must be a multiple of 4. |
| data | [out] The result of decoding |
| dataSize | Size of the data buffer. Base64 decoding converts four encoded characters into tree bytes. |
| void Base64Encode | ( | const void * | data, |
| const Int32 | dataSize, | ||
| BaseStaticString & | result | ||
| ) |
Base64Encode .
| data | the data buffer. |
| dataSize | size of the data buffer |
| result | [out] the result of encoding |
Base64Encode .
| data | the data buffer. |
| dataSize | size of the data buffer |
| result | [out] the result of encoding |
Base64Encode .
| source | the data spurce stream. |
| result | [out] the result of encoding |
| bool IsBase64 | ( | Char8 | c | ) |
Query if the char is Base64 .
| c | the char |