diff options
author | ryker <> | 1998-10-05 20:13:15 +0000 |
---|---|---|
committer | ryker <> | 1998-10-05 20:13:15 +0000 |
commit | 536c76cbb863bab152f19842ab88772c01e922c7 (patch) | |
tree | dfecec371a097b73d605aae665887946d9982219 /src/lib/libcrypto/pkcs7 | |
download | openbsd-536c76cbb863bab152f19842ab88772c01e922c7.tar.gz openbsd-536c76cbb863bab152f19842ab88772c01e922c7.tar.bz2 openbsd-536c76cbb863bab152f19842ab88772c01e922c7.zip |
Import of SSLeay-0.9.0b with RSA and IDEA stubbed + OpenBSD build
functionality for shared libs.
Note that routines such as sslv2_init and friends that use RSA will
not work due to lack of RSA in this library.
Needs documentation and help from ports for easy upgrade to full
functionality where legally possible.
Diffstat (limited to 'src/lib/libcrypto/pkcs7')
-rw-r--r-- | src/lib/libcrypto/pkcs7/doc | 24 | ||||
-rw-r--r-- | src/lib/libcrypto/pkcs7/enc.c | 144 | ||||
-rw-r--r-- | src/lib/libcrypto/pkcs7/p7/a1 | 2 | ||||
-rw-r--r-- | src/lib/libcrypto/pkcs7/p7/a2 | 1 | ||||
-rw-r--r-- | src/lib/libcrypto/pkcs7/p7/cert.p7c | bin | 0 -> 1728 bytes | |||
-rw-r--r-- | src/lib/libcrypto/pkcs7/p7/smime.p7m | bin | 0 -> 4894 bytes | |||
-rw-r--r-- | src/lib/libcrypto/pkcs7/p7/smime.p7s | bin | 0 -> 2625 bytes | |||
-rw-r--r-- | src/lib/libcrypto/pkcs7/pk7_dgst.c | 66 | ||||
-rw-r--r-- | src/lib/libcrypto/pkcs7/pk7_enc.c | 76 | ||||
-rw-r--r-- | src/lib/libcrypto/pkcs7/server.pem | 24 | ||||
-rw-r--r-- | src/lib/libcrypto/pkcs7/sign.c | 140 | ||||
-rw-r--r-- | src/lib/libcrypto/pkcs7/verify.c | 238 |
12 files changed, 715 insertions, 0 deletions
diff --git a/src/lib/libcrypto/pkcs7/doc b/src/lib/libcrypto/pkcs7/doc new file mode 100644 index 0000000000..d2e8b7b2a3 --- /dev/null +++ b/src/lib/libcrypto/pkcs7/doc | |||
@@ -0,0 +1,24 @@ | |||
1 | int PKCS7_set_content_type(PKCS7 *p7, int type); | ||
2 | Call to set the type of PKCS7 object we are working on | ||
3 | |||
4 | int PKCS7_SIGNER_INFO_set(PKCS7_SIGNER_INFO *p7i, X509 *x509, EVP_PKEY *pkey, | ||
5 | EVP_MD *dgst); | ||
6 | Use this to setup a signer info | ||
7 | There will also be functions to add signed and unsigned attributes. | ||
8 | |||
9 | int PKCS7_add_signer(PKCS7 *p7, PKCS7_SIGNER_INFO *p7i); | ||
10 | Add a signer info to the content. | ||
11 | |||
12 | int PKCS7_add_certificae(PKCS7 *p7, X509 *x509); | ||
13 | int PKCS7_add_crl(PKCS7 *p7, X509_CRL *x509); | ||
14 | |||
15 | ---- | ||
16 | |||
17 | p7=PKCS7_new(); | ||
18 | PKCS7_set_content_type(p7,NID_pkcs7_signed); | ||
19 | |||
20 | signer=PKCS7_SINGNER_INFO_new(); | ||
21 | PKCS7_SIGNER_INFO_set(signer,x509,pkey,EVP_md5()); | ||
22 | PKCS7_add_signer(py,signer); | ||
23 | |||
24 | we are now setup. | ||
diff --git a/src/lib/libcrypto/pkcs7/enc.c b/src/lib/libcrypto/pkcs7/enc.c new file mode 100644 index 0000000000..625a7c2285 --- /dev/null +++ b/src/lib/libcrypto/pkcs7/enc.c | |||
@@ -0,0 +1,144 @@ | |||
1 | /* crypto/pkcs7/enc.c */ | ||
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 | #include <stdio.h> | ||
59 | #include "bio.h" | ||
60 | #include "x509.h" | ||
61 | #include "pem.h" | ||
62 | |||
63 | main(argc,argv) | ||
64 | int argc; | ||
65 | char *argv[]; | ||
66 | { | ||
67 | X509 *x509; | ||
68 | EVP_PKEY *pkey; | ||
69 | PKCS7 *p7; | ||
70 | PKCS7 *p7_data; | ||
71 | PKCS7_SIGNER_INFO *si; | ||
72 | BIO *in; | ||
73 | BIO *data,*p7bio; | ||
74 | char buf[1024*4]; | ||
75 | int i,j; | ||
76 | int nodetach=0; | ||
77 | |||
78 | EVP_add_digest(EVP_sha1()); | ||
79 | EVP_add_cipher(EVP_des_cbc()); | ||
80 | |||
81 | data=BIO_new(BIO_s_file()); | ||
82 | again: | ||
83 | if (argc > 1) | ||
84 | { | ||
85 | if (strcmp(argv[1],"-nd") == 0) | ||
86 | { | ||
87 | nodetach=1; | ||
88 | argv++; argc--; | ||
89 | goto again; | ||
90 | } | ||
91 | if (!BIO_read_filename(data,argv[1])) | ||
92 | goto err; | ||
93 | } | ||
94 | else | ||
95 | BIO_set_fp(data,stdin,BIO_NOCLOSE); | ||
96 | |||
97 | if ((in=BIO_new_file("server.pem","r")) == NULL) goto err; | ||
98 | if ((x509=PEM_read_bio_X509(in,NULL,NULL)) == NULL) goto err; | ||
99 | BIO_reset(in); | ||
100 | if ((pkey=PEM_read_bio_PrivateKey(in,NULL,NULL)) == NULL) goto err; | ||
101 | BIO_free(in); | ||
102 | |||
103 | p7=PKCS7_new(); | ||
104 | PKCS7_set_type(p7,NID_pkcs7_signedAndEnveloped); | ||
105 | |||
106 | if (PKCS7_add_signature(p7,x509,pkey,EVP_sha1()) == NULL) goto err; | ||
107 | |||
108 | if (!PKCS7_set_cipher(p7,EVP_des_cbc())) goto err; | ||
109 | if (PKCS7_add_recipient(p7,x509) == NULL) goto err; | ||
110 | |||
111 | /* we may want to add more */ | ||
112 | PKCS7_add_certificate(p7,x509); | ||
113 | |||
114 | |||
115 | /* Set the content of the signed to 'data' */ | ||
116 | /* PKCS7_content_new(p7,NID_pkcs7_data); not used in envelope */ | ||
117 | |||
118 | /* could be used, but not in this version :-) | ||
119 | if (!nodetach) PKCS7_set_detached(p7,1); | ||
120 | */ | ||
121 | |||
122 | if ((p7bio=PKCS7_dataInit(p7,NULL)) == NULL) goto err; | ||
123 | |||
124 | for (;;) | ||
125 | { | ||
126 | i=BIO_read(data,buf,sizeof(buf)); | ||
127 | if (i <= 0) break; | ||
128 | BIO_write(p7bio,buf,i); | ||
129 | } | ||
130 | BIO_flush(p7bio); | ||
131 | |||
132 | if (!PKCS7_dataSign(p7,p7bio)) goto err; | ||
133 | BIO_free(p7bio); | ||
134 | |||
135 | PEM_write_PKCS7(stdout,p7); | ||
136 | PKCS7_free(p7); | ||
137 | |||
138 | exit(0); | ||
139 | err: | ||
140 | ERR_load_crypto_strings(); | ||
141 | ERR_print_errors_fp(stderr); | ||
142 | exit(1); | ||
143 | } | ||
144 | |||
diff --git a/src/lib/libcrypto/pkcs7/p7/a1 b/src/lib/libcrypto/pkcs7/p7/a1 new file mode 100644 index 0000000000..56ca943762 --- /dev/null +++ b/src/lib/libcrypto/pkcs7/p7/a1 | |||
@@ -0,0 +1,2 @@ | |||
1 | j,H>__DzEL VJ觬E3Yx%_k | ||
2 | 3)DLSc8%M \ No newline at end of file | ||
diff --git a/src/lib/libcrypto/pkcs7/p7/a2 b/src/lib/libcrypto/pkcs7/p7/a2 new file mode 100644 index 0000000000..23d8fb5e93 --- /dev/null +++ b/src/lib/libcrypto/pkcs7/p7/a2 | |||
@@ -0,0 +1 @@ | |||
k~@a,NM <O( KP騠K>Uo_Bqrm?٠t?tρId2 \ No newline at end of file | |||
diff --git a/src/lib/libcrypto/pkcs7/p7/cert.p7c b/src/lib/libcrypto/pkcs7/p7/cert.p7c new file mode 100644 index 0000000000..2b75ec05f7 --- /dev/null +++ b/src/lib/libcrypto/pkcs7/p7/cert.p7c | |||
Binary files differ | |||
diff --git a/src/lib/libcrypto/pkcs7/p7/smime.p7m b/src/lib/libcrypto/pkcs7/p7/smime.p7m new file mode 100644 index 0000000000..2b6e6f82ba --- /dev/null +++ b/src/lib/libcrypto/pkcs7/p7/smime.p7m | |||
Binary files differ | |||
diff --git a/src/lib/libcrypto/pkcs7/p7/smime.p7s b/src/lib/libcrypto/pkcs7/p7/smime.p7s new file mode 100644 index 0000000000..2b5d4fb0e3 --- /dev/null +++ b/src/lib/libcrypto/pkcs7/p7/smime.p7s | |||
Binary files differ | |||
diff --git a/src/lib/libcrypto/pkcs7/pk7_dgst.c b/src/lib/libcrypto/pkcs7/pk7_dgst.c new file mode 100644 index 0000000000..7769abeb1e --- /dev/null +++ b/src/lib/libcrypto/pkcs7/pk7_dgst.c | |||
@@ -0,0 +1,66 @@ | |||
1 | /* crypto/pkcs7/pk7_dgst.c */ | ||
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 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include "evp.h" | ||
62 | #include "rand.h" | ||
63 | #include "objects.h" | ||
64 | #include "x509.h" | ||
65 | #include "pkcs7.h" | ||
66 | |||
diff --git a/src/lib/libcrypto/pkcs7/pk7_enc.c b/src/lib/libcrypto/pkcs7/pk7_enc.c new file mode 100644 index 0000000000..a5b6dc463f --- /dev/null +++ b/src/lib/libcrypto/pkcs7/pk7_enc.c | |||
@@ -0,0 +1,76 @@ | |||
1 | /* crypto/pkcs7/pk7_enc.c */ | ||
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 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include "evp.h" | ||
62 | #include "rand.h" | ||
63 | #include "objects.h" | ||
64 | #include "x509.h" | ||
65 | #include "pkcs7.h" | ||
66 | |||
67 | PKCS7_in_bio(PKCS7 *p7,BIO *in); | ||
68 | PKCS7_out_bio(PKCS7 *p7,BIO *out); | ||
69 | |||
70 | PKCS7_add_signer(PKCS7 *p7,X509 *cert,EVP_PKEY *key); | ||
71 | PKCS7_cipher(PKCS7 *p7,EVP_CIPHER *cipher); | ||
72 | |||
73 | PKCS7_Init(PKCS7 *p7); | ||
74 | PKCS7_Update(PKCS7 *p7); | ||
75 | PKCS7_Finish(PKCS7 *p7); | ||
76 | |||
diff --git a/src/lib/libcrypto/pkcs7/server.pem b/src/lib/libcrypto/pkcs7/server.pem new file mode 100644 index 0000000000..750aac2094 --- /dev/null +++ b/src/lib/libcrypto/pkcs7/server.pem | |||
@@ -0,0 +1,24 @@ | |||
1 | issuer= /C=AU/ST=Queensland/O=CryptSoft Pty Ltd/CN=Test CA (1024 bit) | ||
2 | subject=/C=AU/ST=Queensland/O=CryptSoft Pty Ltd/CN=Server test cert (512 bit) | ||
3 | -----BEGIN CERTIFICATE----- | ||
4 | MIIB6TCCAVICAQAwDQYJKoZIhvcNAQEEBQAwWzELMAkGA1UEBhMCQVUxEzARBgNV | ||
5 | BAgTClF1ZWVuc2xhbmQxGjAYBgNVBAoTEUNyeXB0U29mdCBQdHkgTHRkMRswGQYD | ||
6 | VQQDExJUZXN0IENBICgxMDI0IGJpdCkwHhcNOTcwNjA5MTM1NzQ2WhcNOTgwNjA5 | ||
7 | MTM1NzQ2WjBjMQswCQYDVQQGEwJBVTETMBEGA1UECBMKUXVlZW5zbGFuZDEaMBgG | ||
8 | A1UEChMRQ3J5cHRTb2Z0IFB0eSBMdGQxIzAhBgNVBAMTGlNlcnZlciB0ZXN0IGNl | ||
9 | cnQgKDUxMiBiaXQpMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAJ+zw4Qnlf8SMVIP | ||
10 | Fe9GEcStgOY2Ww/dgNdhjeD8ckUJNP5VZkVDTGiXav6ooKXfX3j/7tdkuD8Ey2// | ||
11 | Kv7+ue0CAwEAATANBgkqhkiG9w0BAQQFAAOBgQB4TMR2CvacKE9wAsu9jyCX8YiW | ||
12 | mgCM+YoP6kt4Zkj2z5IRfm7WrycKsnpnOR+tGeqAjkCeZ6/36o9l91RvPnN1VJ/i | ||
13 | xQv2df0KFeMr00IkDdTNAdIWqFkSsZTAY2QAdgenb7MB1joejquYzO2DQIO7+wpH | ||
14 | irObpESxAZLySCmPPg== | ||
15 | -----END CERTIFICATE----- | ||
16 | -----BEGIN RSA PRIVATE KEY----- | ||
17 | MIIBPAIBAAJBAJ+zw4Qnlf8SMVIPFe9GEcStgOY2Ww/dgNdhjeD8ckUJNP5VZkVD | ||
18 | TGiXav6ooKXfX3j/7tdkuD8Ey2//Kv7+ue0CAwEAAQJAN6W31vDEP2DjdqhzCDDu | ||
19 | OA4NACqoiFqyblo7yc2tM4h4xMbC3Yx5UKMN9ZkCtX0gzrz6DyF47bdKcWBzNWCj | ||
20 | gQIhANEoojVt7hq+SQ6MCN6FTAysGgQf56Q3TYoJMoWvdiXVAiEAw3e3rc+VJpOz | ||
21 | rHuDo6bgpjUAAXM+v3fcpsfZSNO6V7kCIQCtbVjanpUwvZkMI9by02oUk9taki3b | ||
22 | PzPfAfNPYAbCJQIhAJXNQDWyqwn/lGmR11cqY2y9nZ1+5w3yHGatLrcDnQHxAiEA | ||
23 | vnlEGo8K85u+KwIOimM48ZG8oTk7iFdkqLJR1utT3aU= | ||
24 | -----END RSA PRIVATE KEY----- | ||
diff --git a/src/lib/libcrypto/pkcs7/sign.c b/src/lib/libcrypto/pkcs7/sign.c new file mode 100644 index 0000000000..ead1cb65ca --- /dev/null +++ b/src/lib/libcrypto/pkcs7/sign.c | |||
@@ -0,0 +1,140 @@ | |||
1 | /* crypto/pkcs7/sign.c */ | ||
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 | #include <stdio.h> | ||
59 | #include "bio.h" | ||
60 | #include "x509.h" | ||
61 | #include "pem.h" | ||
62 | |||
63 | main(argc,argv) | ||
64 | int argc; | ||
65 | char *argv[]; | ||
66 | { | ||
67 | X509 *x509; | ||
68 | EVP_PKEY *pkey; | ||
69 | PKCS7 *p7; | ||
70 | PKCS7 *p7_data; | ||
71 | PKCS7_SIGNER_INFO *si; | ||
72 | BIO *in; | ||
73 | BIO *data,*p7bio; | ||
74 | char buf[1024*4]; | ||
75 | int i,j; | ||
76 | int nodetach=0; | ||
77 | |||
78 | EVP_add_digest(EVP_md2()); | ||
79 | EVP_add_digest(EVP_md5()); | ||
80 | EVP_add_digest(EVP_sha1()); | ||
81 | EVP_add_digest(EVP_mdc2()); | ||
82 | |||
83 | data=BIO_new(BIO_s_file()); | ||
84 | again: | ||
85 | if (argc > 1) | ||
86 | { | ||
87 | if (strcmp(argv[1],"-nd") == 0) | ||
88 | { | ||
89 | nodetach=1; | ||
90 | argv++; argc--; | ||
91 | goto again; | ||
92 | } | ||
93 | if (!BIO_read_filename(data,argv[1])) | ||
94 | goto err; | ||
95 | } | ||
96 | else | ||
97 | BIO_set_fp(data,stdin,BIO_NOCLOSE); | ||
98 | |||
99 | if ((in=BIO_new_file("server.pem","r")) == NULL) goto err; | ||
100 | if ((x509=PEM_read_bio_X509(in,NULL,NULL)) == NULL) goto err; | ||
101 | BIO_reset(in); | ||
102 | if ((pkey=PEM_read_bio_PrivateKey(in,NULL,NULL)) == NULL) goto err; | ||
103 | BIO_free(in); | ||
104 | |||
105 | p7=PKCS7_new(); | ||
106 | PKCS7_set_type(p7,NID_pkcs7_signed); | ||
107 | |||
108 | if (PKCS7_add_signature(p7,x509,pkey,EVP_sha1()) == NULL) goto err; | ||
109 | |||
110 | /* we may want to add more */ | ||
111 | PKCS7_add_certificate(p7,x509); | ||
112 | |||
113 | /* Set the content of the signed to 'data' */ | ||
114 | PKCS7_content_new(p7,NID_pkcs7_data); | ||
115 | |||
116 | if (!nodetach) | ||
117 | PKCS7_set_detached(p7,1); | ||
118 | |||
119 | if ((p7bio=PKCS7_dataInit(p7,NULL)) == NULL) goto err; | ||
120 | |||
121 | for (;;) | ||
122 | { | ||
123 | i=BIO_read(data,buf,sizeof(buf)); | ||
124 | if (i <= 0) break; | ||
125 | BIO_write(p7bio,buf,i); | ||
126 | } | ||
127 | |||
128 | if (!PKCS7_dataSign(p7,p7bio)) goto err; | ||
129 | BIO_free(p7bio); | ||
130 | |||
131 | PEM_write_PKCS7(stdout,p7); | ||
132 | PKCS7_free(p7); | ||
133 | |||
134 | exit(0); | ||
135 | err: | ||
136 | ERR_load_crypto_strings(); | ||
137 | ERR_print_errors_fp(stderr); | ||
138 | exit(1); | ||
139 | } | ||
140 | |||
diff --git a/src/lib/libcrypto/pkcs7/verify.c b/src/lib/libcrypto/pkcs7/verify.c new file mode 100644 index 0000000000..0e1c1b26dc --- /dev/null +++ b/src/lib/libcrypto/pkcs7/verify.c | |||
@@ -0,0 +1,238 @@ | |||
1 | /* crypto/pkcs7/verify.c */ | ||
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 | #include <stdio.h> | ||
59 | #include "asn1.h" | ||
60 | #include "bio.h" | ||
61 | #include "x509.h" | ||
62 | #include "pem.h" | ||
63 | |||
64 | int verify_callback(int ok, X509_STORE_CTX *ctx); | ||
65 | |||
66 | BIO *bio_err=NULL; | ||
67 | |||
68 | main(argc,argv) | ||
69 | int argc; | ||
70 | char *argv[]; | ||
71 | { | ||
72 | X509 *x509,*x; | ||
73 | PKCS7 *p7; | ||
74 | PKCS7_SIGNED *s; | ||
75 | PKCS7_SIGNER_INFO *si; | ||
76 | PKCS7_ISSUER_AND_SERIAL *ias; | ||
77 | X509_STORE_CTX cert_ctx; | ||
78 | X509_STORE *cert_store=NULL; | ||
79 | X509_LOOKUP *lookup=NULL; | ||
80 | BIO *data,*detached=NULL,*p7bio=NULL; | ||
81 | char buf[1024*4]; | ||
82 | unsigned char *p,*pp; | ||
83 | int i,j,printit=0; | ||
84 | STACK *sk; | ||
85 | |||
86 | bio_err=BIO_new_fp(stderr,BIO_NOCLOSE); | ||
87 | EVP_add_digest(EVP_md2()); | ||
88 | EVP_add_digest(EVP_md5()); | ||
89 | EVP_add_digest(EVP_sha1()); | ||
90 | EVP_add_digest(EVP_mdc2()); | ||
91 | |||
92 | data=BIO_new(BIO_s_file()); | ||
93 | again: | ||
94 | pp=NULL; | ||
95 | while (argc > 1) | ||
96 | { | ||
97 | argc--; | ||
98 | argv++; | ||
99 | if (strcmp(argv[0],"-p") == 0) | ||
100 | { | ||
101 | printit=1; | ||
102 | } | ||
103 | else if ((strcmp(argv[0],"-d") == 0) && (argc >= 2)) | ||
104 | { | ||
105 | detached=BIO_new(BIO_s_file()); | ||
106 | if (!BIO_read_filename(detached,argv[1])) | ||
107 | goto err; | ||
108 | argc--; | ||
109 | argv++; | ||
110 | } | ||
111 | else | ||
112 | { | ||
113 | pp=argv[0]; | ||
114 | if (!BIO_read_filename(data,argv[0])) | ||
115 | goto err; | ||
116 | } | ||
117 | } | ||
118 | |||
119 | if (pp == NULL) | ||
120 | BIO_set_fp(data,stdin,BIO_NOCLOSE); | ||
121 | |||
122 | |||
123 | /* Load the PKCS7 object from a file */ | ||
124 | if ((p7=PEM_read_bio_PKCS7(data,NULL,NULL)) == NULL) goto err; | ||
125 | |||
126 | /* This stuff is being setup for certificate verification. | ||
127 | * When using SSL, it could be replaced with a | ||
128 | * cert_stre=SSL_CTX_get_cert_store(ssl_ctx); */ | ||
129 | cert_store=X509_STORE_new(); | ||
130 | X509_STORE_set_default_paths(cert_store); | ||
131 | X509_STORE_load_locations(cert_store,NULL,"../../certs"); | ||
132 | X509_STORE_set_verify_cb_func(cert_store,verify_callback); | ||
133 | |||
134 | ERR_clear_errors(); | ||
135 | |||
136 | /* We need to process the data */ | ||
137 | if (PKCS7_get_detached(p7)) | ||
138 | { | ||
139 | if (detached == NULL) | ||
140 | { | ||
141 | printf("no data to verify the signature on\n"); | ||
142 | exit(1); | ||
143 | } | ||
144 | else | ||
145 | p7bio=PKCS7_dataInit(p7,detached); | ||
146 | } | ||
147 | else | ||
148 | { | ||
149 | p7bio=PKCS7_dataInit(p7,NULL); | ||
150 | } | ||
151 | |||
152 | /* We now have to 'read' from p7bio to calculate digests etc. */ | ||
153 | for (;;) | ||
154 | { | ||
155 | i=BIO_read(p7bio,buf,sizeof(buf)); | ||
156 | /* print it? */ | ||
157 | if (i <= 0) break; | ||
158 | } | ||
159 | |||
160 | /* We can now verify signatures */ | ||
161 | sk=PKCS7_get_signer_info(p7); | ||
162 | if (sk == NULL) | ||
163 | { | ||
164 | printf("there are no signatures on this data\n"); | ||
165 | exit(1); | ||
166 | } | ||
167 | |||
168 | /* Ok, first we need to, for each subject entry, see if we can verify */ | ||
169 | for (i=0; i<sk_num(sk); i++) | ||
170 | { | ||
171 | si=(PKCS7_SIGNER_INFO *)sk_value(sk,i); | ||
172 | i=PKCS7_dataVerify(cert_store,&cert_ctx,p7bio,p7,si); | ||
173 | if (i <= 0) | ||
174 | goto err; | ||
175 | } | ||
176 | |||
177 | X509_STORE_free(cert_store); | ||
178 | |||
179 | printf("done\n"); | ||
180 | exit(0); | ||
181 | err: | ||
182 | ERR_load_crypto_strings(); | ||
183 | ERR_print_errors_fp(stderr); | ||
184 | exit(1); | ||
185 | } | ||
186 | |||
187 | /* should be X509 * but we can just have them as char *. */ | ||
188 | int verify_callback(ok, ctx) | ||
189 | int ok; | ||
190 | X509_STORE_CTX *ctx; | ||
191 | { | ||
192 | char buf[256]; | ||
193 | X509 *err_cert; | ||
194 | int err,depth; | ||
195 | |||
196 | err_cert=X509_STORE_CTX_get_current_cert(ctx); | ||
197 | err= X509_STORE_CTX_get_error(ctx); | ||
198 | depth= X509_STORE_CTX_get_error_depth(ctx); | ||
199 | |||
200 | X509_NAME_oneline(X509_get_subject_name(err_cert),buf,256); | ||
201 | BIO_printf(bio_err,"depth=%d %s\n",depth,buf); | ||
202 | if (!ok) | ||
203 | { | ||
204 | BIO_printf(bio_err,"verify error:num=%d:%s\n",err, | ||
205 | X509_verify_cert_error_string(err)); | ||
206 | if (depth < 6) | ||
207 | { | ||
208 | ok=1; | ||
209 | X509_STORE_CTX_set_error(ctx,X509_V_OK); | ||
210 | } | ||
211 | else | ||
212 | { | ||
213 | ok=0; | ||
214 | X509_STORE_CTX_set_error(ctx,X509_V_ERR_CERT_CHAIN_TOO_LONG); | ||
215 | } | ||
216 | } | ||
217 | switch (ctx->error) | ||
218 | { | ||
219 | case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT: | ||
220 | X509_NAME_oneline(X509_get_issuer_name(ctx->current_cert),buf,256); | ||
221 | BIO_printf(bio_err,"issuer= %s\n",buf); | ||
222 | break; | ||
223 | case X509_V_ERR_CERT_NOT_YET_VALID: | ||
224 | case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD: | ||
225 | BIO_printf(bio_err,"notBefore="); | ||
226 | ASN1_UTCTIME_print(bio_err,X509_get_notBefore(ctx->current_cert)); | ||
227 | BIO_printf(bio_err,"\n"); | ||
228 | break; | ||
229 | case X509_V_ERR_CERT_HAS_EXPIRED: | ||
230 | case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD: | ||
231 | BIO_printf(bio_err,"notAfter="); | ||
232 | ASN1_UTCTIME_print(bio_err,X509_get_notAfter(ctx->current_cert)); | ||
233 | BIO_printf(bio_err,"\n"); | ||
234 | break; | ||
235 | } | ||
236 | BIO_printf(bio_err,"verify return:%d\n",ok); | ||
237 | return(ok); | ||
238 | } | ||