Searched refs:bufOut (Results 1 – 2 of 2) sorted by relevance
| /developtools/hdc/src/common/ |
| D | base.h | 76 int Base64EncodeBuf(const uint8_t *input, const int length, uint8_t *bufOut); 78 int Base64DecodeBuf(const uint8_t *input, const int length, uint8_t *bufOut);
|
| D | base.cpp | 1204 int Base64EncodeBuf(const uint8_t *input, const int length, uint8_t *bufOut) in Base64EncodeBuf() argument 1206 return EVP_EncodeBlock(bufOut, input, length); in Base64EncodeBuf() 1253 int Base64DecodeBuf(const uint8_t *input, const int length, uint8_t *bufOut) in Base64DecodeBuf() argument 1260 if (EVP_DecodeBlock(bufOut, input, length) > 0) { in Base64DecodeBuf()
|