s2n_rsa_pss.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License").
  5. * You may not use this file except in compliance with the License.
  6. * A copy of the License is located at
  7. *
  8. * http://aws.amazon.com/apache2.0
  9. *
  10. * or in the "license" file accompanying this file. This file is distributed
  11. * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
  12. * express or implied. See the License for the specific language governing
  13. * permissions and limitations under the License.
  14. */
  15. #pragma once
  16. #include <openssl/bn.h>
  17. #include <stdint.h>
  18. #include "api/s2n.h"
  19. #include "crypto/s2n_openssl.h"
  20. #include "crypto/s2n_rsa.h"
  21. #include "crypto/s2n_rsa_signing.h"
  22. #define RSA_PSS_SIGN_VERIFY_RANDOM_BLOB_SIZE 32
  23. #define RSA_PSS_SIGN_VERIFY_SIGNATURE_SIZE 256
  24. #ifndef EVP_PKEY_RSA_PSS
  25. #define EVP_PKEY_RSA_PSS EVP_PKEY_NONE
  26. #endif
  27. /* OpenSSL 1.1.1d 10 Sep 2019 is broken, so disable on that version. For further info see: crypto/evp/p_lib.c:469
  28. *
  29. * This feature requires this Openssl commit for Openssl 1.1.x versions: openssl/openssl@4088b92
  30. */
  31. #if RSA_PSS_SIGNING_SUPPORTED && OPENSSL_VERSION_NUMBER > 0x1010104fL
  32. #define RSA_PSS_CERTS_SUPPORTED 1
  33. #else
  34. #define RSA_PSS_CERTS_SUPPORTED 0
  35. #endif
  36. int s2n_is_rsa_pss_certs_supported();
  37. int s2n_rsa_pss_pkey_init(struct s2n_pkey *pkey);
  38. int s2n_evp_pkey_to_rsa_pss_public_key(struct s2n_rsa_key *rsa_key, EVP_PKEY *pkey);
  39. int s2n_evp_pkey_to_rsa_pss_private_key(struct s2n_rsa_key *rsa_key, EVP_PKEY *pkey);