Home
last modified time | relevance | path

Searched defs:y (Results 1 – 17 of 17) sorted by relevance

/net-tools-latest/tinydtls-0.8.2/ecc/
Decc.c43 static uint32_t add( const uint32_t *x, const uint32_t *y, uint32_t *result, uint8_t length){ in add()
57 static uint32_t sub( const uint32_t *x, const uint32_t *y, uint32_t *result, uint8_t length){ in sub()
137 static int fieldAdd(const uint32_t *x, const uint32_t *y, const uint32_t *reducer, uint32_t *result… in fieldAdd()
147 static int fieldSub(const uint32_t *x, const uint32_t *y, const uint32_t *modulus, uint32_t *result… in fieldSub()
159 static int fieldMult(const uint32_t *x, const uint32_t *y, uint32_t *result, uint8_t length){ in fieldMult()
593 int ecc_ecdsa_validate(const uint32_t *x, const uint32_t *y, const uint32_t *e, const uint32_t *r, … in ecc_ecdsa_validate()
641 uint32_t ecc_add( const uint32_t *x, const uint32_t *y, uint32_t *result, uint8_t length) in ecc_add()
645 uint32_t ecc_sub( const uint32_t *x, const uint32_t *y, uint32_t *result, uint8_t length) in ecc_sub()
649 int ecc_fieldAdd(const uint32_t *x, const uint32_t *y, const uint32_t *reducer, uint32_t *result) in ecc_fieldAdd()
653 int ecc_fieldSub(const uint32_t *x, const uint32_t *y, const uint32_t *modulus, uint32_t *result) in ecc_fieldSub()
[all …]
/net-tools-latest/mbedtls-2.4.0/library/
Dmd5.c145 #define F(x,y,z) (z ^ (x & (y ^ z))) in mbedtls_md5_process() argument
166 #define F(x,y,z) (y ^ (z & (x ^ y))) in mbedtls_md5_process() argument
187 #define F(x,y,z) (x ^ y ^ z) in mbedtls_md5_process() argument
208 #define F(x,y,z) (y ^ (x | ~z)) in mbedtls_md5_process() argument
Dripemd160.c142 #define F1( x, y, z ) ( x ^ y ^ z ) in mbedtls_ripemd160_process() argument
143 #define F2( x, y, z ) ( ( x & y ) | ( ~x & z ) ) in mbedtls_ripemd160_process() argument
144 #define F3( x, y, z ) ( ( x | ~y ) ^ z ) in mbedtls_ripemd160_process() argument
145 #define F4( x, y, z ) ( ( x & z ) | ( y & ~z ) ) in mbedtls_ripemd160_process() argument
146 #define F5( x, y, z ) ( x ^ ( y | ~z ) ) in mbedtls_ripemd160_process() argument
Dsha1.c154 #define F(x,y,z) (z ^ (x & (y ^ z))) in mbedtls_sha1_process() argument
181 #define F(x,y,z) (x ^ y ^ z) in mbedtls_sha1_process() argument
208 #define F(x,y,z) ((x & y) | (z & (x | y))) in mbedtls_sha1_process() argument
235 #define F(x,y,z) (x ^ y ^ z) in mbedtls_sha1_process() argument
Dmd4.c141 #define F(x, y, z) ((x & y) | ((~x) & z)) in mbedtls_md4_process() argument
164 #define F(x,y,z) ((x & y) | (x & z) | (y & z)) in mbedtls_md4_process() argument
187 #define F(x,y,z) (x ^ y ^ z) in mbedtls_md4_process() argument
Dsha256.c166 #define F0(x,y,z) ((x & y) | (z & (x | y))) argument
167 #define F1(x,y,z) (z ^ (x & (y ^ z))) argument
Darc4.c104 int x, y, a, b; in mbedtls_arc4_crypt() local
Dsha512.c214 #define F0(x,y,z) ((x & y) | (z & (x | y))) in mbedtls_sha512_process() argument
215 #define F1(x,y,z) (z ^ (x & (y ^ z))) in mbedtls_sha512_process() argument
Dblowfish.c84 uint32_t y; in F() local
Dccm.c148 unsigned char y[16]; in ccm_auth_crypt() local
Daes.c385 #define MUL(x,y) ( ( x && y ) ? pow[(log[x]+log[y]) % 255] : 0 ) argument
391 int i, x, y, z; in aes_gen_tables() local
Decp.c426 const char *x, const char *y ) in mbedtls_ecp_point_read_string()
Dbignum.c1474 mbedtls_mpi_uint x, y, z; in mbedtls_mpi_mod_int() local
/net-tools-latest/mbedtls-2.4.0/include/mbedtls/
Darc4.h48 int y; /*!< permutation index */ member
Dgcm.h50 unsigned char y[16]; /*!< Y working value */ member
/net-tools-latest/tinydtls-0.8.2/
Dglobal.h109 memxor(unsigned char *x, const unsigned char *y, size_t n) { in memxor()
/net-tools-latest/tinydtls-0.8.2/sha2/
Dsha2.c228 #define Ch(x,y,z) (((x) & (y)) ^ ((~(x)) & (z))) argument
229 #define Maj(x,y,z) (((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z))) argument