Searched refs:DES_LONG (Results 1 - 25 of 94) sorted by relevance

1234

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/des/
H A Dqud_cksm.c67 #define Q_B0(a) (((DES_LONG)(a)))
68 #define Q_B1(a) (((DES_LONG)(a))<<8)
69 #define Q_B2(a) (((DES_LONG)(a))<<16)
70 #define Q_B3(a) (((DES_LONG)(a))<<24)
74 #define NOISE ((DES_LONG)83653421L)
76 DES_LONG DES_quad_cksum(const unsigned char *input, DES_cblock output[],
79 DES_LONG z0,z1,t0,t1;
86 DES_LONG *lp;
93 lp = (DES_LONG *) &(output[0])[0];
107 t0= (DES_LONG)(*(c
[all...]
H A Ddes_locl.h108 #define c2l(c,l) (l =((DES_LONG)(*((c)++))) , \
109 l|=((DES_LONG)(*((c)++)))<< 8L, \
110 l|=((DES_LONG)(*((c)++)))<<16L, \
111 l|=((DES_LONG)(*((c)++)))<<24L)
118 case 8: l2 =((DES_LONG)(*(--(c))))<<24L; \
119 case 7: l2|=((DES_LONG)(*(--(c))))<<16L; \
120 case 6: l2|=((DES_LONG)(*(--(c))))<< 8L; \
121 case 5: l2|=((DES_LONG)(*(--(c)))); \
122 case 4: l1 =((DES_LONG)(*(--(c))))<<24L; \
123 case 3: l1|=((DES_LONG)(*(
[all...]
H A Decb3_enc.c66 register DES_LONG l0,l1;
67 DES_LONG ll[2];
H A Dcbc_cksm.c61 DES_LONG DES_cbc_cksum(const unsigned char *in, DES_cblock *output,
65 register DES_LONG tout0,tout1,tin0,tin1;
67 DES_LONG tin[2];
85 DES_encrypt1((DES_LONG *)tin,schedule,DES_ENCRYPT);
H A Dfcrypt_b.c80 void fcrypt_body(DES_LONG *out, DES_key_schedule *ks, DES_LONG Eswap0,
81 DES_LONG Eswap1)
83 register DES_LONG l,r,t,u;
87 register DES_LONG *s;
89 register DES_LONG E0,E1;
94 s=(DES_LONG *)ks;
H A Dncbc_enc.c74 register DES_LONG tin0,tin1;
75 register DES_LONG tout0,tout1,xor0,xor1;
77 DES_LONG tin[2];
92 DES_encrypt1((DES_LONG *)tin,_schedule,DES_ENCRYPT);
101 DES_encrypt1((DES_LONG *)tin,_schedule,DES_ENCRYPT);
119 DES_encrypt1((DES_LONG *)tin,_schedule,DES_DECRYPT);
131 DES_encrypt1((DES_LONG *)tin,_schedule,DES_DECRYPT);
H A Ddes_enc.c61 void DES_encrypt1(DES_LONG *data, DES_key_schedule *ks, int enc)
63 register DES_LONG l,r,t,u;
70 register DES_LONG *s;
159 void DES_encrypt2(DES_LONG *data, DES_key_schedule *ks, int enc)
161 register DES_LONG l,r,t,u;
168 register DES_LONG *s;
250 void DES_encrypt3(DES_LONG *data, DES_key_schedule *ks1,
253 register DES_LONG l,r;
260 DES_encrypt2((DES_LONG *)data,ks1,DES_ENCRYPT);
261 DES_encrypt2((DES_LONG *)dat
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/des/
H A Dqud_cksm.c68 #define Q_B0(a) (((DES_LONG)(a)))
69 #define Q_B1(a) (((DES_LONG)(a))<<8)
70 #define Q_B2(a) (((DES_LONG)(a))<<16)
71 #define Q_B3(a) (((DES_LONG)(a))<<24)
75 #define NOISE ((DES_LONG)83653421L)
77 DES_LONG DES_quad_cksum(const unsigned char *input, DES_cblock output[],
80 DES_LONG z0, z1, t0, t1;
90 DES_LONG *lp;
98 lp = (DES_LONG *)&(output[0])[0];
111 t0 = (DES_LONG)(*(c
[all...]
H A Ddes_locl.h108 # define c2l(c,l) (l =((DES_LONG)(*((c)++))) , \
109 l|=((DES_LONG)(*((c)++)))<< 8L, \
110 l|=((DES_LONG)(*((c)++)))<<16L, \
111 l|=((DES_LONG)(*((c)++)))<<24L)
118 case 8: l2 =((DES_LONG)(*(--(c))))<<24L; \
119 case 7: l2|=((DES_LONG)(*(--(c))))<<16L; \
120 case 6: l2|=((DES_LONG)(*(--(c))))<< 8L; \
121 case 5: l2|=((DES_LONG)(*(--(c)))); \
122 case 4: l1 =((DES_LONG)(*(--(c))))<<24L; \
123 case 3: l1|=((DES_LONG)(*(
[all...]
H A Ddes_enc.c62 void DES_encrypt1(DES_LONG *data, DES_key_schedule *ks, int enc)
64 register DES_LONG l, r, t, u;
71 register DES_LONG *s;
154 void DES_encrypt2(DES_LONG *data, DES_key_schedule *ks, int enc)
156 register DES_LONG l, r, t, u;
163 register DES_LONG *s;
239 void DES_encrypt3(DES_LONG *data, DES_key_schedule *ks1,
242 register DES_LONG l, r;
249 DES_encrypt2((DES_LONG *)data, ks1, DES_ENCRYPT);
250 DES_encrypt2((DES_LONG *)dat
[all...]
H A Decb3_enc.c65 register DES_LONG l0, l1;
66 DES_LONG ll[2];
H A Dcbc_cksm.c61 DES_LONG DES_cbc_cksum(const unsigned char *in, DES_cblock *output,
65 register DES_LONG tout0, tout1, tin0, tin1;
67 DES_LONG tin[2];
84 DES_encrypt1((DES_LONG *)tin, schedule, DES_ENCRYPT);
H A Dfcrypt_b.c80 void fcrypt_body(DES_LONG *out, DES_key_schedule *ks, DES_LONG Eswap0,
81 DES_LONG Eswap1)
83 register DES_LONG l, r, t, u;
87 register DES_LONG *s;
89 register DES_LONG E0, E1;
94 s = (DES_LONG *)ks;
H A Dncbc_enc.c75 register DES_LONG tin0, tin1;
76 register DES_LONG tout0, tout1, xor0, xor1;
78 DES_LONG tin[2];
93 DES_encrypt1((DES_LONG *)tin, _schedule, DES_ENCRYPT);
105 DES_encrypt1((DES_LONG *)tin, _schedule, DES_ENCRYPT);
124 DES_encrypt1((DES_LONG *)tin, _schedule, DES_DECRYPT);
137 DES_encrypt1((DES_LONG *)tin, _schedule, DES_DECRYPT);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/des/
H A Dqud_cksm.c68 #define Q_B0(a) (((DES_LONG)(a)))
69 #define Q_B1(a) (((DES_LONG)(a))<<8)
70 #define Q_B2(a) (((DES_LONG)(a))<<16)
71 #define Q_B3(a) (((DES_LONG)(a))<<24)
75 #define NOISE ((DES_LONG)83653421L)
77 DES_LONG DES_quad_cksum(const unsigned char *input, DES_cblock output[],
80 DES_LONG z0, z1, t0, t1;
90 DES_LONG *lp;
98 lp = (DES_LONG *)&(output[0])[0];
111 t0 = (DES_LONG)(*(c
[all...]
H A Ddes_locl.h108 # define c2l(c,l) (l =((DES_LONG)(*((c)++))) , \
109 l|=((DES_LONG)(*((c)++)))<< 8L, \
110 l|=((DES_LONG)(*((c)++)))<<16L, \
111 l|=((DES_LONG)(*((c)++)))<<24L)
118 case 8: l2 =((DES_LONG)(*(--(c))))<<24L; \
119 case 7: l2|=((DES_LONG)(*(--(c))))<<16L; \
120 case 6: l2|=((DES_LONG)(*(--(c))))<< 8L; \
121 case 5: l2|=((DES_LONG)(*(--(c)))); \
122 case 4: l1 =((DES_LONG)(*(--(c))))<<24L; \
123 case 3: l1|=((DES_LONG)(*(
[all...]
H A Ddes_enc.c62 void DES_encrypt1(DES_LONG *data, DES_key_schedule *ks, int enc)
64 register DES_LONG l, r, t, u;
71 register DES_LONG *s;
154 void DES_encrypt2(DES_LONG *data, DES_key_schedule *ks, int enc)
156 register DES_LONG l, r, t, u;
163 register DES_LONG *s;
239 void DES_encrypt3(DES_LONG *data, DES_key_schedule *ks1,
242 register DES_LONG l, r;
249 DES_encrypt2((DES_LONG *)data, ks1, DES_ENCRYPT);
250 DES_encrypt2((DES_LONG *)dat
[all...]
H A Decb3_enc.c65 register DES_LONG l0, l1;
66 DES_LONG ll[2];
H A Dcbc_cksm.c61 DES_LONG DES_cbc_cksum(const unsigned char *in, DES_cblock *output,
65 register DES_LONG tout0, tout1, tin0, tin1;
67 DES_LONG tin[2];
84 DES_encrypt1((DES_LONG *)tin, schedule, DES_ENCRYPT);
H A Dfcrypt_b.c80 void fcrypt_body(DES_LONG *out, DES_key_schedule *ks, DES_LONG Eswap0,
81 DES_LONG Eswap1)
83 register DES_LONG l, r, t, u;
87 register DES_LONG *s;
89 register DES_LONG E0, E1;
94 s = (DES_LONG *)ks;
H A Dncbc_enc.c75 register DES_LONG tin0, tin1;
76 register DES_LONG tout0, tout1, xor0, xor1;
78 DES_LONG tin[2];
93 DES_encrypt1((DES_LONG *)tin, _schedule, DES_ENCRYPT);
105 DES_encrypt1((DES_LONG *)tin, _schedule, DES_ENCRYPT);
124 DES_encrypt1((DES_LONG *)tin, _schedule, DES_DECRYPT);
137 DES_encrypt1((DES_LONG *)tin, _schedule, DES_DECRYPT);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/MacOS/
H A Dopensslconf.h44 #if defined(HEADER_DES_H) && !defined(DES_LONG)
49 # ifndef DES_LONG
50 # define DES_LONG unsigned long macro
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/MacOS/
H A Dopensslconf.h44 #if defined(HEADER_DES_H) && !defined(DES_LONG)
49 # ifndef DES_LONG
50 # define DES_LONG unsigned long macro
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/MacOS/
H A Dopensslconf.h42 #if defined(HEADER_DES_H) && !defined(DES_LONG)
45 #ifndef DES_LONG
46 #define DES_LONG unsigned long macro
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/des/times/
H A Dalpha.cc2 DES_LONG is 'unsigned int'

Completed in 58 milliseconds

1234