/openssl/crypto/idea/ |
H A D | i_cbc.c | 42 l2n(tout0, out); in IDEA_cbc_encrypt() 44 l2n(tout1, out); in IDEA_cbc_encrypt() 54 l2n(tout0, out); in IDEA_cbc_encrypt() 56 l2n(tout1, out); in IDEA_cbc_encrypt() 58 l2n(tout0, iv); in IDEA_cbc_encrypt() 59 l2n(tout1, iv); in IDEA_cbc_encrypt() 72 l2n(tout0, out); in IDEA_cbc_encrypt() 73 l2n(tout1, out); in IDEA_cbc_encrypt() 89 l2n(xor0, iv); in IDEA_cbc_encrypt() 90 l2n(xor1, iv); in IDEA_cbc_encrypt()
|
H A D | i_ofb64.c | 49 l2n(v0, dp); in IDEA_ofb64_encrypt() 50 l2n(v1, dp); in IDEA_ofb64_encrypt() 56 l2n(t, dp); in IDEA_ofb64_encrypt() 58 l2n(t, dp); in IDEA_ofb64_encrypt() 68 l2n(v0, iv); in IDEA_ofb64_encrypt() 69 l2n(v1, iv); in IDEA_ofb64_encrypt()
|
H A D | i_cfb64.c | 52 l2n(t, iv); in IDEA_cfb64_encrypt() 54 l2n(t, iv); in IDEA_cfb64_encrypt() 72 l2n(t, iv); in IDEA_cfb64_encrypt() 74 l2n(t, iv); in IDEA_cfb64_encrypt()
|
H A D | i_ecb.c | 37 l2n(l0, out); in IDEA_ecb_encrypt() 39 l2n(l1, out); in IDEA_ecb_encrypt()
|
H A D | idea_local.h | 70 #undef l2n 71 #define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \ macro
|
/openssl/crypto/bf/ |
H A D | bf_ofb64.c | 43 l2n(v0, dp); in BF_ofb64_encrypt() 44 l2n(v1, dp); in BF_ofb64_encrypt() 50 l2n(t, dp); in BF_ofb64_encrypt() 52 l2n(t, dp); in BF_ofb64_encrypt() 62 l2n(v0, iv); in BF_ofb64_encrypt() 63 l2n(v1, iv); in BF_ofb64_encrypt()
|
H A D | bf_enc.c | 130 l2n(tout0, out); in BF_cbc_encrypt() 131 l2n(tout1, out); in BF_cbc_encrypt() 142 l2n(tout0, out); in BF_cbc_encrypt() 143 l2n(tout1, out); in BF_cbc_encrypt() 145 l2n(tout0, ivec); in BF_cbc_encrypt() 146 l2n(tout1, ivec); in BF_cbc_encrypt() 159 l2n(tout0, out); in BF_cbc_encrypt() 160 l2n(tout1, out); in BF_cbc_encrypt() 176 l2n(xor0, ivec); in BF_cbc_encrypt() 177 l2n(xor1, ivec); in BF_cbc_encrypt()
|
H A D | bf_cfb64.c | 46 l2n(t, iv); in BF_cfb64_encrypt() 48 l2n(t, iv); in BF_cfb64_encrypt() 66 l2n(t, iv); in BF_cfb64_encrypt() 68 l2n(t, iv); in BF_cfb64_encrypt()
|
H A D | bf_ecb.c | 45 l2n(l, out); in BF_ecb_encrypt() 47 l2n(l, out); in BF_ecb_encrypt()
|
H A D | bf_local.h | 65 # undef l2n 66 # define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \ macro
|
/openssl/crypto/cast/ |
H A D | c_ofb64.c | 43 l2n(v0, dp); in CAST_ofb64_encrypt() 44 l2n(v1, dp); in CAST_ofb64_encrypt() 50 l2n(t, dp); in CAST_ofb64_encrypt() 52 l2n(t, dp); in CAST_ofb64_encrypt() 62 l2n(v0, iv); in CAST_ofb64_encrypt() 63 l2n(v1, iv); in CAST_ofb64_encrypt()
|
H A D | c_enc.c | 106 l2n(tout0, out); in CAST_cbc_encrypt() 107 l2n(tout1, out); in CAST_cbc_encrypt() 118 l2n(tout0, out); in CAST_cbc_encrypt() 119 l2n(tout1, out); in CAST_cbc_encrypt() 121 l2n(tout0, iv); in CAST_cbc_encrypt() 122 l2n(tout1, iv); in CAST_cbc_encrypt() 135 l2n(tout0, out); in CAST_cbc_encrypt() 136 l2n(tout1, out); in CAST_cbc_encrypt() 152 l2n(xor0, iv); in CAST_cbc_encrypt() 153 l2n(xor1, iv); in CAST_cbc_encrypt()
|
H A D | c_cfb64.c | 46 l2n(t, iv); in CAST_cfb64_encrypt() 48 l2n(t, iv); in CAST_cfb64_encrypt() 66 l2n(t, iv); in CAST_cfb64_encrypt() 68 l2n(t, iv); in CAST_cfb64_encrypt()
|
H A D | c_ecb.c | 34 l2n(l, out); in CAST_ecb_encrypt() 36 l2n(l, out); in CAST_ecb_encrypt()
|
H A D | cast_local.h | 65 #undef l2n 66 #define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \ macro
|
/openssl/ssl/record/methods/ |
H A D | ssl3_cbc.c | 79 l2n(sha1->h0, md_out); in tls1_sha1_final_raw() 80 l2n(sha1->h1, md_out); in tls1_sha1_final_raw() 81 l2n(sha1->h2, md_out); in tls1_sha1_final_raw() 82 l2n(sha1->h3, md_out); in tls1_sha1_final_raw() 83 l2n(sha1->h4, md_out); in tls1_sha1_final_raw() 92 l2n(sha256->h[i], md_out); in tls1_sha256_final_raw()
|
/openssl/include/internal/ |
H A D | common.h | 145 # define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24)&0xff), \ macro
|
/openssl/ssl/ |
H A D | s3_lib.c | 4709 l2n(Time, p); in ssl_fill_hello_random()
|