pk7_attr.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <openssl/bio.h>
  12. #include <openssl/asn1.h>
  13. #include <openssl/asn1t.h>
  14. #include <openssl/pem.h>
  15. #include <openssl/pkcs7.h>
  16. #include <openssl/x509.h>
  17. #include <openssl/err.h>
  18. int PKCS7_add_attrib_smimecap(PKCS7_SIGNER_INFO *si,
  19. STACK_OF(X509_ALGOR) *cap)
  20. {
  21. ASN1_STRING *seq;
  22. if ((seq = ASN1_STRING_new()) == NULL) {
  23. ERR_raise(ERR_LIB_PKCS7, ERR_R_ASN1_LIB);
  24. return 0;
  25. }
  26. seq->length = ASN1_item_i2d((ASN1_VALUE *)cap, &seq->data,
  27. ASN1_ITEM_rptr(X509_ALGORS));
  28. if (seq->length <= 0 || seq->data == NULL) {
  29. ASN1_STRING_free(seq);
  30. return 1;
  31. }
  32. if (!PKCS7_add_signed_attribute(si, NID_SMIMECapabilities,
  33. V_ASN1_SEQUENCE, seq)) {
  34. ASN1_STRING_free(seq);
  35. return 0;
  36. }
  37. return 1;
  38. }
  39. STACK_OF(X509_ALGOR) *PKCS7_get_smimecap(PKCS7_SIGNER_INFO *si)
  40. {
  41. ASN1_TYPE *cap;
  42. const unsigned char *p;
  43. cap = PKCS7_get_signed_attribute(si, NID_SMIMECapabilities);
  44. if (cap == NULL || (cap->type != V_ASN1_SEQUENCE))
  45. return NULL;
  46. p = cap->value.sequence->data;
  47. return (STACK_OF(X509_ALGOR) *)
  48. ASN1_item_d2i(NULL, &p, cap->value.sequence->length,
  49. ASN1_ITEM_rptr(X509_ALGORS));
  50. }
  51. /* Basic smime-capabilities OID and optional integer arg */
  52. int PKCS7_simple_smimecap(STACK_OF(X509_ALGOR) *sk, int nid, int arg)
  53. {
  54. ASN1_INTEGER *nbit = NULL;
  55. X509_ALGOR *alg;
  56. if ((alg = X509_ALGOR_new()) == NULL) {
  57. ERR_raise(ERR_LIB_PKCS7, ERR_R_ASN1_LIB);
  58. return 0;
  59. }
  60. ASN1_OBJECT_free(alg->algorithm);
  61. alg->algorithm = OBJ_nid2obj(nid);
  62. if (arg > 0) {
  63. if ((alg->parameter = ASN1_TYPE_new()) == NULL) {
  64. ERR_raise(ERR_LIB_PKCS7, ERR_R_ASN1_LIB);
  65. goto err;
  66. }
  67. if ((nbit = ASN1_INTEGER_new()) == NULL) {
  68. ERR_raise(ERR_LIB_PKCS7, ERR_R_ASN1_LIB);
  69. goto err;
  70. }
  71. if (!ASN1_INTEGER_set(nbit, arg)) {
  72. ERR_raise(ERR_LIB_PKCS7, ERR_R_ASN1_LIB);
  73. goto err;
  74. }
  75. alg->parameter->value.integer = nbit;
  76. alg->parameter->type = V_ASN1_INTEGER;
  77. nbit = NULL;
  78. }
  79. if (!sk_X509_ALGOR_push(sk, alg)) {
  80. ERR_raise(ERR_LIB_PKCS7, ERR_R_CRYPTO_LIB);
  81. goto err;
  82. }
  83. return 1;
  84. err:
  85. ASN1_INTEGER_free(nbit);
  86. X509_ALGOR_free(alg);
  87. return 0;
  88. }
  89. int PKCS7_add_attrib_content_type(PKCS7_SIGNER_INFO *si, ASN1_OBJECT *coid)
  90. {
  91. if (PKCS7_get_signed_attribute(si, NID_pkcs9_contentType))
  92. return 0;
  93. if (!coid)
  94. coid = OBJ_nid2obj(NID_pkcs7_data);
  95. return PKCS7_add_signed_attribute(si, NID_pkcs9_contentType,
  96. V_ASN1_OBJECT, coid);
  97. }
  98. int PKCS7_add0_attrib_signing_time(PKCS7_SIGNER_INFO *si, ASN1_TIME *t)
  99. {
  100. ASN1_TIME *tmp = NULL;
  101. if (t == NULL && (tmp = t = X509_gmtime_adj(NULL, 0)) == NULL) {
  102. ERR_raise(ERR_LIB_PKCS7, ERR_R_X509_LIB);
  103. return 0;
  104. }
  105. if (!PKCS7_add_signed_attribute(si, NID_pkcs9_signingTime,
  106. V_ASN1_UTCTIME, t)) {
  107. ASN1_TIME_free(tmp);
  108. return 0;
  109. }
  110. return 1;
  111. }
  112. int PKCS7_add1_attrib_digest(PKCS7_SIGNER_INFO *si,
  113. const unsigned char *md, int mdlen)
  114. {
  115. ASN1_OCTET_STRING *os;
  116. os = ASN1_OCTET_STRING_new();
  117. if (os == NULL)
  118. return 0;
  119. if (!ASN1_STRING_set(os, md, mdlen)
  120. || !PKCS7_add_signed_attribute(si, NID_pkcs9_messageDigest,
  121. V_ASN1_OCTET_STRING, os)) {
  122. ASN1_OCTET_STRING_free(os);
  123. return 0;
  124. }
  125. return 1;
  126. }