/third_party/openssl/crypto/idea/ |
D | i_cbc.c | 35 l2n(tout0, out); in IDEA_cbc_encrypt() 37 l2n(tout1, out); in IDEA_cbc_encrypt() 47 l2n(tout0, out); in IDEA_cbc_encrypt() 49 l2n(tout1, out); in IDEA_cbc_encrypt() 51 l2n(tout0, iv); in IDEA_cbc_encrypt() 52 l2n(tout1, iv); in IDEA_cbc_encrypt() 65 l2n(tout0, out); in IDEA_cbc_encrypt() 66 l2n(tout1, out); in IDEA_cbc_encrypt() 82 l2n(xor0, iv); in IDEA_cbc_encrypt() 83 l2n(xor1, iv); in IDEA_cbc_encrypt()
|
D | i_ofb64.c | 37 l2n(v0, dp); in IDEA_ofb64_encrypt() 38 l2n(v1, dp); in IDEA_ofb64_encrypt() 44 l2n(t, dp); in IDEA_ofb64_encrypt() 46 l2n(t, dp); in IDEA_ofb64_encrypt() 56 l2n(v0, iv); in IDEA_ofb64_encrypt() 57 l2n(v1, iv); in IDEA_ofb64_encrypt()
|
D | i_cfb64.c | 40 l2n(t, iv); in IDEA_cfb64_encrypt() 42 l2n(t, iv); in IDEA_cfb64_encrypt() 60 l2n(t, iv); in IDEA_cfb64_encrypt() 62 l2n(t, iv); in IDEA_cfb64_encrypt()
|
D | i_ecb.c | 30 l2n(l0, out); in IDEA_ecb_encrypt() 32 l2n(l1, out); in IDEA_ecb_encrypt()
|
D | idea_local.h | 71 #undef l2n 72 #define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \ macro
|
/third_party/openssl/crypto/cast/ |
D | c_ofb64.c | 37 l2n(v0, dp); in CAST_ofb64_encrypt() 38 l2n(v1, dp); in CAST_ofb64_encrypt() 44 l2n(t, dp); in CAST_ofb64_encrypt() 46 l2n(t, dp); in CAST_ofb64_encrypt() 56 l2n(v0, iv); in CAST_ofb64_encrypt() 57 l2n(v1, iv); in CAST_ofb64_encrypt()
|
D | c_enc.c | 100 l2n(tout0, out); in CAST_cbc_encrypt() 101 l2n(tout1, out); in CAST_cbc_encrypt() 112 l2n(tout0, out); in CAST_cbc_encrypt() 113 l2n(tout1, out); in CAST_cbc_encrypt() 115 l2n(tout0, iv); in CAST_cbc_encrypt() 116 l2n(tout1, iv); in CAST_cbc_encrypt() 129 l2n(tout0, out); in CAST_cbc_encrypt() 130 l2n(tout1, out); in CAST_cbc_encrypt() 146 l2n(xor0, iv); in CAST_cbc_encrypt() 147 l2n(xor1, iv); in CAST_cbc_encrypt()
|
D | c_cfb64.c | 40 l2n(t, iv); in CAST_cfb64_encrypt() 42 l2n(t, iv); in CAST_cfb64_encrypt() 60 l2n(t, iv); in CAST_cfb64_encrypt() 62 l2n(t, iv); in CAST_cfb64_encrypt()
|
D | c_ecb.c | 28 l2n(l, out); in CAST_ecb_encrypt() 30 l2n(l, out); in CAST_ecb_encrypt()
|
D | cast_local.h | 110 #undef l2n 111 #define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \ macro
|
/third_party/openssl/crypto/bf/ |
D | bf_ofb64.c | 37 l2n(v0, dp); in BF_ofb64_encrypt() 38 l2n(v1, dp); in BF_ofb64_encrypt() 44 l2n(t, dp); in BF_ofb64_encrypt() 46 l2n(t, dp); in BF_ofb64_encrypt() 56 l2n(v0, iv); in BF_ofb64_encrypt() 57 l2n(v1, iv); in BF_ofb64_encrypt()
|
D | bf_enc.c | 124 l2n(tout0, out); in BF_cbc_encrypt() 125 l2n(tout1, out); in BF_cbc_encrypt() 136 l2n(tout0, out); in BF_cbc_encrypt() 137 l2n(tout1, out); in BF_cbc_encrypt() 139 l2n(tout0, ivec); in BF_cbc_encrypt() 140 l2n(tout1, ivec); in BF_cbc_encrypt() 153 l2n(tout0, out); in BF_cbc_encrypt() 154 l2n(tout1, out); in BF_cbc_encrypt() 170 l2n(xor0, ivec); in BF_cbc_encrypt() 171 l2n(xor1, ivec); in BF_cbc_encrypt()
|
D | bf_cfb64.c | 40 l2n(t, iv); in BF_cfb64_encrypt() 42 l2n(t, iv); in BF_cfb64_encrypt() 60 l2n(t, iv); in BF_cfb64_encrypt() 62 l2n(t, iv); in BF_cfb64_encrypt()
|
D | bf_ecb.c | 39 l2n(l, out); in BF_ecb_encrypt() 41 l2n(l, out); in BF_ecb_encrypt()
|
D | bf_local.h | 65 # undef l2n 66 # define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \ macro
|
/third_party/boringssl/src/decrepit/blowfish/ |
D | blowfish.c | 151 l2n(d[0], out); in BF_ecb_encrypt() 152 l2n(d[1], out); in BF_ecb_encrypt() 176 l2n(tout0, out); in BF_cbc_encrypt() 177 l2n(tout1, out); in BF_cbc_encrypt() 189 l2n(tout0, out); in BF_cbc_encrypt() 190 l2n(tout1, out); in BF_cbc_encrypt() 192 l2n(tout0, ivec); in BF_cbc_encrypt() 193 l2n(tout1, ivec); in BF_cbc_encrypt() 206 l2n(tout0, out); in BF_cbc_encrypt() 207 l2n(tout1, out); in BF_cbc_encrypt() [all …]
|
/third_party/boringssl/src/decrepit/cast/ |
D | cast.c | 83 l2n(d[0], out); in OPENSSL_MSVC_PRAGMA() 84 l2n(d[1], out); in OPENSSL_MSVC_PRAGMA() 190 l2n(tout0, out); in CAST_cbc_encrypt() 191 l2n(tout1, out); in CAST_cbc_encrypt() 203 l2n(tout0, out); in CAST_cbc_encrypt() 204 l2n(tout1, out); in CAST_cbc_encrypt() 206 l2n(tout0, iv); in CAST_cbc_encrypt() 207 l2n(tout1, iv); in CAST_cbc_encrypt() 220 l2n(tout0, out); in CAST_cbc_encrypt() 221 l2n(tout1, out); in CAST_cbc_encrypt() [all …]
|
/third_party/openssl/ssl/ |
D | s3_cbc.c | 57 l2n(sha1->h0, md_out); in tls1_sha1_final_raw() 58 l2n(sha1->h1, md_out); in tls1_sha1_final_raw() 59 l2n(sha1->h2, md_out); in tls1_sha1_final_raw() 60 l2n(sha1->h3, md_out); in tls1_sha1_final_raw() 61 l2n(sha1->h4, md_out); in tls1_sha1_final_raw() 70 l2n(sha256->h[i], md_out); in tls1_sha256_final_raw()
|
D | ssl_local.h | 84 # define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24)&0xff), \ macro
|
D | s3_lib.c | 4577 l2n(Time, p); in ssl_fill_hello_random()
|
/third_party/openssl/crypto/rc2/ |
D | rc2_local.h | 120 #undef l2n 121 #define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \ macro
|
/third_party/openssl/crypto/rc5/ |
D | rc5_local.h | 122 #undef l2n 123 #define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \ macro
|
/third_party/boringssl/src/decrepit/ |
D | macros.h | 126 #define l2n(l, c) \ macro
|
/third_party/openssl/crypto/des/ |
D | des_local.h | 72 # define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \ macro
|