| /NextBSD/tests/sys/opencrypto/ |
| HD | cryptotest.py | 94 cipherkey = data['Key'].decode('hex') 95 iv = data['IV'].decode('hex') 96 aad = data['AAD'].decode('hex') 97 tag = data['Tag'].decode('hex') 99 pt = data['PT'].decode('hex') 100 ct = data['CT'].decode('hex') 147 cipherkey = data['KEY'].decode('hex') 148 iv = data['IV'].decode('hex') 149 pt = data['PLAINTEXT'].decode('hex') 150 ct = data['CIPHERTEXT'].decode('hex') [all …]
|
| HD | cryptodev.py | 388 return ''.join(s.split()).decode('hex') 533 …o(CRYPTO_AES_XTS, '1bbfeadf539daedcae33ced497343f3ca1f2474ad932b903997d44707db41382'.decode('hex')) 534 data = '52a42bca4e9425a25bbc8c8bf6129dec'.decode('hex') 535 ct = '517e602becd066b65fa4f4f56ddfe240'.decode('hex') 541 …o(CRYPTO_AES_XTS, '1bbfeadf539daedcae33ced497343f3ca1f2474ad932b903997d44707db41382'.decode('hex')) 542 data = '52a42bca4e9425a25bbc8c8bf6129dec'.decode('hex') 543 ct = '517e602becd066b65fa4f4f56ddfe240'.decode('hex') 555 key = '1bbfeadf539daedcae33ced497343f3ca1f2474ad932b903997d44707db41382'.decode('hex')
|
| /NextBSD/contrib/tcpdump/ |
| HD | print-esp.c | 255 char *decode, struct sa_list *sa) in espprint_decode_encalgo() argument 262 colon = strchr(decode, ':'); in espprint_decode_encalgo() 264 (*ndo->ndo_warning)(ndo, "failed to decode espsecret: %s\n", decode); in espprint_decode_encalgo() 269 if (strlen(decode) > strlen("-hmac96") && in espprint_decode_encalgo() 270 !strcmp(decode + strlen(decode) - strlen("-hmac96"), in espprint_decode_encalgo() 272 p = strstr(decode, "-hmac96"); in espprint_decode_encalgo() 276 if (strlen(decode) > strlen("-cbc") && in espprint_decode_encalgo() 277 !strcmp(decode + strlen(decode) - strlen("-cbc"), "-cbc")) { in espprint_decode_encalgo() 278 p = strstr(decode, "-cbc"); in espprint_decode_encalgo() 281 evp = EVP_get_cipherbyname(decode); in espprint_decode_encalgo() [all …]
|
| /NextBSD/contrib/elftoolchain/libdwarf/ |
| HD | libdwarf_loc.c | 194 operand1 = dbg->decode(&p, 2); in _dwarf_loc_fill_loc() 198 operand1 = (int16_t) dbg->decode(&p, 2); in _dwarf_loc_fill_loc() 205 operand1 = dbg->decode(&p, 4); in _dwarf_loc_fill_loc() 209 operand1 = (int32_t) dbg->decode(&p, 4); in _dwarf_loc_fill_loc() 215 operand1 = dbg->decode(&p, 8); in _dwarf_loc_fill_loc() 304 operand1 = dbg->decode(&p, pointer_size); in _dwarf_loc_fill_loc() 309 operand1 = dbg->decode(&p, offset_size); in _dwarf_loc_fill_loc() 321 operand1 = dbg->decode(&p, s); in _dwarf_loc_fill_loc() 333 operand1 = dbg->decode(&p, pointer_size); in _dwarf_loc_fill_loc() 335 operand1 = dbg->decode(&p, offset_size); in _dwarf_loc_fill_loc()
|
| /NextBSD/sys/boot/i386/kgzldr/ |
| HD | boot.c | 64 static int decode(void); 78 err = decode(); in boot() 93 decode(void) in decode() function
|
| /NextBSD/tools/test/ptrace/ |
| HD | scescx.c | 92 } decode[] = { in decode_pl_flags() local 107 for (i = 0; i < sizeof(decode) / sizeof(decode[0]); i++) { in decode_pl_flags() 108 if ((flags & decode[i].flag) != 0) { in decode_pl_flags() 113 strlcat(c, decode[i].desc, sizeof(c)); in decode_pl_flags() 114 flags &= ~decode[i].flag; in decode_pl_flags()
|
| /NextBSD/crypto/openssl/doc/crypto/ |
| HD | d2i_DSAPublicKey.pod | 36 d2i_DSAPublicKey() and i2d_DSAPublicKey() decode and encode the DSA public key 39 d2i_DSA_PUBKEY() and i2d_DSA_PUBKEY() decode and encode an DSA public key using 42 d2i_DSAPrivateKey(), i2d_DSAPrivateKey() decode and encode the DSA private key 45 d2i_DSAparams(), i2d_DSAparams() decode and encode the DSA parameters using 48 d2i_DSA_SIG(), i2d_DSA_SIG() decode and encode a DSA signature using a
|
| HD | d2i_RSAPublicKey.pod | 32 d2i_RSAPublicKey() and i2d_RSAPublicKey() decode and encode a PKCS#1 RSAPublicKey 35 d2i_RSA_PUBKEY() and i2d_RSA_PUBKEY() decode and encode an RSA public key using 38 d2i_RSAPrivateKey(), i2d_RSAPrivateKey() decode and encode a PKCS#1 RSAPrivateKey 41 d2i_Netscape_RSA(), i2d_Netscape_RSA() decode and encode an RSA private key in
|
| /NextBSD/usr.bin/logger/ |
| HD | logger.c | 60 static int decode(char *, const CODE *); 258 fac = decode(save, facilitynames); in pencode() 267 lev = decode(s, prioritynames); in pencode() 274 decode(char *name, const CODE *codetab) in decode() function
|
| /NextBSD/lib/libdispatch/src/ |
| HD | transform.c | 988 if (input->decode) { in dispatch_data_create_with_transform() 989 temp1 = input->decode(data); in dispatch_data_create_with_transform() 1015 .decode = NULL, 1025 .decode = _dispatch_transform_from_base32, 1036 .decode = _dispatch_transform_from_base32hex, 1046 .decode = _dispatch_transform_from_base64, 1056 .decode = _dispatch_transform_from_utf16le, 1066 .decode = _dispatch_transform_from_utf16be, 1076 .decode = NULL, 1084 .decode = NULL,
|
| /NextBSD/crypto/heimdal/lib/asn1/ |
| HD | check-common.h | 55 int (ASN1CALL *decode)(unsigned char *, size_t, void *, size_t *), 64 int (ASN1CALL *decode)(unsigned char *, size_t, void *, size_t *));
|
| HD | check-common.c | 201 int (ASN1CALL *decode)(unsigned char *, size_t, void *, size_t *), in generic_test() 285 ret = (*decode) (buf2, sz, data, &consumed_sz); in generic_test() 357 int (ASN1CALL *decode)(unsigned char *, size_t, void *, size_t *)) in generic_decode_fail() 404 ret = (*decode) (buf, tests[i].byte_len, data, &sz); in generic_decode_fail()
|
| HD | cms.opt | 1 --decode-dce-ber
|
| /NextBSD/contrib/ntp/ntpd/ |
| HD | refclock_chu.c | 330 u_char decode[20][16]; /* maximum-likelihood decoding matrix */ member 1276 up->decode[9][j] = up->decode[9][j - 1]; in chu_a() 1277 up->decode[19][j] = in chu_a() 1278 up->decode[19][j - 1]; in chu_a() 1280 up->decode[9][j] = up->decode[19][j] = 0; in chu_a() 1294 up->decode[i][up->cbuf[j] & 0xf]++; in chu_a() 1296 up->decode[i][(up->cbuf[j] >> 4) & 0xf]++; in chu_a() 1463 temp = up->decode[i][j] + up->decode[i + 10][j]; in chu_major() 1514 up->decode[i][j] = 0; in chu_clear()
|
| /NextBSD/sys/contrib/ngatm/netnatm/msg/ |
| HD | priv.h | 73 uni_decode_f decode; member 82 uni_msg_decode_f decode; member
|
| /NextBSD/crypto/heimdal/appl/ftp/ftp/ |
| HD | security.h | 56 int (*decode)(void *, void*, int, int); member 67 int (*decode)(void *, void*, int, int); member
|
| /NextBSD/usr.bin/uudecode/ |
| HD | uudecode.c | 73 static int decode(void); 137 rval |= decode(); in main() 143 rval = decode(); in main() 149 decode(void) in decode() function
|
| /NextBSD/tools/tools/vt/keymaps/ |
| HD | convert-keymap.pl | 52 my $ucs_char = ord(Encode::decode("UTF-8", local_to_UCS_string($char))); 73 return prettyprint_token(ord(Encode::decode("UTF-8", $char)));
|
| /NextBSD/contrib/bzip2/ |
| HD | bzip2.c | 1782 Bool decode; in main() local 1837 decode = True; in main() 1839 if (ISFLAG("--")) { decode = False; continue; } in main() 1840 if (aa->name[0] == '-' && decode) continue; in main() 1963 decode = True; in main() 1965 if (ISFLAG("--")) { decode = False; continue; } in main() 1966 if (aa->name[0] == '-' && decode) continue; in main() 1979 decode = True; in main() 1981 if (ISFLAG("--")) { decode = False; continue; } in main() 1982 if (aa->name[0] == '-' && decode) continue; in main() [all …]
|
| /NextBSD/contrib/wpa/wpa_supplicant/examples/ |
| HD | wps-nfc.py | 84 return ret.rstrip().decode("hex") 94 return ret.rstrip().decode("hex") 104 return ret.rstrip().decode("hex") 113 return ret.rstrip().decode("hex") 126 return res.decode("hex")
|
| /NextBSD/sys/dev/ie/ |
| HD | if_ie_isa.c | 433 u_short eaddrtemp, pg, adjust, decode, edecode; in ie_isa_ee16_attach() local 490 decode = ((1 << (sc->iosize / 16384)) - 1) << pg; in ie_isa_ee16_attach() 491 edecode = ((~decode >> 4) & 0xF0) | (decode >> 8); in ie_isa_ee16_attach() 494 outb(PORT(sc) + IEE16_MEMDEC, decode & 0xFF); in ie_isa_ee16_attach() 498 outb(PORT(sc) + IEE16_MPCTRL, (~decode & 0xFF)); in ie_isa_ee16_attach()
|
| /NextBSD/contrib/wpa/hostapd/ |
| HD | wps-ap-nfc.py | 78 return ret.rstrip().decode("hex") 88 return ret.rstrip().decode("hex") 98 return ret.rstrip().decode("hex")
|
| /NextBSD/contrib/ntp/ntpq/ |
| HD | ntpq.texi | 228 @tab @url{decode.html#peer, peer status word} 240 @tab selection status (see the @code{select} field of the @url{decode.html#peer, peer status word}) 243 @tab event report (see the @code{event} field of the @url{decode.html#peer, peer status word}) 246 event count (see the @code{count} field of the @url{decode.html#peer, peer status word}) 376 of the @url{decode.html#peer, peer status word}. 384 association ID or @url{decode.html#kiss, kiss code}. 482 @url{decode.html, Event Messages and Status Words} page. 488 @url{decode.html#kiss, kiss codes}. 506 @url{decode.html#sys, system status word} 555 reference ID or @url{decode.html#kiss, kiss code} [all …]
|
| /NextBSD/usr.sbin/vidcontrol/ |
| HD | decode.h | 3 int decode(FILE *fd, char *buffer, int len);
|
| /NextBSD/contrib/jansson/test/suites/invalid-unicode/invalid-utf-8-in-array/ |
| HD | error | 2 unable to decode byte 0xe5
|