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