HomeSort by relevance Sort by last modified time
    Searched refs:EVP_DecodeBlock (Results 1 - 4 of 4) sorted by null

  /external/boringssl/src/include/openssl/
base64.h 156 /* EVP_DecodeBlock encodes |src_len| bytes from |src| and writes the result to
159 * WARNING: EVP_DecodeBlock's return value does not take padding into
162 OPENSSL_EXPORT int EVP_DecodeBlock(uint8_t *dst, const uint8_t *src,
  /external/boringssl/src/crypto/base64/
base64.c 404 int EVP_DecodeBlock(uint8_t *dst, const uint8_t *src, size_t src_len) {
436 /* EVP_DecodeBlock does not take padding into account, so put the
base64_test.cc 206 EVP_DecodeBlock(out, (const uint8_t *)encoded.data(), encoded.size());
208 fprintf(stderr, "EVP_DecodeBlock(\"%s\") failed\n", t->encoded);
212 fprintf(stderr, "EVP_DecodeBlock did not ignore padding\n");
  /external/boringssl/src/decrepit/bio/
base64_bio.c 268 z = EVP_DecodeBlock((uint8_t *)ctx->buf, (uint8_t *)ctx->tmp, jj);

Completed in 48 milliseconds