Home
last modified time | relevance | path

Searched refs:MD5_BLOCK_LENGTH (Results 1 – 25 of 107) sorted by relevance

12345

/dports/devel/simgear/simgear-2020.3.11/simgear/package/
H A Dmd5.c42 static u_int8_t PADDING[MD5_BLOCK_LENGTH] = {
72 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in SG_MD5Update()
73 need = MD5_BLOCK_LENGTH - have; in SG_MD5Update()
88 while (len >= MD5_BLOCK_LENGTH) { in SG_MD5Update()
90 input += MD5_BLOCK_LENGTH; in SG_MD5Update()
91 len -= MD5_BLOCK_LENGTH; in SG_MD5Update()
114 padlen = MD5_BLOCK_LENGTH - in SG_MD5Pad()
115 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in SG_MD5Pad()
117 padlen += MD5_BLOCK_LENGTH; in SG_MD5Pad()
159 u_int32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in SG_MD5Transform()
[all …]
/dports/net/rpki-client/rpki-client-portable-7.6/openbsd/src/lib/libc/hash/
H A Dmd5.c40 static const u_int8_t PADDING[MD5_BLOCK_LENGTH] = {
71 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
72 need = MD5_BLOCK_LENGTH - have; in MD5Update()
87 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
89 input += MD5_BLOCK_LENGTH; in MD5Update()
90 len -= MD5_BLOCK_LENGTH; in MD5Update()
114 padlen = MD5_BLOCK_LENGTH - in MD5Pad()
115 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Pad()
117 padlen += MD5_BLOCK_LENGTH; in MD5Pad()
159 u_int32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
[all …]
/dports/net/freeradius3/freeradius-server-3.0.25/src/lib/
H A Dmd5.c70 static const uint8_t PADDING[MD5_BLOCK_LENGTH] = {
103 have = (size_t)((ctx->count[0] >> 3) & (MD5_BLOCK_LENGTH - 1)); in fr_md5_update()
104 need = MD5_BLOCK_LENGTH - have; in fr_md5_update()
124 while (inlen >= MD5_BLOCK_LENGTH) { in fr_md5_update()
126 in += MD5_BLOCK_LENGTH; in fr_md5_update()
127 inlen -= MD5_BLOCK_LENGTH; in fr_md5_update()
153 padlen = MD5_BLOCK_LENGTH - in fr_md5_final()
154 ((ctx->count[0] >> 3) & (MD5_BLOCK_LENGTH - 1)); in fr_md5_final()
156 padlen += MD5_BLOCK_LENGTH; in fr_md5_final()
187 uint32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in fr_md5_transform()
[all …]
/dports/net/freeradius-client/freeradius-client-1.1.7/lib/
H A Dmd5.c48 static uint8_t PADDING[MD5_BLOCK_LENGTH] = {
79 have = (size_t)((ctx->count[0] >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
80 need = MD5_BLOCK_LENGTH - have; in MD5Update()
102 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
104 input += MD5_BLOCK_LENGTH; in MD5Update()
105 len -= MD5_BLOCK_LENGTH; in MD5Update()
129 padlen = MD5_BLOCK_LENGTH - in MD5Final()
130 ((ctx->count[0] >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Final()
132 padlen += MD5_BLOCK_LENGTH; in MD5Final()
164 uint32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
[all …]
/dports/archivers/dpkg/dpkg-1.19.7/lib/compat/
H A Dmd5.c44 static uint8_t PADDING[MD5_BLOCK_LENGTH] = {
74 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
75 need = MD5_BLOCK_LENGTH - have; in MD5Update()
90 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
92 input += MD5_BLOCK_LENGTH; in MD5Update()
93 len -= MD5_BLOCK_LENGTH; in MD5Update()
116 padlen = MD5_BLOCK_LENGTH - in MD5Pad()
117 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Pad()
119 padlen += MD5_BLOCK_LENGTH; in MD5Pad()
161 uint32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
[all …]
/dports/security/signify/outils-0.10/src/liboutils/
H A Dmd5.c40 static u_int8_t PADDING[MD5_BLOCK_LENGTH] = {
70 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
71 need = MD5_BLOCK_LENGTH - have; in MD5Update()
86 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
88 input += MD5_BLOCK_LENGTH; in MD5Update()
89 len -= MD5_BLOCK_LENGTH; in MD5Update()
112 padlen = MD5_BLOCK_LENGTH - in MD5Pad()
113 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Pad()
115 padlen += MD5_BLOCK_LENGTH; in MD5Pad()
155 u_int32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
[all …]
/dports/audio/libxmp/libxmp-4.5.0/src/
H A Dmd5.c37 static uint8 PADDING[MD5_BLOCK_LENGTH] = {
62 uint32 a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
67 for (a = 0; a < MD5_BLOCK_LENGTH / 4; a++) { in MD5Transform()
177 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
178 need = MD5_BLOCK_LENGTH - have; in MD5Update()
193 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
195 input += MD5_BLOCK_LENGTH; in MD5Update()
196 len -= MD5_BLOCK_LENGTH; in MD5Update()
218 padlen = MD5_BLOCK_LENGTH - in MD5Pad()
219 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Pad()
[all …]
/dports/net/dhcpcd/dhcpcd-9.4.1/compat/crypt/
H A Dmd5.c41 static uint8_t PADDING[MD5_BLOCK_LENGTH] = {
82 uint32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
87 for (a = 0; a < MD5_BLOCK_LENGTH / 4; a++) { in MD5Transform()
185 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
186 need = MD5_BLOCK_LENGTH - have; in MD5Update()
201 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
203 input += MD5_BLOCK_LENGTH; in MD5Update()
204 len -= MD5_BLOCK_LENGTH; in MD5Update()
228 padlen = MD5_BLOCK_LENGTH - in MD5Final()
229 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Final()
[all …]
/dports/devel/upnp/pupnp-release-1.14.12/upnp/src/uuid/
H A Dmd5.c47 static uint8_t PADDING[MD5_BLOCK_LENGTH] = {
78 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
79 need = MD5_BLOCK_LENGTH - have; in MD5Update()
94 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
96 input += MD5_BLOCK_LENGTH; in MD5Update()
97 len -= MD5_BLOCK_LENGTH; in MD5Update()
121 padlen = MD5_BLOCK_LENGTH - in MD5Final()
122 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Final()
124 padlen += MD5_BLOCK_LENGTH; in MD5Final()
154 uint32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
[all …]
/dports/devel/ucommon/ucommon-7.0.0/nossl/
H A Dmd5.cpp39 static uint8_t PADDING[MD5_BLOCK_LENGTH] = {
69 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
70 need = MD5_BLOCK_LENGTH - have; in MD5Update()
85 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
87 input += MD5_BLOCK_LENGTH; in MD5Update()
88 len -= MD5_BLOCK_LENGTH; in MD5Update()
111 padlen = MD5_BLOCK_LENGTH - in MD5Pad()
112 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Pad()
114 padlen += MD5_BLOCK_LENGTH; in MD5Pad()
156 uint32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
[all …]
/dports/net/openntpd/openntpd-6.8p1/compat/
H A Dmd5.c40 static u_int8_t PADDING[MD5_BLOCK_LENGTH] = {
70 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
71 need = MD5_BLOCK_LENGTH - have; in MD5Update()
86 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
88 input += MD5_BLOCK_LENGTH; in MD5Update()
89 len -= MD5_BLOCK_LENGTH; in MD5Update()
112 padlen = MD5_BLOCK_LENGTH - in MD5Pad()
113 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Pad()
115 padlen += MD5_BLOCK_LENGTH; in MD5Pad()
155 u_int32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
[all …]
/dports/net/radcli/radcli-1.3.0/lib/
H A Dmd5.c48 static uint8_t PADDING[MD5_BLOCK_LENGTH] = {
79 have = (size_t)((ctx->count[0] >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
80 need = MD5_BLOCK_LENGTH - have; in MD5Update()
102 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
104 input += MD5_BLOCK_LENGTH; in MD5Update()
105 len -= MD5_BLOCK_LENGTH; in MD5Update()
129 padlen = MD5_BLOCK_LENGTH - in MD5Final()
130 ((ctx->count[0] >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Final()
132 padlen += MD5_BLOCK_LENGTH; in MD5Final()
164 uint32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
[all …]
/dports/net/radiusclient/radiusclient-ng-0.5.6/lib/
H A Dmd5.c73 static uint8_t PADDING[MD5_BLOCK_LENGTH] = {
104 have = (size_t)((ctx->count[0] >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
105 need = MD5_BLOCK_LENGTH - have; in MD5Update()
127 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
129 input += MD5_BLOCK_LENGTH; in MD5Update()
130 len -= MD5_BLOCK_LENGTH; in MD5Update()
154 padlen = MD5_BLOCK_LENGTH - in MD5Final()
155 ((ctx->count[0] >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Final()
157 padlen += MD5_BLOCK_LENGTH; in MD5Final()
189 uint32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
[all …]
/dports/net/kamailio/kamailio-5.4.5/src/core/crypto/
H A Dmd5.c44 static u_int8_t PADDING[MD5_BLOCK_LENGTH] = {
74 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in U_MD5Update()
75 need = MD5_BLOCK_LENGTH - have; in U_MD5Update()
90 while (len >= MD5_BLOCK_LENGTH) { in U_MD5Update()
92 input += MD5_BLOCK_LENGTH; in U_MD5Update()
93 len -= MD5_BLOCK_LENGTH; in U_MD5Update()
116 padlen = MD5_BLOCK_LENGTH - in MD5Pad()
117 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Pad()
119 padlen += MD5_BLOCK_LENGTH; in MD5Pad()
161 u_int32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
[all …]
/dports/security/openssh-portable/openssh-8.8p1/openbsd-compat/
H A Dmd5.c44 static u_int8_t PADDING[MD5_BLOCK_LENGTH] = {
74 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
75 need = MD5_BLOCK_LENGTH - have; in MD5Update()
90 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
92 input += MD5_BLOCK_LENGTH; in MD5Update()
93 len -= MD5_BLOCK_LENGTH; in MD5Update()
116 padlen = MD5_BLOCK_LENGTH - in MD5Pad()
117 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Pad()
119 padlen += MD5_BLOCK_LENGTH; in MD5Pad()
159 u_int32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
[all …]
H A Dmd5.h20 #define MD5_BLOCK_LENGTH 64 macro
27 u_int8_t buffer[MD5_BLOCK_LENGTH]; /* input buffer */
36 void MD5Transform(u_int32_t [4], const u_int8_t [MD5_BLOCK_LENGTH])
38 __attribute__((__bounded__(__minbytes__,2,MD5_BLOCK_LENGTH)));
/dports/deskutils/ljclive/clive-0.4.10/src/
H A Dmd5.c38 static u_int8_t PADDING[MD5_BLOCK_LENGTH] = {
68 have = (size_t)((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Update()
69 need = MD5_BLOCK_LENGTH - have; in MD5Update()
84 while (len >= MD5_BLOCK_LENGTH) { in MD5Update()
86 input += MD5_BLOCK_LENGTH; in MD5Update()
87 len -= MD5_BLOCK_LENGTH; in MD5Update()
110 padlen = MD5_BLOCK_LENGTH - in MD5Pad()
111 ((ctx->count >> 3) & (MD5_BLOCK_LENGTH - 1)); in MD5Pad()
113 padlen += MD5_BLOCK_LENGTH; in MD5Pad()
155 u_int32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4]; in MD5Transform()
[all …]
/dports/net/rpki-client/rpki-client-portable-7.6/openbsd/src/include/
H A Dmd5.h18 #define MD5_BLOCK_LENGTH 64 macro
25 u_int8_t buffer[MD5_BLOCK_LENGTH]; /* input buffer */
35 void MD5Transform(u_int32_t [4], const u_int8_t [MD5_BLOCK_LENGTH])
37 __attribute__((__bounded__(__minbytes__,2,MD5_BLOCK_LENGTH)));
/dports/security/ncrack/ncrack-0.7/opensshlib/
H A Dmd5.h20 #define MD5_BLOCK_LENGTH 64 macro
27 u_int8_t buffer[MD5_BLOCK_LENGTH]; /* input buffer */
36 void MD5Transform(u_int32_t [4], const u_int8_t [MD5_BLOCK_LENGTH])
38 __attribute__((__bounded__(__minbytes__,2,MD5_BLOCK_LENGTH)));
/dports/net/openntpd/openntpd-6.8p1/include/
H A Dmd5.h18 #define MD5_BLOCK_LENGTH 64 macro
25 u_int8_t buffer[MD5_BLOCK_LENGTH]; /* input buffer */
34 void MD5Transform(u_int32_t [4], const u_int8_t [MD5_BLOCK_LENGTH])
36 __attribute__((__bounded__(__minbytes__,2,MD5_BLOCK_LENGTH)));
/dports/security/signify/outils-0.10/src/liboutils/include/
H A Dmd5.h18 #define MD5_BLOCK_LENGTH 64 macro
25 u_int8_t buffer[MD5_BLOCK_LENGTH]; /* input buffer */
35 void MD5Transform(u_int32_t [4], const u_int8_t [MD5_BLOCK_LENGTH])
37 __attribute__((__bounded__(__minbytes__,2,MD5_BLOCK_LENGTH)));
/dports/devel/sunpromake/schily-2021-09-18/libmdigest/
H A Dmd5.c63 static UInt8_t PADDING[MD5_BLOCK_LENGTH] = {
99 need = MD5_BLOCK_LENGTH - have;
115 while (len >= MD5_BLOCK_LENGTH) {
117 input += MD5_BLOCK_LENGTH;
118 len -= MD5_BLOCK_LENGTH;
142 padlen = MD5_BLOCK_LENGTH -
143 ((ctx->count[0] >> 3) & (MD5_BLOCK_LENGTH - 1));
145 padlen += MD5_BLOCK_LENGTH;
189 const UInt8_t block[MD5_BLOCK_LENGTH];
191 UInt32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4];
[all …]
/dports/devel/smake/schily-2021-09-18/libmdigest/
H A Dmd5.c63 static UInt8_t PADDING[MD5_BLOCK_LENGTH] = {
99 need = MD5_BLOCK_LENGTH - have;
115 while (len >= MD5_BLOCK_LENGTH) {
117 input += MD5_BLOCK_LENGTH;
118 len -= MD5_BLOCK_LENGTH;
142 padlen = MD5_BLOCK_LENGTH -
143 ((ctx->count[0] >> 3) & (MD5_BLOCK_LENGTH - 1));
145 padlen += MD5_BLOCK_LENGTH;
189 const UInt8_t block[MD5_BLOCK_LENGTH];
191 UInt32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4];
[all …]
/dports/devel/schilybase/schily-2021-09-18/libmdigest/
H A Dmd5.c63 static UInt8_t PADDING[MD5_BLOCK_LENGTH] = {
99 need = MD5_BLOCK_LENGTH - have;
115 while (len >= MD5_BLOCK_LENGTH) {
117 input += MD5_BLOCK_LENGTH;
118 len -= MD5_BLOCK_LENGTH;
142 padlen = MD5_BLOCK_LENGTH -
143 ((ctx->count[0] >> 3) & (MD5_BLOCK_LENGTH - 1));
145 padlen += MD5_BLOCK_LENGTH;
189 const UInt8_t block[MD5_BLOCK_LENGTH];
191 UInt32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4];
[all …]
/dports/net/rscsi/schily-2021-09-18/libmdigest/
H A Dmd5.c63 static UInt8_t PADDING[MD5_BLOCK_LENGTH] = {
99 need = MD5_BLOCK_LENGTH - have;
115 while (len >= MD5_BLOCK_LENGTH) {
117 input += MD5_BLOCK_LENGTH;
118 len -= MD5_BLOCK_LENGTH;
142 padlen = MD5_BLOCK_LENGTH -
143 ((ctx->count[0] >> 3) & (MD5_BLOCK_LENGTH - 1));
145 padlen += MD5_BLOCK_LENGTH;
189 const UInt8_t block[MD5_BLOCK_LENGTH];
191 UInt32_t a, b, c, d, in[MD5_BLOCK_LENGTH / 4];
[all …]

12345