Don't limit uploads.
[fedora-mingw.git] / openssl / mingw32-openssl-0.9.8j-header-files.patch
1 --- ./crypto/seed/seed_ecb.c.mingw-header-files 2007-04-24 01:50:10.000000000 +0200
2 +++ ./crypto/seed/seed_ecb.c    2009-02-02 18:28:55.000000000 +0100
3 @@ -49,7 +49,7 @@
4   *
5   */
6  
7 -#include <openssl/seed.h>
8 +#include "seed.h"
9  
10  void SEED_ecb_encrypt(const unsigned char *in, unsigned char *out, const SEED_KEY_SCHEDULE *ks, int enc) 
11         {
12 --- ./crypto/seed/seed_locl.h.mingw-header-files        2009-02-02 18:28:48.000000000 +0100
13 +++ ./crypto/seed/seed_locl.h   2009-02-02 18:28:55.000000000 +0100
14 @@ -27,7 +27,7 @@
15  #define HEADER_SEED_LOCL_H
16  
17  #include "openssl/e_os2.h"
18 -#include <openssl/seed.h>
19 +#include "seed.h"
20  
21  
22  #ifdef SEED_LONG /* need 32-bit type */
23 --- ./crypto/seed/seed.c.mingw-header-files     2007-04-24 01:50:10.000000000 +0200
24 +++ ./crypto/seed/seed.c        2009-02-02 18:28:55.000000000 +0100
25 @@ -32,7 +32,7 @@
26  #include <memory.h>
27  #endif
28  
29 -#include <openssl/seed.h>
30 +#include "seed.h"
31  #include "seed_locl.h"
32  
33  static seed_word SS[4][256] = {        {
34 --- ./crypto/camellia/cmll_cbc.c.mingw-header-files     2006-12-02 13:00:27.000000000 +0100
35 +++ ./crypto/camellia/cmll_cbc.c        2009-02-02 18:28:54.000000000 +0100
36 @@ -58,7 +58,7 @@
37  #include <stdio.h>
38  #include <string.h>
39  
40 -#include <openssl/camellia.h>
41 +#include "camellia.h"
42  #include "cmll_locl.h"
43  
44  void Camellia_cbc_encrypt(const unsigned char *in, unsigned char *out,
45 --- ./crypto/camellia/cmll_cfb.c.mingw-header-files     2006-06-10 00:31:05.000000000 +0200
46 +++ ./crypto/camellia/cmll_cfb.c        2009-02-02 18:28:54.000000000 +0100
47 @@ -113,7 +113,7 @@
48  #include <assert.h>
49  #include <string.h>
50  
51 -#include <openssl/camellia.h>
52 +#include "camellia.h"
53  #include "cmll_locl.h"
54  #include "e_os.h"
55  
56 --- ./crypto/camellia/cmll_ofb.c.mingw-header-files     2006-06-10 00:31:05.000000000 +0200
57 +++ ./crypto/camellia/cmll_ofb.c        2009-02-02 18:28:55.000000000 +0100
58 @@ -111,7 +111,7 @@
59  # endif
60  #endif
61  #include <assert.h>
62 -#include <openssl/camellia.h>
63 +#include "camellia.h"
64  #include "cmll_locl.h"
65  
66  /* The input and output encrypted as though 128bit ofb mode is being
67 --- ./crypto/camellia/cmll_misc.c.mingw-header-files    2009-02-02 18:29:19.000000000 +0100
68 +++ ./crypto/camellia/cmll_misc.c       2009-02-02 18:29:32.000000000 +0100
69 @@ -50,7 +50,7 @@
70   */
71   
72  #include <openssl/opensslv.h>
73 -#include <openssl/camellia.h>
74 +#include "camellia.h"
75  #include "cmll_locl.h"
76  #include <openssl/crypto.h>
77  #ifdef OPENSSL_FIPS
78 --- ./crypto/camellia/cmll_ecb.c.mingw-header-files     2006-06-10 00:31:05.000000000 +0200
79 +++ ./crypto/camellia/cmll_ecb.c        2009-02-02 18:28:54.000000000 +0100
80 @@ -56,7 +56,7 @@
81  #endif
82  #include <assert.h>
83  
84 -#include <openssl/camellia.h>
85 +#include "camellia.h"
86  #include "cmll_locl.h"
87  
88  void Camellia_ecb_encrypt(const unsigned char *in, unsigned char *out,
89 --- ./crypto/camellia/cmll_ctr.c.mingw-header-files     2006-06-10 00:31:05.000000000 +0200
90 +++ ./crypto/camellia/cmll_ctr.c        2009-02-02 18:28:54.000000000 +0100
91 @@ -56,7 +56,7 @@
92  #endif
93  #include <assert.h>
94  
95 -#include <openssl/camellia.h>
96 +#include "camellia.h"
97  #include "cmll_locl.h"
98  
99  /* NOTE: the IV/counter CTR mode is big-endian.  The rest of the Camellia code
100 --- ./crypto/evp/e_seed.c.mingw-header-files    2007-07-04 14:56:32.000000000 +0200
101 +++ ./crypto/evp/e_seed.c       2009-02-02 18:28:55.000000000 +0100
102 @@ -59,7 +59,7 @@
103  #include <string.h>
104  #include <assert.h>
105  #ifndef OPENSSL_NO_SEED
106 -#include <openssl/seed.h>
107 +#include "../seed/seed.h"
108  #include "evp_locl.h"
109  
110  static int seed_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,        const unsigned char *iv, int enc);
111 --- ./crypto/evp/e_camellia.c.mingw-header-files        2008-09-21 12:24:08.000000000 +0200
112 +++ ./crypto/evp/e_camellia.c   2009-02-02 18:28:55.000000000 +0100
113 @@ -59,7 +59,7 @@
114  #include <openssl/err.h>
115  #include <string.h>
116  #include <assert.h>
117 -#include <openssl/camellia.h>
118 +#include "../camellia/camellia.h"
119  #include "evp_locl.h"
120  
121  static int camellia_init_key(EVP_CIPHER_CTX *ctx, const unsigned char *key,
122 --- ./apps/speed.c.mingw-header-files   2009-01-07 11:48:22.000000000 +0100
123 +++ ./apps/speed.c      2009-02-02 18:28:54.000000000 +0100
124 @@ -165,7 +165,7 @@
125  #include <openssl/aes.h>
126  #endif
127  #ifndef OPENSSL_NO_CAMELLIA
128 -#include <openssl/camellia.h>
129 +#include "../crypto/camellia/camellia.h"
130  #endif
131  #ifndef OPENSSL_NO_MD2
132  #include <openssl/md2.h>
133 @@ -202,7 +202,7 @@
134  #include <openssl/idea.h>
135  #endif
136  #ifndef OPENSSL_NO_SEED
137 -#include <openssl/seed.h>
138 +#include "../crypto/seed/seed.h"
139  #endif
140  #ifndef OPENSSL_NO_BF
141  #include <openssl/blowfish.h>