/external/chromium_org/third_party/openssl/openssl/crypto/poly1305/ |
poly1305test.c | 98 static void hex_decode(unsigned char *out, const char* hex) function 140 hex_decode(key, test->keyhex); 141 hex_decode(expected, test->outhex); 145 hex_decode(in, test->inputhex);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
hex_codec.py | 27 def hex_decode(input,errors='strict'): function 50 return hex_decode(input,errors) 74 decode=hex_decode,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
hex_codec.py | 27 def hex_decode(input,errors='strict'): function 50 return hex_decode(input,errors) 74 decode=hex_decode,
|
/external/chromium_org/third_party/openssl/openssl/crypto/chacha/ |
chachatest.c | 111 static void hex_decode(unsigned char *out, const char* hex) function 165 hex_decode(key, test->keyhex); 166 hex_decode(nonce, test->noncehex); 176 hex_decode(expected, test->outhex);
|
/external/chromium/third_party/libjingle/source/talk/base/ |
stringencode.cc | 50 bool hex_decode(char ch, unsigned char* val) { 141 && hex_decode(source[srcpos], &h1) 142 && hex_decode(source[srcpos+1], &h2)) { 221 && hex_decode(source[srcpos], &h1) 222 && hex_decode(source[srcpos+1], &h2)) 475 size_t hex_decode(char * cbuffer, size_t buflen, 487 && hex_decode(source[srcpos], &h1) 488 && hex_decode(source[srcpos+1], &h2))
|
stringencode.h | 44 bool hex_decode(char ch, unsigned char* val); 104 size_t hex_decode(char * buffer, size_t buflen,
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
stringencode.cc | 121 && hex_decode(source[srcpos], &h1) 122 && hex_decode(source[srcpos+1], &h2)) { 201 && hex_decode(source[srcpos], &h1) 202 && hex_decode(source[srcpos+1], &h2)) 434 bool hex_decode(char ch, unsigned char* val) { 499 size_t hex_decode(char * cbuffer, size_t buflen, 525 if (!hex_decode(source[srcpos], &h1) || 526 !hex_decode(source[srcpos + 1], &h2)) 543 size_t hex_decode(char* buffer, size_t buflen, const std::string& source) {
|
stringencode.h | 101 bool hex_decode(char ch, unsigned char* val); 119 // hex_decode converts ascii hex to binary. 120 size_t hex_decode(char* buffer, size_t buflen, 123 // hex_decode, assuming that there is a delimiter between every byte 131 // Helper functions for hex_decode. 132 size_t hex_decode(char* buffer, size_t buflen, const std::string& source);
|
stringencode_unittest.cc | 101 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_); 142 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_); 150 dec_res_ = hex_decode(decoded_, sizeof(decoded_), encoded_, enc_res_); 167 dec_res_ = hex_decode(decoded_, sizeof(decoded_), result);
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
turnserver_main.cc | 52 size_t len = talk_base::hex_decode(buf, sizeof(buf), hex);
|
turnserver.cc | 496 size_t len = talk_base::hex_decode(p, sizeof(then), [all...] |