openssl_rsa_pss_verify 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +5 -0
- data/.rspec +2 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +35 -0
- data/README +1 -0
- data/Rakefile +4 -0
- data/ext/openssl_rsa_pss_verify/extconf.rb +15 -0
- data/ext/openssl_rsa_pss_verify/openssl_rsa_pss_verify_ext.c +56 -0
- data/lib/openssl_rsa_pss_verify/version.rb +3 -0
- data/lib/openssl_rsa_pss_verify.rb +2 -0
- data/openssl_rsa_pss_verify.gemspec +26 -0
- data/tasks/compile.rake +12 -0
- data/tasks/rspec.rake +12 -0
- data/vendor/openssl/include/openssl/aes.h +147 -0
- data/vendor/openssl/include/openssl/asn1.h +1404 -0
- data/vendor/openssl/include/openssl/asn1_mac.h +578 -0
- data/vendor/openssl/include/openssl/asn1t.h +960 -0
- data/vendor/openssl/include/openssl/bio.h +847 -0
- data/vendor/openssl/include/openssl/blowfish.h +129 -0
- data/vendor/openssl/include/openssl/bn.h +891 -0
- data/vendor/openssl/include/openssl/buffer.h +119 -0
- data/vendor/openssl/include/openssl/camellia.h +130 -0
- data/vendor/openssl/include/openssl/cast.h +107 -0
- data/vendor/openssl/include/openssl/cmac.h +82 -0
- data/vendor/openssl/include/openssl/cms.h +501 -0
- data/vendor/openssl/include/openssl/comp.h +80 -0
- data/vendor/openssl/include/openssl/conf.h +263 -0
- data/vendor/openssl/include/openssl/conf_api.h +89 -0
- data/vendor/openssl/include/openssl/crypto.h +611 -0
- data/vendor/openssl/include/openssl/des.h +248 -0
- data/vendor/openssl/include/openssl/des_old.h +446 -0
- data/vendor/openssl/include/openssl/dh.h +280 -0
- data/vendor/openssl/include/openssl/dsa.h +327 -0
- data/vendor/openssl/include/openssl/dso.h +409 -0
- data/vendor/openssl/include/openssl/dtls1.h +287 -0
- data/vendor/openssl/include/openssl/e_os2.h +315 -0
- data/vendor/openssl/include/openssl/ebcdic.h +19 -0
- data/vendor/openssl/include/openssl/ec.h +1167 -0
- data/vendor/openssl/include/openssl/ecdh.h +125 -0
- data/vendor/openssl/include/openssl/ecdsa.h +260 -0
- data/vendor/openssl/include/openssl/engine.h +842 -0
- data/vendor/openssl/include/openssl/err.h +386 -0
- data/vendor/openssl/include/openssl/evp.h +1409 -0
- data/vendor/openssl/include/openssl/hmac.h +110 -0
- data/vendor/openssl/include/openssl/idea.h +103 -0
- data/vendor/openssl/include/openssl/krb5_asn.h +256 -0
- data/vendor/openssl/include/openssl/kssl.h +183 -0
- data/vendor/openssl/include/openssl/lhash.h +241 -0
- data/vendor/openssl/include/openssl/md4.h +120 -0
- data/vendor/openssl/include/openssl/md5.h +120 -0
- data/vendor/openssl/include/openssl/mdc2.h +98 -0
- data/vendor/openssl/include/openssl/modes.h +135 -0
- data/vendor/openssl/include/openssl/obj_mac.h +4032 -0
- data/vendor/openssl/include/openssl/objects.h +1138 -0
- data/vendor/openssl/include/openssl/ocsp.h +623 -0
- data/vendor/openssl/include/openssl/opensslconf.h +234 -0
- data/vendor/openssl/include/openssl/opensslv.h +89 -0
- data/vendor/openssl/include/openssl/ossl_typ.h +202 -0
- data/vendor/openssl/include/openssl/pem.h +641 -0
- data/vendor/openssl/include/openssl/pem2.h +70 -0
- data/vendor/openssl/include/openssl/pkcs12.h +331 -0
- data/vendor/openssl/include/openssl/pkcs7.h +499 -0
- data/vendor/openssl/include/openssl/pqueue.h +94 -0
- data/vendor/openssl/include/openssl/rand.h +149 -0
- data/vendor/openssl/include/openssl/rc2.h +103 -0
- data/vendor/openssl/include/openssl/rc4.h +90 -0
- data/vendor/openssl/include/openssl/ripemd.h +107 -0
- data/vendor/openssl/include/openssl/rsa.h +582 -0
- data/vendor/openssl/include/openssl/safestack.h +2663 -0
- data/vendor/openssl/include/openssl/seed.h +139 -0
- data/vendor/openssl/include/openssl/sha.h +214 -0
- data/vendor/openssl/include/openssl/srp.h +172 -0
- data/vendor/openssl/include/openssl/srtp.h +145 -0
- data/vendor/openssl/include/openssl/ssl.h +2579 -0
- data/vendor/openssl/include/openssl/ssl2.h +272 -0
- data/vendor/openssl/include/openssl/ssl23.h +83 -0
- data/vendor/openssl/include/openssl/ssl3.h +684 -0
- data/vendor/openssl/include/openssl/stack.h +108 -0
- data/vendor/openssl/include/openssl/symhacks.h +475 -0
- data/vendor/openssl/include/openssl/tls1.h +735 -0
- data/vendor/openssl/include/openssl/ts.h +858 -0
- data/vendor/openssl/include/openssl/txt_db.h +112 -0
- data/vendor/openssl/include/openssl/ui.h +383 -0
- data/vendor/openssl/include/openssl/ui_compat.h +83 -0
- data/vendor/openssl/include/openssl/whrlpool.h +41 -0
- data/vendor/openssl/include/openssl/x509.h +1297 -0
- data/vendor/openssl/include/openssl/x509_vfy.h +567 -0
- data/vendor/openssl/include/openssl/x509v3.h +1007 -0
- data/vendor/openssl/lib/engines/lib4758cca.so +0 -0
- data/vendor/openssl/lib/engines/libaep.so +0 -0
- data/vendor/openssl/lib/engines/libatalla.so +0 -0
- data/vendor/openssl/lib/engines/libcapi.so +0 -0
- data/vendor/openssl/lib/engines/libchil.so +0 -0
- data/vendor/openssl/lib/engines/libcswift.so +0 -0
- data/vendor/openssl/lib/engines/libgmp.so +0 -0
- data/vendor/openssl/lib/engines/libgost.so +0 -0
- data/vendor/openssl/lib/engines/libnuron.so +0 -0
- data/vendor/openssl/lib/engines/libpadlock.so +0 -0
- data/vendor/openssl/lib/engines/libsureware.so +0 -0
- data/vendor/openssl/lib/engines/libubsec.so +0 -0
- data/vendor/openssl/lib/libcrypto.a +0 -0
- data/vendor/openssl/lib/libcrypto.so +0 -0
- data/vendor/openssl/lib/libcrypto.so.1.0.0 +0 -0
- data/vendor/openssl/lib/libssl.a +0 -0
- data/vendor/openssl/lib/libssl.so +0 -0
- data/vendor/openssl/lib/libssl.so.1.0.0 +0 -0
- data/vendor/openssl/lib/pkgconfig/libcrypto.pc +12 -0
- data/vendor/openssl/lib/pkgconfig/libssl.pc +12 -0
- data/vendor/openssl/lib/pkgconfig/openssl.pc +12 -0
- metadata +208 -0
@@ -0,0 +1,241 @@
|
|
1
|
+
/* crypto/lhash/lhash.h */
|
2
|
+
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
3
|
+
* All rights reserved.
|
4
|
+
*
|
5
|
+
* This package is an SSL implementation written
|
6
|
+
* by Eric Young (eay@cryptsoft.com).
|
7
|
+
* The implementation was written so as to conform with Netscapes SSL.
|
8
|
+
*
|
9
|
+
* This library is free for commercial and non-commercial use as long as
|
10
|
+
* the following conditions are aheared to. The following conditions
|
11
|
+
* apply to all code found in this distribution, be it the RC4, RSA,
|
12
|
+
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
13
|
+
* included with this distribution is covered by the same copyright terms
|
14
|
+
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
15
|
+
*
|
16
|
+
* Copyright remains Eric Young's, and as such any Copyright notices in
|
17
|
+
* the code are not to be removed.
|
18
|
+
* If this package is used in a product, Eric Young should be given attribution
|
19
|
+
* as the author of the parts of the library used.
|
20
|
+
* This can be in the form of a textual message at program startup or
|
21
|
+
* in documentation (online or textual) provided with the package.
|
22
|
+
*
|
23
|
+
* Redistribution and use in source and binary forms, with or without
|
24
|
+
* modification, are permitted provided that the following conditions
|
25
|
+
* are met:
|
26
|
+
* 1. Redistributions of source code must retain the copyright
|
27
|
+
* notice, this list of conditions and the following disclaimer.
|
28
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
29
|
+
* notice, this list of conditions and the following disclaimer in the
|
30
|
+
* documentation and/or other materials provided with the distribution.
|
31
|
+
* 3. All advertising materials mentioning features or use of this software
|
32
|
+
* must display the following acknowledgement:
|
33
|
+
* "This product includes cryptographic software written by
|
34
|
+
* Eric Young (eay@cryptsoft.com)"
|
35
|
+
* The word 'cryptographic' can be left out if the rouines from the library
|
36
|
+
* being used are not cryptographic related :-).
|
37
|
+
* 4. If you include any Windows specific code (or a derivative thereof) from
|
38
|
+
* the apps directory (application code) you must include an acknowledgement:
|
39
|
+
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
40
|
+
*
|
41
|
+
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
42
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
43
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
44
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
45
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
46
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
47
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
48
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
49
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
50
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
51
|
+
* SUCH DAMAGE.
|
52
|
+
*
|
53
|
+
* The licence and distribution terms for any publically available version or
|
54
|
+
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
55
|
+
* copied and put under another distribution licence
|
56
|
+
* [including the GNU Public Licence.]
|
57
|
+
*/
|
58
|
+
|
59
|
+
/* Header for dynamic hash table routines
|
60
|
+
* Author - Eric Young
|
61
|
+
*/
|
62
|
+
|
63
|
+
#ifndef HEADER_LHASH_H
|
64
|
+
#define HEADER_LHASH_H
|
65
|
+
|
66
|
+
#include <openssl/e_os2.h>
|
67
|
+
#ifndef OPENSSL_NO_FP_API
|
68
|
+
#include <stdio.h>
|
69
|
+
#endif
|
70
|
+
|
71
|
+
#ifndef OPENSSL_NO_BIO
|
72
|
+
#include <openssl/bio.h>
|
73
|
+
#endif
|
74
|
+
|
75
|
+
#ifdef __cplusplus
|
76
|
+
extern "C" {
|
77
|
+
#endif
|
78
|
+
|
79
|
+
typedef struct lhash_node_st
|
80
|
+
{
|
81
|
+
void *data;
|
82
|
+
struct lhash_node_st *next;
|
83
|
+
#ifndef OPENSSL_NO_HASH_COMP
|
84
|
+
unsigned long hash;
|
85
|
+
#endif
|
86
|
+
} LHASH_NODE;
|
87
|
+
|
88
|
+
typedef int (*LHASH_COMP_FN_TYPE)(const void *, const void *);
|
89
|
+
typedef unsigned long (*LHASH_HASH_FN_TYPE)(const void *);
|
90
|
+
typedef void (*LHASH_DOALL_FN_TYPE)(void *);
|
91
|
+
typedef void (*LHASH_DOALL_ARG_FN_TYPE)(void *, void *);
|
92
|
+
|
93
|
+
/* Macros for declaring and implementing type-safe wrappers for LHASH callbacks.
|
94
|
+
* This way, callbacks can be provided to LHASH structures without function
|
95
|
+
* pointer casting and the macro-defined callbacks provide per-variable casting
|
96
|
+
* before deferring to the underlying type-specific callbacks. NB: It is
|
97
|
+
* possible to place a "static" in front of both the DECLARE and IMPLEMENT
|
98
|
+
* macros if the functions are strictly internal. */
|
99
|
+
|
100
|
+
/* First: "hash" functions */
|
101
|
+
#define DECLARE_LHASH_HASH_FN(name, o_type) \
|
102
|
+
unsigned long name##_LHASH_HASH(const void *);
|
103
|
+
#define IMPLEMENT_LHASH_HASH_FN(name, o_type) \
|
104
|
+
unsigned long name##_LHASH_HASH(const void *arg) { \
|
105
|
+
const o_type *a = arg; \
|
106
|
+
return name##_hash(a); }
|
107
|
+
#define LHASH_HASH_FN(name) name##_LHASH_HASH
|
108
|
+
|
109
|
+
/* Second: "compare" functions */
|
110
|
+
#define DECLARE_LHASH_COMP_FN(name, o_type) \
|
111
|
+
int name##_LHASH_COMP(const void *, const void *);
|
112
|
+
#define IMPLEMENT_LHASH_COMP_FN(name, o_type) \
|
113
|
+
int name##_LHASH_COMP(const void *arg1, const void *arg2) { \
|
114
|
+
const o_type *a = arg1; \
|
115
|
+
const o_type *b = arg2; \
|
116
|
+
return name##_cmp(a,b); }
|
117
|
+
#define LHASH_COMP_FN(name) name##_LHASH_COMP
|
118
|
+
|
119
|
+
/* Third: "doall" functions */
|
120
|
+
#define DECLARE_LHASH_DOALL_FN(name, o_type) \
|
121
|
+
void name##_LHASH_DOALL(void *);
|
122
|
+
#define IMPLEMENT_LHASH_DOALL_FN(name, o_type) \
|
123
|
+
void name##_LHASH_DOALL(void *arg) { \
|
124
|
+
o_type *a = arg; \
|
125
|
+
name##_doall(a); }
|
126
|
+
#define LHASH_DOALL_FN(name) name##_LHASH_DOALL
|
127
|
+
|
128
|
+
/* Fourth: "doall_arg" functions */
|
129
|
+
#define DECLARE_LHASH_DOALL_ARG_FN(name, o_type, a_type) \
|
130
|
+
void name##_LHASH_DOALL_ARG(void *, void *);
|
131
|
+
#define IMPLEMENT_LHASH_DOALL_ARG_FN(name, o_type, a_type) \
|
132
|
+
void name##_LHASH_DOALL_ARG(void *arg1, void *arg2) { \
|
133
|
+
o_type *a = arg1; \
|
134
|
+
a_type *b = arg2; \
|
135
|
+
name##_doall_arg(a, b); }
|
136
|
+
#define LHASH_DOALL_ARG_FN(name) name##_LHASH_DOALL_ARG
|
137
|
+
|
138
|
+
typedef struct lhash_st
|
139
|
+
{
|
140
|
+
LHASH_NODE **b;
|
141
|
+
LHASH_COMP_FN_TYPE comp;
|
142
|
+
LHASH_HASH_FN_TYPE hash;
|
143
|
+
unsigned int num_nodes;
|
144
|
+
unsigned int num_alloc_nodes;
|
145
|
+
unsigned int p;
|
146
|
+
unsigned int pmax;
|
147
|
+
unsigned long up_load; /* load times 256 */
|
148
|
+
unsigned long down_load; /* load times 256 */
|
149
|
+
unsigned long num_items;
|
150
|
+
|
151
|
+
unsigned long num_expands;
|
152
|
+
unsigned long num_expand_reallocs;
|
153
|
+
unsigned long num_contracts;
|
154
|
+
unsigned long num_contract_reallocs;
|
155
|
+
unsigned long num_hash_calls;
|
156
|
+
unsigned long num_comp_calls;
|
157
|
+
unsigned long num_insert;
|
158
|
+
unsigned long num_replace;
|
159
|
+
unsigned long num_delete;
|
160
|
+
unsigned long num_no_delete;
|
161
|
+
unsigned long num_retrieve;
|
162
|
+
unsigned long num_retrieve_miss;
|
163
|
+
unsigned long num_hash_comps;
|
164
|
+
|
165
|
+
int error;
|
166
|
+
} _LHASH; /* Do not use _LHASH directly, use LHASH_OF
|
167
|
+
* and friends */
|
168
|
+
|
169
|
+
#define LH_LOAD_MULT 256
|
170
|
+
|
171
|
+
/* Indicates a malloc() error in the last call, this is only bad
|
172
|
+
* in lh_insert(). */
|
173
|
+
#define lh_error(lh) ((lh)->error)
|
174
|
+
|
175
|
+
_LHASH *lh_new(LHASH_HASH_FN_TYPE h, LHASH_COMP_FN_TYPE c);
|
176
|
+
void lh_free(_LHASH *lh);
|
177
|
+
void *lh_insert(_LHASH *lh, void *data);
|
178
|
+
void *lh_delete(_LHASH *lh, const void *data);
|
179
|
+
void *lh_retrieve(_LHASH *lh, const void *data);
|
180
|
+
void lh_doall(_LHASH *lh, LHASH_DOALL_FN_TYPE func);
|
181
|
+
void lh_doall_arg(_LHASH *lh, LHASH_DOALL_ARG_FN_TYPE func, void *arg);
|
182
|
+
unsigned long lh_strhash(const char *c);
|
183
|
+
unsigned long lh_num_items(const _LHASH *lh);
|
184
|
+
|
185
|
+
#ifndef OPENSSL_NO_FP_API
|
186
|
+
void lh_stats(const _LHASH *lh, FILE *out);
|
187
|
+
void lh_node_stats(const _LHASH *lh, FILE *out);
|
188
|
+
void lh_node_usage_stats(const _LHASH *lh, FILE *out);
|
189
|
+
#endif
|
190
|
+
|
191
|
+
#ifndef OPENSSL_NO_BIO
|
192
|
+
void lh_stats_bio(const _LHASH *lh, BIO *out);
|
193
|
+
void lh_node_stats_bio(const _LHASH *lh, BIO *out);
|
194
|
+
void lh_node_usage_stats_bio(const _LHASH *lh, BIO *out);
|
195
|
+
#endif
|
196
|
+
|
197
|
+
/* Type checking... */
|
198
|
+
|
199
|
+
#define LHASH_OF(type) struct lhash_st_##type
|
200
|
+
|
201
|
+
#define DECLARE_LHASH_OF(type) LHASH_OF(type) { int dummy; }
|
202
|
+
|
203
|
+
#define CHECKED_LHASH_OF(type,lh) \
|
204
|
+
((_LHASH *)CHECKED_PTR_OF(LHASH_OF(type),lh))
|
205
|
+
|
206
|
+
/* Define wrapper functions. */
|
207
|
+
#define LHM_lh_new(type, name) \
|
208
|
+
((LHASH_OF(type) *)lh_new(LHASH_HASH_FN(name), LHASH_COMP_FN(name)))
|
209
|
+
#define LHM_lh_error(type, lh) \
|
210
|
+
lh_error(CHECKED_LHASH_OF(type,lh))
|
211
|
+
#define LHM_lh_insert(type, lh, inst) \
|
212
|
+
((type *)lh_insert(CHECKED_LHASH_OF(type, lh), \
|
213
|
+
CHECKED_PTR_OF(type, inst)))
|
214
|
+
#define LHM_lh_retrieve(type, lh, inst) \
|
215
|
+
((type *)lh_retrieve(CHECKED_LHASH_OF(type, lh), \
|
216
|
+
CHECKED_PTR_OF(type, inst)))
|
217
|
+
#define LHM_lh_delete(type, lh, inst) \
|
218
|
+
((type *)lh_delete(CHECKED_LHASH_OF(type, lh), \
|
219
|
+
CHECKED_PTR_OF(type, inst)))
|
220
|
+
#define LHM_lh_doall(type, lh,fn) lh_doall(CHECKED_LHASH_OF(type, lh), fn)
|
221
|
+
#define LHM_lh_doall_arg(type, lh, fn, arg_type, arg) \
|
222
|
+
lh_doall_arg(CHECKED_LHASH_OF(type, lh), fn, CHECKED_PTR_OF(arg_type, arg))
|
223
|
+
#define LHM_lh_num_items(type, lh) lh_num_items(CHECKED_LHASH_OF(type, lh))
|
224
|
+
#define LHM_lh_down_load(type, lh) (CHECKED_LHASH_OF(type, lh)->down_load)
|
225
|
+
#define LHM_lh_node_stats_bio(type, lh, out) \
|
226
|
+
lh_node_stats_bio(CHECKED_LHASH_OF(type, lh), out)
|
227
|
+
#define LHM_lh_node_usage_stats_bio(type, lh, out) \
|
228
|
+
lh_node_usage_stats_bio(CHECKED_LHASH_OF(type, lh), out)
|
229
|
+
#define LHM_lh_stats_bio(type, lh, out) \
|
230
|
+
lh_stats_bio(CHECKED_LHASH_OF(type, lh), out)
|
231
|
+
#define LHM_lh_free(type, lh) lh_free(CHECKED_LHASH_OF(type, lh))
|
232
|
+
|
233
|
+
DECLARE_LHASH_OF(OPENSSL_STRING);
|
234
|
+
DECLARE_LHASH_OF(OPENSSL_CSTRING);
|
235
|
+
|
236
|
+
#ifdef __cplusplus
|
237
|
+
}
|
238
|
+
#endif
|
239
|
+
|
240
|
+
#endif
|
241
|
+
|
@@ -0,0 +1,120 @@
|
|
1
|
+
/* crypto/md4/md4.h */
|
2
|
+
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
3
|
+
* All rights reserved.
|
4
|
+
*
|
5
|
+
* This package is an SSL implementation written
|
6
|
+
* by Eric Young (eay@cryptsoft.com).
|
7
|
+
* The implementation was written so as to conform with Netscapes SSL.
|
8
|
+
*
|
9
|
+
* This library is free for commercial and non-commercial use as long as
|
10
|
+
* the following conditions are aheared to. The following conditions
|
11
|
+
* apply to all code found in this distribution, be it the RC4, RSA,
|
12
|
+
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
13
|
+
* included with this distribution is covered by the same copyright terms
|
14
|
+
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
15
|
+
*
|
16
|
+
* Copyright remains Eric Young's, and as such any Copyright notices in
|
17
|
+
* the code are not to be removed.
|
18
|
+
* If this package is used in a product, Eric Young should be given attribution
|
19
|
+
* as the author of the parts of the library used.
|
20
|
+
* This can be in the form of a textual message at program startup or
|
21
|
+
* in documentation (online or textual) provided with the package.
|
22
|
+
*
|
23
|
+
* Redistribution and use in source and binary forms, with or without
|
24
|
+
* modification, are permitted provided that the following conditions
|
25
|
+
* are met:
|
26
|
+
* 1. Redistributions of source code must retain the copyright
|
27
|
+
* notice, this list of conditions and the following disclaimer.
|
28
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
29
|
+
* notice, this list of conditions and the following disclaimer in the
|
30
|
+
* documentation and/or other materials provided with the distribution.
|
31
|
+
* 3. All advertising materials mentioning features or use of this software
|
32
|
+
* must display the following acknowledgement:
|
33
|
+
* "This product includes cryptographic software written by
|
34
|
+
* Eric Young (eay@cryptsoft.com)"
|
35
|
+
* The word 'cryptographic' can be left out if the rouines from the library
|
36
|
+
* being used are not cryptographic related :-).
|
37
|
+
* 4. If you include any Windows specific code (or a derivative thereof) from
|
38
|
+
* the apps directory (application code) you must include an acknowledgement:
|
39
|
+
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
40
|
+
*
|
41
|
+
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
42
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
43
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
44
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
45
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
46
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
47
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
48
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
49
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
50
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
51
|
+
* SUCH DAMAGE.
|
52
|
+
*
|
53
|
+
* The licence and distribution terms for any publically available version or
|
54
|
+
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
55
|
+
* copied and put under another distribution licence
|
56
|
+
* [including the GNU Public Licence.]
|
57
|
+
*/
|
58
|
+
|
59
|
+
#ifndef HEADER_MD4_H
|
60
|
+
#define HEADER_MD4_H
|
61
|
+
|
62
|
+
#include <openssl/e_os2.h>
|
63
|
+
#include <stddef.h>
|
64
|
+
|
65
|
+
#ifdef __cplusplus
|
66
|
+
extern "C" {
|
67
|
+
#endif
|
68
|
+
|
69
|
+
#ifdef OPENSSL_NO_MD4
|
70
|
+
#error MD4 is disabled.
|
71
|
+
#endif
|
72
|
+
|
73
|
+
/*
|
74
|
+
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
75
|
+
* ! MD4_LONG has to be at least 32 bits wide. If it's wider, then !
|
76
|
+
* ! MD4_LONG_LOG2 has to be defined along. !
|
77
|
+
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
78
|
+
*/
|
79
|
+
|
80
|
+
#if defined(__LP32__)
|
81
|
+
#define MD4_LONG unsigned long
|
82
|
+
#elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__)
|
83
|
+
#define MD4_LONG unsigned long
|
84
|
+
#define MD4_LONG_LOG2 3
|
85
|
+
/*
|
86
|
+
* _CRAY note. I could declare short, but I have no idea what impact
|
87
|
+
* does it have on performance on none-T3E machines. I could declare
|
88
|
+
* int, but at least on C90 sizeof(int) can be chosen at compile time.
|
89
|
+
* So I've chosen long...
|
90
|
+
* <appro@fy.chalmers.se>
|
91
|
+
*/
|
92
|
+
#else
|
93
|
+
#define MD4_LONG unsigned int
|
94
|
+
#endif
|
95
|
+
|
96
|
+
#define MD4_CBLOCK 64
|
97
|
+
#define MD4_LBLOCK (MD4_CBLOCK/4)
|
98
|
+
#define MD4_DIGEST_LENGTH 16
|
99
|
+
|
100
|
+
typedef struct MD4state_st
|
101
|
+
{
|
102
|
+
MD4_LONG A,B,C,D;
|
103
|
+
MD4_LONG Nl,Nh;
|
104
|
+
MD4_LONG data[MD4_LBLOCK];
|
105
|
+
unsigned int num;
|
106
|
+
} MD4_CTX;
|
107
|
+
|
108
|
+
#ifdef OPENSSL_FIPS
|
109
|
+
int private_MD4_Init(MD4_CTX *c);
|
110
|
+
#endif
|
111
|
+
int MD4_Init(MD4_CTX *c);
|
112
|
+
int MD4_Update(MD4_CTX *c, const void *data, size_t len);
|
113
|
+
int MD4_Final(unsigned char *md, MD4_CTX *c);
|
114
|
+
unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md);
|
115
|
+
void MD4_Transform(MD4_CTX *c, const unsigned char *b);
|
116
|
+
#ifdef __cplusplus
|
117
|
+
}
|
118
|
+
#endif
|
119
|
+
|
120
|
+
#endif
|
@@ -0,0 +1,120 @@
|
|
1
|
+
/* crypto/md5/md5.h */
|
2
|
+
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
3
|
+
* All rights reserved.
|
4
|
+
*
|
5
|
+
* This package is an SSL implementation written
|
6
|
+
* by Eric Young (eay@cryptsoft.com).
|
7
|
+
* The implementation was written so as to conform with Netscapes SSL.
|
8
|
+
*
|
9
|
+
* This library is free for commercial and non-commercial use as long as
|
10
|
+
* the following conditions are aheared to. The following conditions
|
11
|
+
* apply to all code found in this distribution, be it the RC4, RSA,
|
12
|
+
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
13
|
+
* included with this distribution is covered by the same copyright terms
|
14
|
+
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
15
|
+
*
|
16
|
+
* Copyright remains Eric Young's, and as such any Copyright notices in
|
17
|
+
* the code are not to be removed.
|
18
|
+
* If this package is used in a product, Eric Young should be given attribution
|
19
|
+
* as the author of the parts of the library used.
|
20
|
+
* This can be in the form of a textual message at program startup or
|
21
|
+
* in documentation (online or textual) provided with the package.
|
22
|
+
*
|
23
|
+
* Redistribution and use in source and binary forms, with or without
|
24
|
+
* modification, are permitted provided that the following conditions
|
25
|
+
* are met:
|
26
|
+
* 1. Redistributions of source code must retain the copyright
|
27
|
+
* notice, this list of conditions and the following disclaimer.
|
28
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
29
|
+
* notice, this list of conditions and the following disclaimer in the
|
30
|
+
* documentation and/or other materials provided with the distribution.
|
31
|
+
* 3. All advertising materials mentioning features or use of this software
|
32
|
+
* must display the following acknowledgement:
|
33
|
+
* "This product includes cryptographic software written by
|
34
|
+
* Eric Young (eay@cryptsoft.com)"
|
35
|
+
* The word 'cryptographic' can be left out if the rouines from the library
|
36
|
+
* being used are not cryptographic related :-).
|
37
|
+
* 4. If you include any Windows specific code (or a derivative thereof) from
|
38
|
+
* the apps directory (application code) you must include an acknowledgement:
|
39
|
+
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
40
|
+
*
|
41
|
+
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
42
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
43
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
44
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
45
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
46
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
47
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
48
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
49
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
50
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
51
|
+
* SUCH DAMAGE.
|
52
|
+
*
|
53
|
+
* The licence and distribution terms for any publically available version or
|
54
|
+
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
55
|
+
* copied and put under another distribution licence
|
56
|
+
* [including the GNU Public Licence.]
|
57
|
+
*/
|
58
|
+
|
59
|
+
#ifndef HEADER_MD5_H
|
60
|
+
#define HEADER_MD5_H
|
61
|
+
|
62
|
+
#include <openssl/e_os2.h>
|
63
|
+
#include <stddef.h>
|
64
|
+
|
65
|
+
#ifdef __cplusplus
|
66
|
+
extern "C" {
|
67
|
+
#endif
|
68
|
+
|
69
|
+
#ifdef OPENSSL_NO_MD5
|
70
|
+
#error MD5 is disabled.
|
71
|
+
#endif
|
72
|
+
|
73
|
+
/*
|
74
|
+
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
75
|
+
* ! MD5_LONG has to be at least 32 bits wide. If it's wider, then !
|
76
|
+
* ! MD5_LONG_LOG2 has to be defined along. !
|
77
|
+
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
78
|
+
*/
|
79
|
+
|
80
|
+
#if defined(__LP32__)
|
81
|
+
#define MD5_LONG unsigned long
|
82
|
+
#elif defined(OPENSSL_SYS_CRAY) || defined(__ILP64__)
|
83
|
+
#define MD5_LONG unsigned long
|
84
|
+
#define MD5_LONG_LOG2 3
|
85
|
+
/*
|
86
|
+
* _CRAY note. I could declare short, but I have no idea what impact
|
87
|
+
* does it have on performance on none-T3E machines. I could declare
|
88
|
+
* int, but at least on C90 sizeof(int) can be chosen at compile time.
|
89
|
+
* So I've chosen long...
|
90
|
+
* <appro@fy.chalmers.se>
|
91
|
+
*/
|
92
|
+
#else
|
93
|
+
#define MD5_LONG unsigned int
|
94
|
+
#endif
|
95
|
+
|
96
|
+
#define MD5_CBLOCK 64
|
97
|
+
#define MD5_LBLOCK (MD5_CBLOCK/4)
|
98
|
+
#define MD5_DIGEST_LENGTH 16
|
99
|
+
|
100
|
+
typedef struct MD5state_st
|
101
|
+
{
|
102
|
+
MD5_LONG A,B,C,D;
|
103
|
+
MD5_LONG Nl,Nh;
|
104
|
+
MD5_LONG data[MD5_LBLOCK];
|
105
|
+
unsigned int num;
|
106
|
+
} MD5_CTX;
|
107
|
+
|
108
|
+
#ifdef OPENSSL_FIPS
|
109
|
+
int private_MD5_Init(MD5_CTX *c);
|
110
|
+
#endif
|
111
|
+
int MD5_Init(MD5_CTX *c);
|
112
|
+
int MD5_Update(MD5_CTX *c, const void *data, size_t len);
|
113
|
+
int MD5_Final(unsigned char *md, MD5_CTX *c);
|
114
|
+
unsigned char *MD5(const unsigned char *d, size_t n, unsigned char *md);
|
115
|
+
void MD5_Transform(MD5_CTX *c, const unsigned char *b);
|
116
|
+
#ifdef __cplusplus
|
117
|
+
}
|
118
|
+
#endif
|
119
|
+
|
120
|
+
#endif
|
@@ -0,0 +1,98 @@
|
|
1
|
+
/* crypto/mdc2/mdc2.h */
|
2
|
+
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
3
|
+
* All rights reserved.
|
4
|
+
*
|
5
|
+
* This package is an SSL implementation written
|
6
|
+
* by Eric Young (eay@cryptsoft.com).
|
7
|
+
* The implementation was written so as to conform with Netscapes SSL.
|
8
|
+
*
|
9
|
+
* This library is free for commercial and non-commercial use as long as
|
10
|
+
* the following conditions are aheared to. The following conditions
|
11
|
+
* apply to all code found in this distribution, be it the RC4, RSA,
|
12
|
+
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
13
|
+
* included with this distribution is covered by the same copyright terms
|
14
|
+
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
15
|
+
*
|
16
|
+
* Copyright remains Eric Young's, and as such any Copyright notices in
|
17
|
+
* the code are not to be removed.
|
18
|
+
* If this package is used in a product, Eric Young should be given attribution
|
19
|
+
* as the author of the parts of the library used.
|
20
|
+
* This can be in the form of a textual message at program startup or
|
21
|
+
* in documentation (online or textual) provided with the package.
|
22
|
+
*
|
23
|
+
* Redistribution and use in source and binary forms, with or without
|
24
|
+
* modification, are permitted provided that the following conditions
|
25
|
+
* are met:
|
26
|
+
* 1. Redistributions of source code must retain the copyright
|
27
|
+
* notice, this list of conditions and the following disclaimer.
|
28
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
29
|
+
* notice, this list of conditions and the following disclaimer in the
|
30
|
+
* documentation and/or other materials provided with the distribution.
|
31
|
+
* 3. All advertising materials mentioning features or use of this software
|
32
|
+
* must display the following acknowledgement:
|
33
|
+
* "This product includes cryptographic software written by
|
34
|
+
* Eric Young (eay@cryptsoft.com)"
|
35
|
+
* The word 'cryptographic' can be left out if the rouines from the library
|
36
|
+
* being used are not cryptographic related :-).
|
37
|
+
* 4. If you include any Windows specific code (or a derivative thereof) from
|
38
|
+
* the apps directory (application code) you must include an acknowledgement:
|
39
|
+
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
40
|
+
*
|
41
|
+
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
42
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
43
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
44
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
45
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
46
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
47
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
48
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
49
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
50
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
51
|
+
* SUCH DAMAGE.
|
52
|
+
*
|
53
|
+
* The licence and distribution terms for any publically available version or
|
54
|
+
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
55
|
+
* copied and put under another distribution licence
|
56
|
+
* [including the GNU Public Licence.]
|
57
|
+
*/
|
58
|
+
|
59
|
+
#ifndef HEADER_MDC2_H
|
60
|
+
#define HEADER_MDC2_H
|
61
|
+
|
62
|
+
#include <openssl/des.h>
|
63
|
+
|
64
|
+
#ifdef __cplusplus
|
65
|
+
extern "C" {
|
66
|
+
#endif
|
67
|
+
|
68
|
+
#ifdef OPENSSL_NO_MDC2
|
69
|
+
#error MDC2 is disabled.
|
70
|
+
#endif
|
71
|
+
|
72
|
+
#define MDC2_BLOCK 8
|
73
|
+
#define MDC2_DIGEST_LENGTH 16
|
74
|
+
|
75
|
+
typedef struct mdc2_ctx_st
|
76
|
+
{
|
77
|
+
unsigned int num;
|
78
|
+
unsigned char data[MDC2_BLOCK];
|
79
|
+
DES_cblock h,hh;
|
80
|
+
int pad_type; /* either 1 or 2, default 1 */
|
81
|
+
} MDC2_CTX;
|
82
|
+
|
83
|
+
|
84
|
+
#ifdef OPENSSL_FIPS
|
85
|
+
int private_MDC2_Init(MDC2_CTX *c);
|
86
|
+
#endif
|
87
|
+
int MDC2_Init(MDC2_CTX *c);
|
88
|
+
int MDC2_Update(MDC2_CTX *c, const unsigned char *data, size_t len);
|
89
|
+
int MDC2_Final(unsigned char *md, MDC2_CTX *c);
|
90
|
+
unsigned char *MDC2(const unsigned char *d, size_t n,
|
91
|
+
unsigned char *md);
|
92
|
+
|
93
|
+
#ifdef __cplusplus
|
94
|
+
}
|
95
|
+
#endif
|
96
|
+
|
97
|
+
#endif
|
98
|
+
|