/src/openssl32/crypto/pkcs7/pk7_mime.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 1999-2024 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the Apache License 2.0 (the "License"). You may not use |
5 | | * this file except in compliance with the License. You can obtain a copy |
6 | | * in the file LICENSE in the source distribution or at |
7 | | * https://www.openssl.org/source/license.html |
8 | | */ |
9 | | |
10 | | #include <stdio.h> |
11 | | #include "internal/cryptlib.h" |
12 | | #include <openssl/x509.h> |
13 | | #include <openssl/asn1.h> |
14 | | #include "pk7_local.h" |
15 | | |
16 | | /* PKCS#7 wrappers round generalised stream and MIME routines */ |
17 | | |
18 | | int i2d_PKCS7_bio_stream(BIO *out, PKCS7 *p7, BIO *in, int flags) |
19 | 0 | { |
20 | 0 | return i2d_ASN1_bio_stream(out, (ASN1_VALUE *)p7, in, flags, |
21 | 0 | ASN1_ITEM_rptr(PKCS7)); |
22 | 0 | } |
23 | | |
24 | | int PEM_write_bio_PKCS7_stream(BIO *out, PKCS7 *p7, BIO *in, int flags) |
25 | 0 | { |
26 | 0 | return PEM_write_bio_ASN1_stream(out, (ASN1_VALUE *)p7, in, flags, |
27 | 0 | "PKCS7", ASN1_ITEM_rptr(PKCS7)); |
28 | 0 | } |
29 | | |
30 | | int SMIME_write_PKCS7(BIO *bio, PKCS7 *p7, BIO *data, int flags) |
31 | 0 | { |
32 | 0 | STACK_OF(X509_ALGOR) *mdalgs; |
33 | 0 | int ctype_nid = OBJ_obj2nid(p7->type); |
34 | 0 | const PKCS7_CTX *ctx = ossl_pkcs7_get0_ctx(p7); |
35 | |
|
36 | 0 | if (ctype_nid == NID_pkcs7_signed) { |
37 | 0 | if (p7->d.sign == NULL) |
38 | 0 | return 0; |
39 | 0 | mdalgs = p7->d.sign->md_algs; |
40 | 0 | } else { |
41 | 0 | mdalgs = NULL; |
42 | 0 | } |
43 | | |
44 | 0 | flags ^= SMIME_OLDMIME; |
45 | |
|
46 | 0 | return SMIME_write_ASN1_ex(bio, (ASN1_VALUE *)p7, data, flags, ctype_nid, |
47 | 0 | NID_undef, mdalgs, ASN1_ITEM_rptr(PKCS7), |
48 | 0 | ossl_pkcs7_ctx_get0_libctx(ctx), |
49 | 0 | ossl_pkcs7_ctx_get0_propq(ctx)); |
50 | 0 | } |
51 | | |
52 | | PKCS7 *SMIME_read_PKCS7_ex(BIO *bio, BIO **bcont, PKCS7 **p7) |
53 | 10.0k | { |
54 | 10.0k | PKCS7 *ret; |
55 | 10.0k | OSSL_LIB_CTX *libctx = NULL; |
56 | 10.0k | const char *propq = NULL; |
57 | | |
58 | 10.0k | if (p7 != NULL && *p7 != NULL) { |
59 | 0 | libctx = (*p7)->ctx.libctx; |
60 | 0 | propq = (*p7)->ctx.propq; |
61 | 0 | } |
62 | | |
63 | 10.0k | ret = (PKCS7 *)SMIME_read_ASN1_ex(bio, 0, bcont, ASN1_ITEM_rptr(PKCS7), |
64 | 10.0k | (ASN1_VALUE **)p7, libctx, propq); |
65 | 10.0k | if (ret != NULL) |
66 | 399 | ossl_pkcs7_resolve_libctx(ret); |
67 | 10.0k | return ret; |
68 | 10.0k | } |
69 | | |
70 | | PKCS7 *SMIME_read_PKCS7(BIO *bio, BIO **bcont) |
71 | 10.0k | { |
72 | 10.0k | return SMIME_read_PKCS7_ex(bio, bcont, NULL); |
73 | 10.0k | } |