Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 1 | /* ==================================================================== |
| 2 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. |
| 3 | * |
| 4 | * The Elliptic Curve Public-Key Crypto Library (ECC Code) included |
| 5 | * herein is developed by SUN MICROSYSTEMS, INC., and is contributed |
| 6 | * to the OpenSSL project. |
| 7 | * |
| 8 | * The ECC Code is licensed pursuant to the OpenSSL open source |
| 9 | * license provided below. |
| 10 | * |
| 11 | * The ECDH software is originally written by Douglas Stebila of |
| 12 | * Sun Microsystems Laboratories. |
| 13 | * |
| 14 | */ |
| 15 | /* ==================================================================== |
| 16 | * Copyright (c) 2000-2002 The OpenSSL Project. All rights reserved. |
| 17 | * |
| 18 | * Redistribution and use in source and binary forms, with or without |
| 19 | * modification, are permitted provided that the following conditions |
| 20 | * are met: |
| 21 | * |
| 22 | * 1. Redistributions of source code must retain the above copyright |
| 23 | * notice, this list of conditions and the following disclaimer. |
| 24 | * |
| 25 | * 2. Redistributions in binary form must reproduce the above copyright |
| 26 | * notice, this list of conditions and the following disclaimer in |
| 27 | * the documentation and/or other materials provided with the |
| 28 | * distribution. |
| 29 | * |
| 30 | * 3. All advertising materials mentioning features or use of this |
| 31 | * software must display the following acknowledgment: |
| 32 | * "This product includes software developed by the OpenSSL Project |
| 33 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" |
| 34 | * |
| 35 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to |
| 36 | * endorse or promote products derived from this software without |
| 37 | * prior written permission. For written permission, please contact |
| 38 | * licensing@OpenSSL.org. |
| 39 | * |
| 40 | * 5. Products derived from this software may not be called "OpenSSL" |
| 41 | * nor may "OpenSSL" appear in their names without prior written |
| 42 | * permission of the OpenSSL Project. |
| 43 | * |
| 44 | * 6. Redistributions of any form whatsoever must retain the following |
| 45 | * acknowledgment: |
| 46 | * "This product includes software developed by the OpenSSL Project |
| 47 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" |
| 48 | * |
| 49 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY |
| 50 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 51 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 52 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR |
| 53 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 54 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 55 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 56 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 57 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, |
| 58 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 59 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
| 60 | * OF THE POSSIBILITY OF SUCH DAMAGE. |
| 61 | * ==================================================================== |
| 62 | * |
| 63 | * This product includes cryptographic software written by Eric Young |
| 64 | * (eay@cryptsoft.com). This product includes software written by Tim |
| 65 | * Hudson (tjh@cryptsoft.com). */ |
| 66 | |
| 67 | #include <openssl/ecdh.h> |
| 68 | |
Adam Langley | 2b2d66d | 2015-01-30 17:08:37 -0800 | [diff] [blame] | 69 | #include <string.h> |
| 70 | |
Adam Langley | 4732c54 | 2018-07-27 14:27:09 -0700 | [diff] [blame] | 71 | #include <openssl/ec.h> |
| 72 | #include <openssl/ec_key.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 73 | #include <openssl/err.h> |
| 74 | #include <openssl/mem.h> |
Adam Langley | 4732c54 | 2018-07-27 14:27:09 -0700 | [diff] [blame] | 75 | #include <openssl/sha.h> |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 76 | |
Adam Langley | 3053b73 | 2022-02-24 15:41:10 -0800 | [diff] [blame] | 77 | #include "../../internal.h" |
Adam Langley | 8ba90d1 | 2022-06-06 09:36:35 -0700 | [diff] [blame] | 78 | #include "../ec/internal.h" |
| 79 | #include "../service_indicator/internal.h" |
David Benjamin | 17cf2cb | 2016-12-13 01:07:13 -0500 | [diff] [blame] | 80 | |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 81 | |
Adam Langley | 4732c54 | 2018-07-27 14:27:09 -0700 | [diff] [blame] | 82 | int ECDH_compute_key_fips(uint8_t *out, size_t out_len, const EC_POINT *pub_key, |
| 83 | const EC_KEY *priv_key) { |
Adam Langley | 3053b73 | 2022-02-24 15:41:10 -0800 | [diff] [blame] | 84 | boringssl_ensure_ecc_self_test(); |
| 85 | |
David Benjamin | a6bfc45 | 2018-03-06 20:21:28 -0500 | [diff] [blame] | 86 | if (priv_key->priv_key == NULL) { |
David Benjamin | 3570d73 | 2015-06-29 00:28:17 -0400 | [diff] [blame] | 87 | OPENSSL_PUT_ERROR(ECDH, ECDH_R_NO_PRIVATE_VALUE); |
Adam Langley | 4732c54 | 2018-07-27 14:27:09 -0700 | [diff] [blame] | 88 | return 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 89 | } |
David Benjamin | a6bfc45 | 2018-03-06 20:21:28 -0500 | [diff] [blame] | 90 | const EC_SCALAR *const priv = &priv_key->priv_key->scalar; |
David Benjamin | 9f152ad | 2018-11-09 17:06:51 -0600 | [diff] [blame] | 91 | const EC_GROUP *const group = EC_KEY_get0_group(priv_key); |
| 92 | if (EC_GROUP_cmp(group, pub_key->group, NULL) != 0) { |
| 93 | OPENSSL_PUT_ERROR(EC, EC_R_INCOMPATIBLE_OBJECTS); |
| 94 | return 0; |
| 95 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 96 | |
David Benjamin | 5e988c4 | 2023-05-03 14:05:27 -0400 | [diff] [blame] | 97 | EC_JACOBIAN shared_point; |
David Benjamin | 5279ef5 | 2018-11-09 17:36:12 -0600 | [diff] [blame] | 98 | uint8_t buf[EC_MAX_BYTES]; |
| 99 | size_t buflen; |
David Benjamin | 6c42830 | 2019-05-30 00:10:31 -0400 | [diff] [blame] | 100 | if (!ec_point_mul_scalar(group, &shared_point, &pub_key->raw, priv) || |
David Benjamin | 802523a | 2020-04-22 14:51:20 -0400 | [diff] [blame] | 101 | !ec_get_x_coordinate_as_bytes(group, buf, &buflen, sizeof(buf), |
| 102 | &shared_point)) { |
David Benjamin | 5279ef5 | 2018-11-09 17:36:12 -0600 | [diff] [blame] | 103 | OPENSSL_PUT_ERROR(ECDH, ECDH_R_POINT_ARITHMETIC_FAILURE); |
Adam Langley | 4732c54 | 2018-07-27 14:27:09 -0700 | [diff] [blame] | 104 | return 0; |
Brian Smith | 0dc2a8a | 2015-10-08 11:52:56 -1000 | [diff] [blame] | 105 | } |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 106 | |
Adam Langley | 118a892 | 2022-05-13 11:12:48 -0700 | [diff] [blame] | 107 | FIPS_service_indicator_lock_state(); |
Bob Beck | d9ad235 | 2024-09-05 22:23:52 +0000 | [diff] [blame^] | 108 | SHA256_CTX ctx; |
Adam Langley | 4732c54 | 2018-07-27 14:27:09 -0700 | [diff] [blame] | 109 | switch (out_len) { |
| 110 | case SHA224_DIGEST_LENGTH: |
Bob Beck | d9ad235 | 2024-09-05 22:23:52 +0000 | [diff] [blame^] | 111 | BCM_sha224_init(&ctx); |
| 112 | BCM_sha224_update(&ctx, buf, buflen); |
| 113 | BCM_sha224_final(out, &ctx); |
| 114 | OPENSSL_cleanse(&ctx, sizeof(ctx)); |
Adam Langley | 4732c54 | 2018-07-27 14:27:09 -0700 | [diff] [blame] | 115 | break; |
| 116 | case SHA256_DIGEST_LENGTH: |
Bob Beck | d9ad235 | 2024-09-05 22:23:52 +0000 | [diff] [blame^] | 117 | BCM_sha256_init(&ctx); |
| 118 | BCM_sha256_update(&ctx, buf, buflen); |
| 119 | BCM_sha256_final(out, &ctx); |
| 120 | OPENSSL_cleanse(&ctx, sizeof(ctx)); |
Adam Langley | 4732c54 | 2018-07-27 14:27:09 -0700 | [diff] [blame] | 121 | break; |
| 122 | case SHA384_DIGEST_LENGTH: |
| 123 | SHA384(buf, buflen, out); |
| 124 | break; |
| 125 | case SHA512_DIGEST_LENGTH: |
| 126 | SHA512(buf, buflen, out); |
| 127 | break; |
| 128 | default: |
| 129 | OPENSSL_PUT_ERROR(ECDH, ECDH_R_UNKNOWN_DIGEST_LENGTH); |
Adam Langley | 118a892 | 2022-05-13 11:12:48 -0700 | [diff] [blame] | 130 | FIPS_service_indicator_unlock_state(); |
David Benjamin | 5279ef5 | 2018-11-09 17:36:12 -0600 | [diff] [blame] | 131 | return 0; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 132 | } |
Adam Langley | 118a892 | 2022-05-13 11:12:48 -0700 | [diff] [blame] | 133 | FIPS_service_indicator_unlock_state(); |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 134 | |
Adam Langley | 118a892 | 2022-05-13 11:12:48 -0700 | [diff] [blame] | 135 | ECDH_verify_service_indicator(priv_key); |
David Benjamin | 5279ef5 | 2018-11-09 17:36:12 -0600 | [diff] [blame] | 136 | return 1; |
Adam Langley | 95c29f3 | 2014-06-20 12:00:00 -0700 | [diff] [blame] | 137 | } |