diff options
Diffstat (limited to '')
| -rw-r--r-- | src/lib/libcrypto/pkcs7/dec.c | 246 |
1 files changed, 246 insertions, 0 deletions
diff --git a/src/lib/libcrypto/pkcs7/dec.c b/src/lib/libcrypto/pkcs7/dec.c new file mode 100644 index 0000000000..b3661f28d3 --- /dev/null +++ b/src/lib/libcrypto/pkcs7/dec.c | |||
| @@ -0,0 +1,246 @@ | |||
| 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 <stdlib.h> | ||
| 60 | #include <openssl/bio.h> | ||
| 61 | #include <openssl/x509.h> | ||
| 62 | #include <openssl/pem.h> | ||
| 63 | #include <openssl/err.h> | ||
| 64 | #include <openssl/asn1.h> | ||
| 65 | |||
| 66 | int verify_callback(int ok, X509_STORE_CTX *ctx); | ||
| 67 | |||
| 68 | BIO *bio_err=NULL; | ||
| 69 | |||
| 70 | int main(argc,argv) | ||
| 71 | int argc; | ||
| 72 | char *argv[]; | ||
| 73 | { | ||
| 74 | char *keyfile=NULL; | ||
| 75 | BIO *in; | ||
| 76 | EVP_PKEY *pkey; | ||
| 77 | X509 *x509; | ||
| 78 | PKCS7 *p7; | ||
| 79 | PKCS7_SIGNER_INFO *si; | ||
| 80 | X509_STORE_CTX cert_ctx; | ||
| 81 | X509_STORE *cert_store=NULL; | ||
| 82 | BIO *data,*detached=NULL,*p7bio=NULL; | ||
| 83 | char buf[1024*4]; | ||
| 84 | unsigned char *pp; | ||
| 85 | int i,printit=0; | ||
| 86 | STACK_OF(PKCS7_SIGNER_INFO) *sk; | ||
| 87 | |||
| 88 | SSLeay_add_all_algorithms(); | ||
| 89 | bio_err=BIO_new_fp(stderr,BIO_NOCLOSE); | ||
| 90 | |||
| 91 | data=BIO_new(BIO_s_file()); | ||
| 92 | pp=NULL; | ||
| 93 | while (argc > 1) | ||
| 94 | { | ||
| 95 | argc--; | ||
| 96 | argv++; | ||
| 97 | if (strcmp(argv[0],"-p") == 0) | ||
| 98 | { | ||
| 99 | printit=1; | ||
| 100 | } | ||
| 101 | else if ((strcmp(argv[0],"-k") == 0) && (argc >= 2)) { | ||
| 102 | keyfile = argv[1]; | ||
| 103 | argc-=1; | ||
| 104 | argv+=1; | ||
| 105 | } else if ((strcmp(argv[0],"-d") == 0) && (argc >= 2)) | ||
| 106 | { | ||
| 107 | detached=BIO_new(BIO_s_file()); | ||
| 108 | if (!BIO_read_filename(detached,argv[1])) | ||
| 109 | goto err; | ||
| 110 | argc-=1; | ||
| 111 | argv+=1; | ||
| 112 | } | ||
| 113 | else break; | ||
| 114 | } | ||
| 115 | |||
| 116 | if (!BIO_read_filename(data,argv[0])) goto err; | ||
| 117 | |||
| 118 | if(!keyfile) { | ||
| 119 | fprintf(stderr, "No private key file specified\n"); | ||
| 120 | goto err; | ||
| 121 | } | ||
| 122 | |||
| 123 | if ((in=BIO_new_file(keyfile,"r")) == NULL) goto err; | ||
| 124 | if ((x509=PEM_read_bio_X509(in,NULL,NULL)) == NULL) goto err; | ||
| 125 | BIO_reset(in); | ||
| 126 | if ((pkey=PEM_read_bio_PrivateKey(in,NULL,NULL)) == NULL) goto err; | ||
| 127 | BIO_free(in); | ||
| 128 | |||
| 129 | if (pp == NULL) | ||
| 130 | BIO_set_fp(data,stdin,BIO_NOCLOSE); | ||
| 131 | |||
| 132 | |||
| 133 | /* Load the PKCS7 object from a file */ | ||
| 134 | if ((p7=PEM_read_bio_PKCS7(data,NULL,NULL)) == NULL) goto err; | ||
| 135 | |||
| 136 | |||
| 137 | |||
| 138 | /* This stuff is being setup for certificate verification. | ||
| 139 | * When using SSL, it could be replaced with a | ||
| 140 | * cert_stre=SSL_CTX_get_cert_store(ssl_ctx); */ | ||
| 141 | cert_store=X509_STORE_new(); | ||
| 142 | X509_STORE_set_default_paths(cert_store); | ||
| 143 | X509_STORE_load_locations(cert_store,NULL,"../../certs"); | ||
| 144 | X509_STORE_set_verify_cb_func(cert_store,verify_callback); | ||
| 145 | |||
| 146 | ERR_clear_error(); | ||
| 147 | |||
| 148 | /* We need to process the data */ | ||
| 149 | /* We cannot support detached encryption */ | ||
| 150 | p7bio=PKCS7_dataDecode(p7,pkey,detached,x509); | ||
| 151 | |||
| 152 | if (p7bio == NULL) | ||
| 153 | { | ||
| 154 | printf("problems decoding\n"); | ||
| 155 | goto err; | ||
| 156 | } | ||
| 157 | |||
| 158 | /* We now have to 'read' from p7bio to calculate digests etc. */ | ||
| 159 | for (;;) | ||
| 160 | { | ||
| 161 | i=BIO_read(p7bio,buf,sizeof(buf)); | ||
| 162 | /* print it? */ | ||
| 163 | if (i <= 0) break; | ||
| 164 | fwrite(buf,1, i, stdout); | ||
| 165 | } | ||
| 166 | |||
| 167 | /* We can now verify signatures */ | ||
| 168 | sk=PKCS7_get_signer_info(p7); | ||
| 169 | if (sk == NULL) | ||
| 170 | { | ||
| 171 | fprintf(stderr, "there are no signatures on this data\n"); | ||
| 172 | } | ||
| 173 | else | ||
| 174 | { | ||
| 175 | /* Ok, first we need to, for each subject entry, | ||
| 176 | * see if we can verify */ | ||
| 177 | ERR_clear_error(); | ||
| 178 | for (i=0; i<sk_PKCS7_SIGNER_INFO_num(sk); i++) | ||
| 179 | { | ||
| 180 | si=sk_PKCS7_SIGNER_INFO_value(sk,i); | ||
| 181 | i=PKCS7_dataVerify(cert_store,&cert_ctx,p7bio,p7,si); | ||
| 182 | if (i <= 0) | ||
| 183 | goto err; | ||
| 184 | else | ||
| 185 | fprintf(stderr,"Signature verified\n"); | ||
| 186 | } | ||
| 187 | } | ||
| 188 | X509_STORE_free(cert_store); | ||
| 189 | |||
| 190 | exit(0); | ||
| 191 | err: | ||
| 192 | ERR_load_crypto_strings(); | ||
| 193 | ERR_print_errors_fp(stderr); | ||
| 194 | exit(1); | ||
| 195 | } | ||
| 196 | |||
| 197 | /* should be X509 * but we can just have them as char *. */ | ||
| 198 | int verify_callback(int ok, X509_STORE_CTX *ctx) | ||
| 199 | { | ||
| 200 | char buf[256]; | ||
| 201 | X509 *err_cert; | ||
| 202 | int err,depth; | ||
| 203 | |||
| 204 | err_cert=X509_STORE_CTX_get_current_cert(ctx); | ||
| 205 | err= X509_STORE_CTX_get_error(ctx); | ||
| 206 | depth= X509_STORE_CTX_get_error_depth(ctx); | ||
| 207 | |||
| 208 | X509_NAME_oneline(X509_get_subject_name(err_cert),buf,256); | ||
| 209 | BIO_printf(bio_err,"depth=%d %s\n",depth,buf); | ||
| 210 | if (!ok) | ||
| 211 | { | ||
| 212 | BIO_printf(bio_err,"verify error:num=%d:%s\n",err, | ||
| 213 | X509_verify_cert_error_string(err)); | ||
| 214 | if (depth < 6) | ||
| 215 | { | ||
| 216 | ok=1; | ||
| 217 | X509_STORE_CTX_set_error(ctx,X509_V_OK); | ||
| 218 | } | ||
| 219 | else | ||
| 220 | { | ||
| 221 | ok=0; | ||
| 222 | X509_STORE_CTX_set_error(ctx,X509_V_ERR_CERT_CHAIN_TOO_LONG); | ||
| 223 | } | ||
| 224 | } | ||
| 225 | switch (ctx->error) | ||
| 226 | { | ||
| 227 | case X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT: | ||
| 228 | X509_NAME_oneline(X509_get_issuer_name(ctx->current_cert),buf,256); | ||
| 229 | BIO_printf(bio_err,"issuer= %s\n",buf); | ||
| 230 | break; | ||
| 231 | case X509_V_ERR_CERT_NOT_YET_VALID: | ||
| 232 | case X509_V_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD: | ||
| 233 | BIO_printf(bio_err,"notBefore="); | ||
| 234 | ASN1_UTCTIME_print(bio_err,X509_get_notBefore(ctx->current_cert)); | ||
| 235 | BIO_printf(bio_err,"\n"); | ||
| 236 | break; | ||
| 237 | case X509_V_ERR_CERT_HAS_EXPIRED: | ||
| 238 | case X509_V_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD: | ||
| 239 | BIO_printf(bio_err,"notAfter="); | ||
| 240 | ASN1_UTCTIME_print(bio_err,X509_get_notAfter(ctx->current_cert)); | ||
| 241 | BIO_printf(bio_err,"\n"); | ||
| 242 | break; | ||
| 243 | } | ||
| 244 | BIO_printf(bio_err,"verify return:%d\n",ok); | ||
| 245 | return(ok); | ||
| 246 | } | ||
