decoders.inc 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * Copyright 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. #ifndef DECODER_PROVIDER
  10. # error Macro DECODER_PROVIDER undefined
  11. #endif
  12. #define DECODER_STRUCTURE_type_specific_keypair "type-specific"
  13. #define DECODER_STRUCTURE_type_specific_params "type-specific"
  14. #define DECODER_STRUCTURE_type_specific "type-specific"
  15. #define DECODER_STRUCTURE_type_specific_no_pub "type-specific"
  16. #define DECODER_STRUCTURE_PKCS8 "pkcs8"
  17. #define DECODER_STRUCTURE_SubjectPublicKeyInfo "SubjectPublicKeyInfo"
  18. #define DECODER_STRUCTURE_DH "dh"
  19. #define DECODER_STRUCTURE_DHX "dhx"
  20. #define DECODER_STRUCTURE_DSA "dsa"
  21. #define DECODER_STRUCTURE_EC "ec"
  22. #define DECODER_STRUCTURE_RSA "rsa"
  23. /* Arguments are prefixed with '_' to avoid build breaks on certain platforms */
  24. #define DECODER(_name, _input, _output, _fips) \
  25. { _name, \
  26. "provider=" DECODER_PROVIDER ",fips=" #_fips ",input=" #_input, \
  27. (ossl_##_input##_to_##_output##_decoder_functions) }
  28. #define DECODER_w_structure(_name, _input, _structure, _output, _fips) \
  29. { _name, \
  30. "provider=" DECODER_PROVIDER ",fips=" #_fips ",input=" #_input \
  31. ",structure=" DECODER_STRUCTURE_##_structure, \
  32. (ossl_##_structure##_##_input##_to_##_output##_decoder_functions) }
  33. #ifndef OPENSSL_NO_DH
  34. DECODER_w_structure("DH", der, PKCS8, dh, yes),
  35. DECODER_w_structure("DH", der, SubjectPublicKeyInfo, dh, yes),
  36. DECODER_w_structure("DH", der, type_specific_params, dh, yes),
  37. DECODER_w_structure("DH", der, DH, dh, yes),
  38. DECODER_w_structure("DHX", der, PKCS8, dhx, yes),
  39. DECODER_w_structure("DHX", der, SubjectPublicKeyInfo, dhx, yes),
  40. DECODER_w_structure("DHX", der, type_specific_params, dhx, yes),
  41. DECODER_w_structure("DHX", der, DHX, dhx, yes),
  42. #endif
  43. #ifndef OPENSSL_NO_DSA
  44. DECODER_w_structure("DSA", der, PKCS8, dsa, yes),
  45. DECODER_w_structure("DSA", der, SubjectPublicKeyInfo, dsa, yes),
  46. DECODER_w_structure("DSA", der, type_specific, dsa, yes),
  47. DECODER_w_structure("DSA", der, DSA, dsa, yes),
  48. DECODER("DSA", msblob, dsa, yes),
  49. # ifndef OPENSSL_NO_RC4
  50. DECODER("DSA", pvk, dsa, yes),
  51. # endif
  52. #endif
  53. #ifndef OPENSSL_NO_EC
  54. DECODER_w_structure("EC", der, PKCS8, ec, yes),
  55. DECODER_w_structure("EC", der, SubjectPublicKeyInfo, ec, yes),
  56. DECODER_w_structure("EC", der, type_specific_no_pub, ec, yes),
  57. DECODER_w_structure("EC", der, EC, ec, yes),
  58. DECODER_w_structure("ED25519", der, PKCS8, ed25519, yes),
  59. DECODER_w_structure("ED25519", der, SubjectPublicKeyInfo, ed25519, yes),
  60. DECODER_w_structure("ED448", der, PKCS8, ed448, yes),
  61. DECODER_w_structure("ED448", der, SubjectPublicKeyInfo, ed448, yes),
  62. DECODER_w_structure("X25519", der, PKCS8, x25519, yes),
  63. DECODER_w_structure("X25519", der, SubjectPublicKeyInfo, x25519, yes),
  64. DECODER_w_structure("X448", der, PKCS8, x448, yes),
  65. DECODER_w_structure("X448", der, SubjectPublicKeyInfo, x448, yes),
  66. #endif
  67. DECODER_w_structure("RSA", der, PKCS8, rsa, yes),
  68. DECODER_w_structure("RSA", der, SubjectPublicKeyInfo, rsa, yes),
  69. DECODER_w_structure("RSA", der, type_specific_keypair, rsa, yes),
  70. DECODER_w_structure("RSA", der, RSA, rsa, yes),
  71. DECODER_w_structure("RSA-PSS", der, PKCS8, rsapss, yes),
  72. DECODER_w_structure("RSA-PSS", der, SubjectPublicKeyInfo, rsapss, yes),
  73. #ifndef OPENSSL_NO_DSA
  74. DECODER("RSA", msblob, rsa, yes),
  75. # ifndef OPENSSL_NO_RC4
  76. DECODER("RSA", pvk, rsa, yes),
  77. # endif
  78. #endif
  79. DECODER("DER", pem, der, yes),