der_sm2_sig.c 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*
  2. * Copyright 2020-2021 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 <openssl/obj_mac.h>
  10. #include "internal/packet.h"
  11. #include "prov/der_sm2.h"
  12. /* Aliases so we can have a uniform MD_CASE */
  13. #define ossl_der_oid_id_sm2_with_sm3 ossl_der_oid_sm2_with_SM3
  14. #define MD_CASE(name) \
  15. case NID_##name: \
  16. precompiled = ossl_der_oid_id_sm2_with_##name; \
  17. precompiled_sz = sizeof(ossl_der_oid_id_sm2_with_##name); \
  18. break;
  19. int ossl_DER_w_algorithmIdentifier_SM2_with_MD(WPACKET *pkt, int cont,
  20. EC_KEY *ec, int mdnid)
  21. {
  22. const unsigned char *precompiled = NULL;
  23. size_t precompiled_sz = 0;
  24. switch (mdnid) {
  25. MD_CASE(sm3);
  26. default:
  27. return 0;
  28. }
  29. return ossl_DER_w_begin_sequence(pkt, cont)
  30. /* No parameters (yet?) */
  31. && ossl_DER_w_precompiled(pkt, -1, precompiled, precompiled_sz)
  32. && ossl_DER_w_end_sequence(pkt, cont);
  33. }