| 1652 | } |
| 1653 | |
| 1654 | static inline char conv_bin2ascii(ULONG l) |
| 1655 | { |
| 1656 | return "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"[l & 0x3f]; |
| 1657 | } |
| 1658 | |
| 1659 | // converts bytes to BASE64 representation |
| 1660 | void base64(Firebird::string& b64, const Firebird::UCharBuffer& bin) |