pk7_attr.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /*
  2. * Copyright 1999-2020 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. return PKCS7_add_signed_attribute(si, NID_SMIMECapabilities,
  29. V_ASN1_SEQUENCE, seq);
  30. }
  31. STACK_OF(X509_ALGOR) *PKCS7_get_smimecap(PKCS7_SIGNER_INFO *si)
  32. {
  33. ASN1_TYPE *cap;
  34. const unsigned char *p;
  35. cap = PKCS7_get_signed_attribute(si, NID_SMIMECapabilities);
  36. if (cap == NULL || (cap->type != V_ASN1_SEQUENCE))
  37. return NULL;
  38. p = cap->value.sequence->data;
  39. return (STACK_OF(X509_ALGOR) *)
  40. ASN1_item_d2i(NULL, &p, cap->value.sequence->length,
  41. ASN1_ITEM_rptr(X509_ALGORS));
  42. }
  43. /* Basic smime-capabilities OID and optional integer arg */
  44. int PKCS7_simple_smimecap(STACK_OF(X509_ALGOR) *sk, int nid, int arg)
  45. {
  46. ASN1_INTEGER *nbit = NULL;
  47. X509_ALGOR *alg;
  48. if ((alg = X509_ALGOR_new()) == NULL) {
  49. ERR_raise(ERR_LIB_PKCS7, ERR_R_ASN1_LIB);
  50. return 0;
  51. }
  52. ASN1_OBJECT_free(alg->algorithm);
  53. alg->algorithm = OBJ_nid2obj(nid);
  54. if (arg > 0) {
  55. if ((alg->parameter = ASN1_TYPE_new()) == NULL) {
  56. ERR_raise(ERR_LIB_PKCS7, ERR_R_ASN1_LIB);
  57. goto err;
  58. }
  59. if ((nbit = ASN1_INTEGER_new()) == NULL) {
  60. ERR_raise(ERR_LIB_PKCS7, ERR_R_ASN1_LIB);
  61. goto err;
  62. }
  63. if (!ASN1_INTEGER_set(nbit, arg)) {
  64. ERR_raise(ERR_LIB_PKCS7, ERR_R_ASN1_LIB);
  65. goto err;
  66. }
  67. alg->parameter->value.integer = nbit;
  68. alg->parameter->type = V_ASN1_INTEGER;
  69. nbit = NULL;
  70. }
  71. if (!sk_X509_ALGOR_push(sk, alg)) {
  72. ERR_raise(ERR_LIB_PKCS7, ERR_R_CRYPTO_LIB);
  73. goto err;
  74. }
  75. return 1;
  76. err:
  77. ASN1_INTEGER_free(nbit);
  78. X509_ALGOR_free(alg);
  79. return 0;
  80. }
  81. int PKCS7_add_attrib_content_type(PKCS7_SIGNER_INFO *si, ASN1_OBJECT *coid)
  82. {
  83. if (PKCS7_get_signed_attribute(si, NID_pkcs9_contentType))
  84. return 0;
  85. if (!coid)
  86. coid = OBJ_nid2obj(NID_pkcs7_data);
  87. return PKCS7_add_signed_attribute(si, NID_pkcs9_contentType,
  88. V_ASN1_OBJECT, coid);
  89. }
  90. int PKCS7_add0_attrib_signing_time(PKCS7_SIGNER_INFO *si, ASN1_TIME *t)
  91. {
  92. if (t == NULL && (t = X509_gmtime_adj(NULL, 0)) == NULL) {
  93. ERR_raise(ERR_LIB_PKCS7, ERR_R_X509_LIB);
  94. return 0;
  95. }
  96. return PKCS7_add_signed_attribute(si, NID_pkcs9_signingTime,
  97. V_ASN1_UTCTIME, t);
  98. }
  99. int PKCS7_add1_attrib_digest(PKCS7_SIGNER_INFO *si,
  100. const unsigned char *md, int mdlen)
  101. {
  102. ASN1_OCTET_STRING *os;
  103. os = ASN1_OCTET_STRING_new();
  104. if (os == NULL)
  105. return 0;
  106. if (!ASN1_STRING_set(os, md, mdlen)
  107. || !PKCS7_add_signed_attribute(si, NID_pkcs9_messageDigest,
  108. V_ASN1_OCTET_STRING, os)) {
  109. ASN1_OCTET_STRING_free(os);
  110. return 0;
  111. }
  112. return 1;
  113. }