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

12

/freebsd-9.3-release/sys/crypto/des/
H A Ddes.h59 #define DES_LONG u_int32_t macro
68 DES_LONG deslong[2];
87 void des_encrypt1(DES_LONG *, des_key_schedule, int);
88 void des_encrypt2(DES_LONG *, des_key_schedule, int);
89 void des_encrypt3(DES_LONG *, des_key_schedule, des_key_schedule,
91 void des_decrypt3(DES_LONG *, des_key_schedule, des_key_schedule,
H A Ddes_locl.h69 #define c2l(c,l) (l =((DES_LONG)(*((c)++))) , \
70 l|=((DES_LONG)(*((c)++)))<< 8L, \
71 l|=((DES_LONG)(*((c)++)))<<16L, \
72 l|=((DES_LONG)(*((c)++)))<<24L)
79 case 8: l2 =((DES_LONG)(*(--(c))))<<24L; \
80 case 7: l2|=((DES_LONG)(*(--(c))))<<16L; \
81 case 6: l2|=((DES_LONG)(*(--(c))))<< 8L; \
82 case 5: l2|=((DES_LONG)(*(--(c)))); \
83 case 4: l1 =((DES_LONG)(*(--(c))))<<24L; \
84 case 3: l1|=((DES_LONG)(*(
[all...]
H A Ddes_enc.c68 extern const DES_LONG des_SPtrans[8][64];
70 void des_encrypt1(DES_LONG *data, des_key_schedule ks, int enc)
72 register DES_LONG l,r,t,u;
79 register DES_LONG *s;
168 void des_encrypt2(DES_LONG *data, des_key_schedule ks, int enc)
170 register DES_LONG l,r,t,u;
177 register DES_LONG *s;
259 void des_encrypt3(DES_LONG *data, des_key_schedule ks1, des_key_schedule ks2,
262 register DES_LONG l,r;
269 des_encrypt2((DES_LONG *)dat
[all...]
H A Ddes_ecb.c91 if (sizeof(DES_LONG) != sizeof(long))
103 register DES_LONG l;
104 DES_LONG ll[2];
120 register DES_LONG l0,l1;
121 DES_LONG ll[2];
/freebsd-9.3-release/crypto/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 Decb3_enc.c65 register DES_LONG l0, l1;
66 DES_LONG ll[2];
H A Decb_enc.c65 register DES_LONG l;
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);
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;
157 void DES_encrypt2(DES_LONG *data, DES_key_schedule *ks, int enc)
159 register DES_LONG l, r, t, u;
166 register DES_LONG *s;
246 void DES_encrypt3(DES_LONG *data, DES_key_schedule *ks1,
249 register DES_LONG l, r;
256 DES_encrypt2((DES_LONG *)data, ks1, DES_ENCRYPT);
257 DES_encrypt2((DES_LONG *)dat
[all...]
H A Dofb_enc.c71 register DES_LONG d0, d1, vv0, vv1, v0, v1, n = (numbits + 7) / 8;
72 register DES_LONG mask0, mask1;
75 DES_LONG ti[2];
102 DES_encrypt1((DES_LONG *)ti, schedule, DES_ENCRYPT);
H A Dpcbc_enc.c65 register DES_LONG sin0, sin1, xor0, xor1, tout0, tout1;
66 DES_LONG tin[2];
85 DES_encrypt1((DES_LONG *)tin, schedule, DES_ENCRYPT);
101 DES_encrypt1((DES_LONG *)tin, schedule, DES_DECRYPT);
H A Ddes_lib.c95 if (sizeof(DES_LONG) != sizeof(long))
H A Dofb64ede.c71 register DES_LONG v0, v1;
76 DES_LONG ti[2];
/freebsd-9.3-release/crypto/openssl/crypto/des/times/
H A Dalpha.cc2 DES_LONG is 'unsigned int'
/freebsd-9.3-release/secure/lib/libcrypto/
H A Dopensslconf-mips.h109 #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG)
112 #ifndef DES_LONG
114 #define DES_LONG unsigned int macro
116 #define DES_LONG unsigned long macro
H A Dopensslconf-amd64.h105 #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG)
108 #ifndef DES_LONG
109 #define DES_LONG unsigned int macro
H A Dopensslconf-arm.h109 #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG)
112 #ifndef DES_LONG
113 #define DES_LONG unsigned long macro
H A Dopensslconf-i386.h105 #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG)
108 #ifndef DES_LONG
109 #define DES_LONG unsigned long macro
H A Dopensslconf-ia64.h109 #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG)
112 #ifndef DES_LONG
113 #define DES_LONG unsigned int macro
H A Dopensslconf-powerpc.h109 #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG)
112 #ifndef DES_LONG
113 #define DES_LONG unsigned int macro
H A Dopensslconf-sparc64.h109 #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG)
112 #ifndef DES_LONG
113 #define DES_LONG unsigned int macro
/freebsd-9.3-release/crypto/openssl/crypto/mdc2/
H A Dmdc2dgst.c70 #define c2l(c,l) (l =((DES_LONG)(*((c)++))) , \
71 l|=((DES_LONG)(*((c)++)))<< 8L, \
72 l|=((DES_LONG)(*((c)++)))<<16L, \
73 l|=((DES_LONG)(*((c)++)))<<24L)
125 register DES_LONG tin0, tin1;
126 register DES_LONG ttin0, ttin1;
127 DES_LONG d[2], dd[2];

Completed in 220 milliseconds

12