Searched refs:cbDecoded (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/common/crypto/
H A Dpemfile.cpp232 ssize_t cbDecoded = RTBase64DecodedSizeEx((const char *)pbContent, cbContent, NULL); local
233 if (cbDecoded < 0)
236 *pcbDecoded = cbDecoded;
237 void *pvDecoded = RTMemAlloc(cbDecoded);
242 int rc = RTBase64DecodeEx((const char *)pbContent, cbContent, pvDecoded, cbDecoded, &cbActual, NULL);
245 if (cbActual == (size_t)cbDecoded)

Completed in 81 milliseconds