/freebsd/contrib/libcbor/test/ |
H A D | string_test.c | 16 unsigned char empty_string_data[] = {0x60}; 23 assert_size_equal(cbor_string_length(string), 0); in test_empty_string() 24 assert_size_equal(cbor_string_codepoint_count(string), 0); in test_empty_string() 30 unsigned char short_string_data[] = {0x6C, 0x48, 0x65, 0x6C, 0x6C, 0x6 [all...] |
/freebsd/sys/dev/aic7xxx/ |
H A D | aic7xxx_seq.h | 9 0xb2, 0x00, 0x00, 0x08, 10 0xf7, 0x11, 0x22, 0x08, 11 0x00, 0x65, 0xee, 0x59, 12 0xf7, 0x01, 0x02, 0x08, 13 0xff, 0x6a, 0x24, 0x08, 14 0x40, 0x00, 0x40, 0x68, 15 0x08, 0x1f, 0x3e, 0x10, 16 0x40, 0x00, 0x40, 0x68, 17 0xff, 0x40, 0x3c, 0x60, 18 0x08, 0x1f, 0x3e, 0x10, [all …]
|
/freebsd/usr.sbin/ppp/ |
H A D | chap_ms.c | 60 {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 61 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 62 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 63 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 66 {0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 67 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 68 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 69 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2, 0xF2}; 89 return word & 0xFE; in Get7Bits() 97 des_key[0] = Get7Bits(key, 0); in MakeKey() [all …]
|
/freebsd/crypto/heimdal/lib/hx509/ |
H A D | test_name.c | 51 if (strcmp(s, name) != 0) in test_name() 57 return 0; in test_name() 66 return 0; in test_name_fail() 95 ret = strcmp(s, expected) != 0; in test_expand() 100 return 0; in test_expand() 105 "\x81\x2d\x8a\x82\x65\xe0\x0b\x02\xee\x3e\x35\x02\x46\xe5\x3d\x30" 108 "\x30\x19\x06\x03\x55\x04\x08\x13\x12\x47\x72\x65\x61\x74\x65\x72" 109 "\x20\x4d\x61\x6e\x63\x68\x65\x73\x74\x65\x72\x31\x10\x30\x0e\x06" 112 "\x41\x20\x4c\x69\x6d\x69\x74\x65\x64\x31\x27\x30\x25\x06\x03\x55" 113 "\x04\x03\x13\x1e\x43\x4f\x4d\x4f\x44\x4f\x20\x43\x65\x72\x74\x69" [all …]
|
/freebsd/contrib/libfido2/regress/ |
H A D | compress.c | 23 0x78, 0x9c, 0xb5, 0x52, 0x3b, 0x6f, 0xdb, 0x30, 24 0x10, 0xde, 0xf5, 0x2b, 0x0e, 0x99, 0x12, 0x40, 25 0x75, 0x13, 0x4f, 0x45, 0x3b, 0xd1, 0x12, 0x6d, 26 0x1d, 0x20, 0x8b, 0x2a, 0x49, 0xd9, 0xf5, 0x28, 27 0x4b, 0x4c, 0x42, 0xc0, 0x12, 0x03, 0x3d, 0x12, 28 0xe4, 0xdf, 0xf7, 0xc8, 0x3a, 0x88, 0xd3, 0x0c, 29 0x9d, 0xea, 0xc1, 0x3e, 0xf3, 0x8e, 0xdf, 0xeb, 30 0x98, 0xb8, 0xa7, 0xd7, 0xc1, 0x3e, 0x3c, 0x4e, 31 0x70, 0xdd, 0xdc, 0xc0, 0xf2, 0xf6, 0xee, 0xdb, 32 0x97, 0xe5, 0xed, 0x72, 0x09, 0x87, 0xf9, 0x68, [all …]
|
/freebsd/contrib/wpa/src/crypto/ |
H A D | ms_funcs.c | 23 * Returns: 0 on success, -1 on failure 31 for (i = 0, j = 0; i < utf8_string_len; i++) { in utf8_to_ucs2() 37 if (c <= 0x7F) { in utf8_to_ucs2() 46 if ((c & 0xE0) == 0xC0) { in utf8_to_ucs2() 49 ((c & 0x1F) << 6) | (c2 & 0x3F)); in utf8_to_ucs2() 59 ((c & 0xF) << 12) | in utf8_to_ucs2() 60 ((c2 & 0x3F) << 6) | (c3 & 0x3F)); in utf8_to_ucs2() 68 return 0; in utf8_to_ucs2() 76 * @username: 0-to-256-char UserName (IN) 79 * Returns: 0 on success, -1 on failure [all …]
|
/freebsd/crypto/openssl/providers/common/include/prov/ |
H A D | der_digests.h | 20 #define DER_OID_V_sigAlgs DER_P_OBJECT, 8, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x03 29 #define DER_OID_V_id_sha1 DER_P_OBJECT, 5, 0x2B, 0x0E, 0x03, 0x02, 0x1A 37 #define DER_OID_V_id_md2 DER_P_OBJECT, 8, 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x02 45 #define DER_OID_V_id_md5 DER_P_OBJECT, 8, 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05 52 #define DER_OID_V_id_sha256 DER_P_OBJECT, 9, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01 59 #define DER_OID_V_id_sha384 DER_P_OBJECT, 9, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x02 66 #define DER_OID_V_id_sha512 DER_P_OBJECT, 9, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x03 73 #define DER_OID_V_id_sha224 DER_P_OBJECT, 9, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x04 80 #define DER_OID_V_id_sha512_224 DER_P_OBJECT, 9, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x… 87 #define DER_OID_V_id_sha512_256 DER_P_OBJECT, 9, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x… [all …]
|
H A D | der_dsa.h | 21 #define DER_OID_V_id_dsa DER_P_OBJECT, 7, 0x2A, 0x86, 0x48, 0xCE, 0x38, 0x04, 0x01 29 #define DER_OID_V_id_dsa_with_sha1 DER_P_OBJECT, 7, 0x2A, 0x86, 0x48, 0xCE, 0x38, 0x04, 0x03 36 …efine DER_OID_V_id_dsa_with_sha224 DER_P_OBJECT, 9, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x03… 43 …efine DER_OID_V_id_dsa_with_sha256 DER_P_OBJECT, 9, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x03… 50 …efine DER_OID_V_id_dsa_with_sha384 DER_P_OBJECT, 9, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x03… 57 …efine DER_OID_V_id_dsa_with_sha512 DER_P_OBJECT, 9, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x03… 64 …ine DER_OID_V_id_dsa_with_sha3_224 DER_P_OBJECT, 9, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x03… 71 …ine DER_OID_V_id_dsa_with_sha3_256 DER_P_OBJECT, 9, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x03… 78 …ine DER_OID_V_id_dsa_with_sha3_384 DER_P_OBJECT, 9, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x03… 85 …ine DER_OID_V_id_dsa_with_sha3_512 DER_P_OBJECT, 9, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x03…
|
H A D | der_ecx.h | 21 #define DER_OID_V_id_X25519 DER_P_OBJECT, 3, 0x2B, 0x65, 0x6E 28 #define DER_OID_V_id_X448 DER_P_OBJECT, 3, 0x2B, 0x65, 0x6F 35 #define DER_OID_V_id_Ed25519 DER_P_OBJECT, 3, 0x2B, 0x65, 0x70 42 #define DER_OID_V_id_Ed448 DER_P_OBJECT, 3, 0x2B, 0x65, 0x71
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | tls1.h | 40 # define TLS_ANY_VERSION 0x10000 42 # define TLS1_VERSION_MAJOR 0x03 43 # define TLS1_VERSION_MINOR 0x01 45 # define TLS1_1_VERSION_MAJOR 0x03 46 # define TLS1_1_VERSION_MINOR 0x02 48 # define TLS1_2_VERSION_MAJOR 0x03 49 # define TLS1_2_VERSION_MINOR 0x03 52 ((SSL_version(s) >> 8) == TLS1_VERSION_MAJOR ? SSL_version(s) : 0) 55 ((SSL_client_version(s) >> 8) == TLS1_VERSION_MAJOR ? SSL_client_version(s) : 0) 83 # define TLSEXT_TYPE_server_name 0 [all …]
|
/freebsd/contrib/libfido2/fuzz/ |
H A D | wiredata_fido2.h | 12 0xff, 0xff, 0xff, 0xff, 0x86, 0x00, 0x11, 0x80, \ 13 0x43, 0x56, 0x40, 0xb1, 0x4e, 0xd9, 0x2d, 0x00, \ 14 0x22, 0x00, 0x02, 0x02, 0x05, 0x02, 0x01, 0x05, \ 15 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \ 16 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \ 17 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \ 18 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \ 19 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 22 0x00, 0x22, 0x00, 0x02, 0xbb, 0x00, 0x01, 0x02, \ 23 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \ [all …]
|
/freebsd/sys/contrib/libsodium/test/default/ |
H A D | box_easy.exp | 1 …0xf3,0xff,0xc7,0x70,0x3f,0x94,0x00,0xe5,0x2a,0x7d,0xfb,0x4b,0x3d,0x33,0x05,0xd9,0x8e,0x99,0x3b,0x9… 2 ,0x25,0x39,0x12,0x1d,0x8e,0x23,0x4e,0x65,0x2d,0x65,0x1f,0xa4,0xc8,0xcf,0xf8,0x80,0x8e 3 ,0x25,0x39,0x12,0x1d,0x8e,0x23,0x4e,0x65,0x2d,0x65,0x1f,0xa4,0xc8,0xcf,0xf8,0x80,0x8e
|
H A D | sign.c | 6 = { 0x42, 0x11, 0x51, 0xa4, 0x59, 0xfa, 0xea, 0xde, 0x3d, 0x24, 0x71, 7 0x15, 0xf9, 0x4a, 0xed, 0xae, 0x42, 0x31, 0x81, 0x24, 0x09, 0x5a, 8 0xfa, 0xbe, 0x4d, 0x14, 0x51, 0xa5, 0x59, 0xfa, 0xed, 0xee }; 18 …0x9d,0x61,0xb1,0x9d,0xef,0xfd,0x5a,0x60,0xba,0x84,0x4a,0xf4,0x92,0xec,0x2c,0xc4,0x44,0x49,0xc5,0x6… 19 …0x4c,0xcd,0x08,0x9b,0x28,0xff,0x96,0xda,0x9d,0xb6,0xc3,0x46,0xec,0x11,0x4e,0x0f,0x5b,0x8a,0x31,0x9… 20 …0xc5,0xaa,0x8d,0xf4,0x3f,0x9f,0x83,0x7b,0xed,0xb7,0x44,0x2f,0x31,0xdc,0xb7,0xb1,0x66,0xd3,0x85,0x3… 21 …0x0d,0x4a,0x05,0xb0,0x73,0x52,0xa5,0x43,0x6e,0x18,0x03,0x56,0xda,0x0a,0xe6,0xef,0xa0,0x34,0x5f,0xf… 22 …0x6d,0xf9,0x34,0x0c,0x13,0x8c,0xc1,0x88,0xb5,0xfe,0x44,0x64,0xeb,0xaa,0x3f,0x7f,0xc2,0x06,0xa2,0xd… 23 …0xb7,0x80,0x38,0x1a,0x65,0xed,0xf8,0xb7,0x8f,0x69,0x45,0xe8,0xdb,0xec,0x79,0x41,0xac,0x04,0x9f,0xd… 24 …0x78,0xae,0x9e,0xff,0xe6,0xf2,0x45,0xe9,0x24,0xa7,0xbe,0x63,0x04,0x11,0x46,0xeb,0xc6,0x70,0xdb,0xd… [all …]
|
H A D | secretbox_easy.exp | 1 …0xf3,0xff,0xc7,0x70,0x3f,0x94,0x00,0xe5,0x2a,0x7d,0xfb,0x4b,0x3d,0x33,0x05,0xd9,0x8e,0x99,0x3b,0x9… 2 …0xf3,0xff,0xc7,0x70,0x3f,0x94,0x00,0xe5,0x2a,0x7d,0xfb,0x4b,0x3d,0x33,0x05,0xd9,0x8e,0x99,0x3b,0x9… 3 …0xf3,0xff,0xc7,0x70,0x3f,0x94,0x00,0xe5,0x2a,0x7d,0xfb,0x4b,0x3d,0x33,0x05,0xd9,0x8e,0x99,0x3b,0x9… 4 …0xf3,0xff,0xc7,0x70,0x3f,0x94,0x00,0xe5,0x2a,0x7d,0xfb,0x4b,0x3d,0x33,0x05,0xd9,0x8e,0x99,0x3b,0x9… 5 …0xf3,0xff,0xc7,0x70,0x3f,0x94,0x00,0xe5,0x2a,0x7d,0xfb,0x4b,0x3d,0x33,0x05,0xd9,0x8e,0x99,0x3b,0x9… 6 ,0x25,0x39,0x12,0x1d,0x8e,0x23,0x4e,0x65,0x2d,0x65,0x1f,0xa4,0xc8,0xcf,0xf8,0x80,0x8e 7 ,0x25,0x39,0x12,0x1d,0x8e,0x23,0x4e,0x65,0x2d,0x65,0x1f,0xa4,0xc8,0xcf,0xf8,0x80,0x8e 8 ,0x8c,0xf3,0x90,0x57,0xc9,0xbc,0xf2,0xba,0x98,0x87,0xfb,0x15,0x9f,0x21,0x0c,0xd8,0x23,0x88,0x8f,0xb… 9 ,0xbe,0x07,0x5f,0xc5,0x3c,0x81,0xf2,0xd5,0xcf,0x14,0xd2,0xe8,0xe8,0x1a,0xac,0xd2,0xba,0x1b,0xaa,0x6…
|
H A D | aead_chacha20poly1305.exp | 1 ,0xe3,0xe4,0x46,0xf7,0xed,0xe9,0xa1,0x9b 2 ,0x62,0xa4,0x67,0x7d,0xab,0xf4,0xe3,0xd2 3 ,0x4b,0x87,0x6b,0xb2,0x84,0x75,0x38,0x96 4 ,0xe1,0xd6 5 ,0xe3,0xe4,0x46,0xf7,0xed,0xe9,0xa1,0x9b 6 ,0x62,0xa4,0x69,0xe7,0x78,0x9b,0xcd,0x95 7 ,0x4e,0x65,0x8e,0xd3,0x84,0x23,0xe2,0x31 8 ,0x61,0xdc 9 ,0xe3,0xe4,0x46,0xf7,0xed,0xe9,0xa1,0x9b 10 ,0x62,0xa4,0x69,0xe7,0x78,0x9b,0xcd,0x95 [all …]
|
/freebsd/contrib/libcbor/test/data/ |
H A D | pretty.cbor | 2 0x5B, 0x31, 0x2C, 0x20, 0x2D, 0x31, 0x2C, 0x20, 0x28, 0x5F, 0x20, 0x68, 0x27, 0x30, 0x31, 0x27, 0x2…
|
/freebsd/contrib/libarchive/libarchive/test/ |
H A D | test_read_format_zip_mac_metadata.c | 39 0x00, 0x05, 0x16, 0x07, 0x00, 0x02, 0x00, 0x00, in DEFINE_TEST() 40 0x4d, 0x6 in DEFINE_TEST() [all...] |
/freebsd/sys/dev/usb/wlan/ |
H A D | if_zydfw.h | 31 0x08, 0x91, 0xFF, 0xED, 0x09, 0x93, 0x1E, 0xEE, 32 0xD1, 0x94, 0x11, 0xEE, 0x88, 0xD4, 0xD1, 0x96, 33 0xD1, 0x98, 0x5C, 0x99, 0x5C, 0x99, 0x4C, 0x99, 34 0x04, 0x9D, 0xD1, 0x98, 0xD1, 0x9A, 0x03, 0xEE, 35 0xF4, 0x94, 0xD3, 0xD4, 0x41, 0x2A, 0x40, 0x4A, 36 0x45, 0xBE, 0x88, 0x92, 0x41, 0x24, 0x40, 0x44, 37 0x53, 0xBE, 0x40, 0xF0, 0x93, 0xEE, 0x41, 0xEE, 38 0x98, 0x9A, 0xD4, 0xF7, 0x02, 0x00, 0x1F, 0xEC, 39 0x00, 0x00, 0xB2, 0xF8, 0x4D, 0x00, 0xA1, 0xEC, 40 0x00, 0x00, 0xA6, 0xF7, 0x21, 0x00, 0x00, 0x00, [all …]
|
/freebsd/sys/sys/disk/ |
H A D | gpt.h | 59 #define GPT_HDR_REVISION 0x00010000 98 #define GPT_ENT_ATTR_PLATFORM (1ULL << 0) 109 {0x00000000,0x0000,0x0000,0x00,0x00,{0x00,0x00,0x00,0x00,0x00,0x00}} 111 {0xc12a7328,0xf81f,0x11d2,0xba,0x4b,{0x00,0xa0,0xc9,0x3e,0xc9,0x3b}} 113 {0x024dee41,0x33e7,0x11d3,0x9d,0x69,{0x00,0x08,0xc7,0x81,0xf3,0x9f}} 115 {0x516e7cb4,0x6ecf,0x11d6,0x8f,0xf8,{0x00,0x02,0x2d,0x09,0x71,0x2b}} 117 {0x83bd6b9d,0x7f41,0x11dc,0xbe,0x0b,{0x00,0x15,0x60,0xb8,0x4f,0x0f}} 119 {0x74ba7dd9,0xa689,0x11e1,0xbd,0x04,{0x00,0xe0,0x81,0x28,0x6a,0xcf}} 121 {0x516e7cb5,0x6ecf,0x11d6,0x8f,0xf8,{0x00,0x02,0x2d,0x09,0x71,0x2b}} 123 {0x516e7cb6,0x6ecf,0x11d6,0x8f,0xf8,{0x00,0x02,0x2d,0x09,0x71,0x2b}} [all …]
|
/freebsd/contrib/bearssl/src/hash/ |
H A D | dig_oid.c | 34 0x2A, 0x86, 0x48, 0x86, 0xF7, 0x0D, 0x02, 0x05 38 0x2B, 0x0E, 0x03, 0x02, 0x1A 42 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x04 46 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x01 50 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x02 54 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, 0x03 81 *len = 0; in br_digest_OID()
|
/freebsd/crypto/openssl/test/ |
H A D | cmsapitest.c | 25 int testresult = 0; in test_encrypt_decrypt() 36 if (!TEST_int_gt(sk_X509_push(certstack, cert), 0)) in test_encrypt_decrypt() 49 || !TEST_int_eq(strcmp(buf, msg), 0)) in test_encrypt_decrypt() 59 return testresult && TEST_int_eq(ERR_peek_error(), 0); in test_encrypt_decrypt() 86 int ret = 0; in test_d2i_CMS_bio_NULL() 95 0x30, 0x82, 0x05, 0xc5, 0x06, 0x09, 0x2a, 0x86, in test_d2i_CMS_bio_NULL() 96 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x07, 0x02, 0xa0, in test_d2i_CMS_bio_NULL() 97 0x82, 0x05, 0xb6, 0x30, 0x82, 0x05, 0xb2, 0x02, in test_d2i_CMS_bio_NULL() 98 0x01, 0x01, 0x31, 0x0d, 0x30, 0x0b, 0x06, 0x09, in test_d2i_CMS_bio_NULL() 99 0x60, 0x86, 0x48, 0x01, 0x65, 0x03, 0x04, 0x02, in test_d2i_CMS_bio_NULL() [all …]
|
H A D | evp_pkey_dparams_test.c | 38 0x30,0x82,0x01,0x08,0x02,0x82,0x01,0x01,0x00,0xc0,0xd1,0x2e,0x14,0x18,0xbd,0x03, 39 0xfd,0x39,0xe1,0x99,0xf4,0x93,0x06,0x2d,0x49,0xc6,0xb5,0xb9,0xf0,0x91,0xcb,0x2f, 40 0x48,0x54,0x79,0x7d,0xc4,0x65,0x11,0x55,0xf7,0x99,0xde,0x42,0x83,0x84,0xc0,0xf8, 41 0x88,0x89,0xa0,0xff,0xff,0x7d,0xe8,0xef,0x9e,0xbc,0xf7,0x1d,0x70,0x6d,0x3a,0x33, 42 0x49,0x28,0xa1,0xa3,0xe1,0x41,0xc4,0x8b,0x91,0xf9,0xf2,0xb6,0xe2,0x77,0x79,0x38, 43 0x7d,0x21,0xb3,0xdf,0x79,0x9c,0x5e,0x65,0x16,0x00,0x16,0x82,0xb2,0x36,0x46,0x21, 44 0xac,0xaf,0x86,0xc7,0xe3,0x10,0x44,0x48,0xfb,0xbd,0xad,0x4e,0x11,0x73,0x4c,0x25, 45 0xb0,0x8c,0x1c,0x1e,0x8e,0x58,0x50,0x5e,0x43,0x89,0xe4,0xd9,0x34,0xf8,0x3b,0xcc, 46 0x36,0x2c,0x1b,0xb3,0xb2,0x77,0x0c,0xa5,0x96,0xc1,0x8a,0x38,0xd4,0xe3,0x9c,0x2a, 47 0xde,0x49,0x46,0xc7,0xd4,0xa2,0x47,0xc9,0x0a,0xbd,0x84,0xd4,0x1c,0xbc,0xb6,0x19, [all …]
|
/freebsd/crypto/heimdal/kuser/ |
H A D | kdigest.c | 44 static int version_flag = 0; 45 static int help_flag = 0; 50 {"ccache", 0, arg_string, &ccache_string, "credential cache", NULL }, 51 {"version", 0, arg_flag, &version_flag, "print version", NULL }, 52 {"help", 0, arg_flag, &help_flag, NULL, NULL } 84 return 0; in digest_probe() 128 return 0; in digest_server_init() 153 if (strcasecmp(opt->type_string, "CHAP") == 0) { in digest_server_request() 222 return 0; in digest_server_request() 251 0x4D, 0x61, 0x67, 0x69, 0x63, 0x20, 0x73, 0x65, 0x72, 0x76, [all …]
|
/freebsd/crypto/libecc/src/tests/ |
H A D | bign_test_vectors.h | 17 …0x69, 0xe2, 0x73, 0xc2, 0x5f, 0x23, 0x79, 0x0c, 0x9e, 0x42, 0x32, 0x07, 0xed, 0x1f, 0x28, 0x34, 0x… 20 …0xE3, 0x6B, 0x7F, 0x03, 0x77, 0xAE, 0x4C, 0x52, 0x40, 0x27, 0xC3, 0x87, 0xFA, 0xDF, 0x1B, 0x20, 0x… 31 …0xd2, 0xb7, 0x08, 0xa3, 0x7a, 0xa7, 0x33, 0x5c, 0xe1, 0x1c, 0x46, 0x3c, 0x48, 0xec, 0xd6, 0x3e, 0x… in bign_1_nn_random_belt_hash_test_vector() 37 ret = (cmp >= 0) ? -1 : 0; in bign_1_nn_random_belt_hash_test_vector() 43 0x00, 0x0b, 0x00, 0x00, 44 0x06, 0x09, 0x2A, 0x70, 0x00, 0x02, 0x00, 0x22, 0x65, 0x1F, 0x51, 65 …0x69, 0xe2, 0x73, 0xc2, 0x5f, 0x23, 0x79, 0x0c, 0x9e, 0x42, 0x32, 0x07, 0xed, 0x1f, 0x28, 0x34, 0x… 68 0x47, 0xA6, 0x3C, 0x8B, 0x9C, 0x93, 0x6E, 0x94, 0xB5, 0xFA, 0xB3, 0xD9, 0xCB, 0xD7, 0x83, 0x66, 69 …0x29, 0x0F, 0x32, 0x10, 0xE1, 0x63, 0xEE, 0xC8, 0xDB, 0x4E, 0x92, 0x1E, 0x84, 0x79, 0xD4, 0x13, 0x… 82 …0xec, 0xe9, 0xbc, 0x3b, 0xd9, 0x90, 0x03, 0x0f, 0x4f, 0x28, 0x39, 0x0d, 0xdd, 0x51, 0x22, 0x57, 0x… in bign_2_nn_random_belt_hash_test_vector() [all …]
|
/freebsd/crypto/openssl/ssl/ |
H A D | tls13_enc.c | 22 static const unsigned char label_prefix[] = { 0x74, 0x6C, 0x73, 0x31, 0x33, 0x20, 0x00 }; 32 * |fatal| is set. Returns 1 on success 0 on failure. 51 return 0; in tls13_hkdf_expand() 64 return 0; in tls13_hkdf_expand() 67 if ((ret = EVP_MD_get_size(md)) <= 0) { in tls13_hkdf_expand() 73 return 0; in tls13_hkdf_expand() 79 (char *)mdname, 0); in tls13_hkdf_expand() 93 ret = EVP_KDF_derive(kctx, out, outlen, params) <= 0; in tls13_hkdf_expand() 96 if (ret != 0) { in tls13_hkdf_expand() 103 return ret == 0; in tls13_hkdf_expand() [all …]
|