Home
last modified time | relevance | path

Searched refs:bit (Results 1 – 25 of 34) sorted by relevance

12

/net-tools-3.4.0/libcoap/include/coap/
Dbits.h32 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.4.0/mbedtls-2.4.0/yotta/data/
Dentropy_hardware_poll.c42 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.4.0/mbedtls-2.4.0/tests/suites/
Dtest_suite_arc4.data10 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]
Dtest_suite_mpi.data693 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 …]
Dtest_suite_rsa.data348 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
Dtest_suite_ecp.data182 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)
Dtest_suite_cipher.blowfish.data577 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.4.0/tinydtls-0.8.2/sha2/
DREADME43 * 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.4.0/mbedtls-2.4.0/tests/data_files/
Dcert_md2.crt13 RSA Public Key: (2048 bit)
14 Modulus (2048 bit):
Dserver2.crt13 RSA Public Key: (2048 bit)
14 Modulus (2048 bit):
Dtest-ca.crt13 RSA Public Key: (2048 bit)
14 Modulus (2048 bit):
Dtest-ca_cat12.crt13 RSA Public Key: (2048 bit)
14 Modulus (2048 bit):
Dtest-ca_cat21.crt28 RSA Public Key: (2048 bit)
29 Modulus (2048 bit):
Dcert_md4.crt13 RSA Public Key: (2048 bit)
14 Modulus (2048 bit):
Dcert_md5.crt13 RSA Public Key: (2048 bit)
14 Modulus (2048 bit):
Dcert_sha1.crt13 RSA Public Key: (2048 bit)
14 Modulus (2048 bit):
Dcert_sha224.crt13 RSA Public Key: (2048 bit)
14 Modulus (2048 bit):
Dcert_sha256.crt13 RSA Public Key: (2048 bit)
14 Modulus (2048 bit):
Dcert_sha384.crt13 RSA Public Key: (2048 bit)
14 Modulus (2048 bit):
Dcert_sha512.crt13 RSA Public Key: (2048 bit)
14 Modulus (2048 bit):
Dserver9-with-ca.crt32 RSA Public Key: (2048 bit)
33 Modulus (2048 bit):
Dserver10_int3_int-ca2_ca.crt93 RSA Public Key: (2048 bit)
94 Modulus (2048 bit):
/net-tools-3.4.0/mbedtls-2.4.0/tests/data_files/dir1/
Dtest-ca.crt13 RSA Public Key: (2048 bit)
14 Modulus (2048 bit):
/net-tools-3.4.0/mbedtls-2.4.0/tests/data_files/dir2/
Dtest-ca.crt13 RSA Public Key: (2048 bit)
14 Modulus (2048 bit):
/net-tools-3.4.0/mbedtls-2.4.0/tests/data_files/dir3/
Dtest-ca.crt13 RSA Public Key: (2048 bit)
14 Modulus (2048 bit):

12