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

  /external/chromium_org/third_party/boringssl/src/crypto/modes/
gcm_test.c 257 static int decode_hex(uint8_t **out, size_t *out_len, const char *in, function
322 if (!decode_hex(&key, &key_len, test->key, test_num, "key") ||
323 !decode_hex(&plaintext, &plaintext_len, test->plaintext, test_num,
325 !decode_hex(&additional_data, &additional_data_len, test->additional_data,
327 !decode_hex(&nonce, &nonce_len, test->nonce, test_num, "nonce") ||
328 !decode_hex(&ciphertext, &ciphertext_len, test->ciphertext, test_num,
330 !decode_hex(&tag, &tag_len, test->tag, test_num, "tag")) {
  /external/chromium_org/third_party/boringssl/src/crypto/bn/
convert.c 229 /* decode_hex decodes |i| bytes of hex data from |in| and updates |bn|. */
230 static void decode_hex(BIGNUM *bn, const char *in, int i) { function
345 return bn_x2bn(outp, in, decode_hex, isxdigit);

Completed in 1464 milliseconds