Searched refs:bit (Results 1 – 25 of 34) sorted by relevance
12
/net-tools-3.6.0/libcoap/include/coap/ |
D | bits.h | 32 bits_setb(uint8_t *vec, size_t size, uint8_t bit) { in bits_setb() argument 33 if (size <= (bit >> 3)) in bits_setb() 36 *(vec + (bit >> 3)) |= (uint8_t)(1 << (bit & 0x07)); in bits_setb() 52 bits_clrb(uint8_t *vec, size_t size, uint8_t bit) { in bits_clrb() argument 53 if (size <= (bit >> 3)) in bits_clrb() 56 *(vec + (bit >> 3)) &= (uint8_t)(~(1 << (bit & 0x07))); in bits_clrb() 71 bits_getb(const uint8_t *vec, size_t size, uint8_t bit) { in bits_getb() argument 72 if (size <= (bit >> 3)) in bits_getb() 75 return (*(vec + (bit >> 3)) & (1 << (bit & 0x07))) != 0; in bits_getb()
|
/net-tools-3.6.0/mbedtls-2.4.0/yotta/data/ |
D | entropy_hardware_poll.c | 42 size_t bit; in rng_get_byte() local 45 for( bit = 0; bit < 8; bit++ ) in rng_get_byte() 48 *byte |= ( RNG->OR & 1 ) << bit; in rng_get_byte()
|
/net-tools-3.6.0/mbedtls-2.4.0/tests/suites/ |
D | test_suite_arc4.data | 10 Test Vector ARC4 [RFC6229 40-bit] 13 Test Vector ARC4 [RFC6229 56-bit] 16 Test Vector ARC4 [RFC6229 64-bit] 19 Test Vector ARC4 [RFC6229 128-bit]
|
D | test_suite_mpi.data | 693 Test bit getting (Value bit 25) 696 Test bit getting (Larger but same limb) 699 Test bit getting (Larger and non-existing limb) 702 Test bit getting (Value bit 24) 705 Test bit getting (Value bit 23) 708 Test bit set (Change existing value with a 1) 711 Test bit set (Change existing value with a 0) 714 Test bit set (Add above existing limbs with a 0) 717 Test bit set (Add above existing limbs with a 1) 720 Test bit set (Bit index larger than 31 with a 0) [all …]
|
D | test_suite_rsa.data | 348 RSA Generate Key - 128bit key 357 RSA Generate Key - 1024 bit key 360 RSA Generate Key - 2048 bit key 363 RSA Generate Key - 1025 bit key
|
D | test_suite_ecp.data | 182 ECP check privkey #8 (montgomery, bit 0 set) 186 ECP check privkey #9 (montgomery, bit 1 set) 190 ECP check privkey #10 (montgomery, bit 2 set)
|
D | test_suite_cipher.blowfish.data | 577 BLOWFISH ECB Encrypt test vector (SSLeay) #3, 64-bit key 581 BLOWFISH ECB Encrypt test vector (SSLeay) #3, 192-bit key 597 BLOWFISH ECB Decrypt test vector (SSLeay) #3, 64-bit key 601 BLOWFISH ECB Decrypt test vector (SSLeay) #3, 192-bit key
|
/net-tools-3.6.0/tinydtls-0.8.2/sha2/ |
D | README | 43 * This implementation utilizes 64-bit integer data types. If your 44 system and compiler does not have a 64-bit integer data type, this 46 * Because of the use of 64-bit operations, many 32-bit architectures 47 that do have 64-bit data types but do operations most efficiently 48 on 32-bit words, this implementation may be slower than an 49 implementation designed to use only 32-bit words (emulating the 50 64-bit operations). 51 * On platforms with 128-bit integer data types, the SHA-384 and SHA-512 52 bit counters used by this implementation might be better off using 53 the 128-bit type instead of simulating it with two 64-bit integers. [all …]
|
/net-tools-3.6.0/mbedtls-2.4.0/tests/data_files/ |
D | cert_md2.crt | 13 RSA Public Key: (2048 bit) 14 Modulus (2048 bit):
|
D | server2.crt | 13 RSA Public Key: (2048 bit) 14 Modulus (2048 bit):
|
D | test-ca.crt | 13 RSA Public Key: (2048 bit) 14 Modulus (2048 bit):
|
D | test-ca_cat12.crt | 13 RSA Public Key: (2048 bit) 14 Modulus (2048 bit):
|
D | test-ca_cat21.crt | 28 RSA Public Key: (2048 bit) 29 Modulus (2048 bit):
|
D | cert_md4.crt | 13 RSA Public Key: (2048 bit) 14 Modulus (2048 bit):
|
D | cert_sha384.crt | 13 RSA Public Key: (2048 bit) 14 Modulus (2048 bit):
|
D | cert_md5.crt | 13 RSA Public Key: (2048 bit) 14 Modulus (2048 bit):
|
D | cert_sha1.crt | 13 RSA Public Key: (2048 bit) 14 Modulus (2048 bit):
|
D | cert_sha224.crt | 13 RSA Public Key: (2048 bit) 14 Modulus (2048 bit):
|
D | cert_sha256.crt | 13 RSA Public Key: (2048 bit) 14 Modulus (2048 bit):
|
D | cert_sha512.crt | 13 RSA Public Key: (2048 bit) 14 Modulus (2048 bit):
|
D | server9-with-ca.crt | 32 RSA Public Key: (2048 bit) 33 Modulus (2048 bit):
|
D | server10_int3_int-ca2_ca.crt | 93 RSA Public Key: (2048 bit) 94 Modulus (2048 bit):
|
/net-tools-3.6.0/mbedtls-2.4.0/tests/data_files/dir2/ |
D | test-ca.crt | 13 RSA Public Key: (2048 bit) 14 Modulus (2048 bit):
|
/net-tools-3.6.0/mbedtls-2.4.0/tests/data_files/dir3/ |
D | test-ca.crt | 13 RSA Public Key: (2048 bit) 14 Modulus (2048 bit):
|
/net-tools-3.6.0/mbedtls-2.4.0/tests/data_files/dir1/ |
D | test-ca.crt | 13 RSA Public Key: (2048 bit) 14 Modulus (2048 bit):
|
12