s2n_key_share.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. #include "tls/extensions/s2n_key_share.h"
  16. #include "tls/s2n_tls.h"
  17. #include "utils/s2n_safety.h"
  18. /* Generate and write an ecc point.
  19. * This is used to write the ecc portion of PQ hybrid keyshares, which does NOT include the curve id.
  20. */
  21. S2N_RESULT s2n_ecdhe_send_public_key(struct s2n_ecc_evp_params *ecc_evp_params, struct s2n_stuffer *out, bool len_prefixed)
  22. {
  23. RESULT_ENSURE_REF(ecc_evp_params);
  24. RESULT_ENSURE_REF(ecc_evp_params->negotiated_curve);
  25. if (len_prefixed) {
  26. RESULT_GUARD_POSIX(s2n_stuffer_write_uint16(out, ecc_evp_params->negotiated_curve->share_size));
  27. }
  28. if (ecc_evp_params->evp_pkey == NULL) {
  29. RESULT_GUARD_POSIX(s2n_ecc_evp_generate_ephemeral_key(ecc_evp_params));
  30. }
  31. RESULT_GUARD_POSIX(s2n_ecc_evp_write_params_point(ecc_evp_params, out));
  32. return S2N_RESULT_OK;
  33. }
  34. /* Generate and write an ecc point and its corresponding curve id.
  35. * This is used to write ecc keyshares for the client and server key_share extensions.
  36. */
  37. int s2n_ecdhe_parameters_send(struct s2n_ecc_evp_params *ecc_evp_params, struct s2n_stuffer *out)
  38. {
  39. POSIX_ENSURE_REF(ecc_evp_params);
  40. POSIX_ENSURE_REF(ecc_evp_params->negotiated_curve);
  41. POSIX_GUARD(s2n_stuffer_write_uint16(out, ecc_evp_params->negotiated_curve->iana_id));
  42. POSIX_GUARD_RESULT(s2n_ecdhe_send_public_key(ecc_evp_params, out, true));
  43. return S2N_SUCCESS;
  44. }