1 /* Copyright (c) 2022, Google Inc. 2 * 3 * Permission to use, copy, modify, and/or distribute this software for any 4 * purpose with or without fee is hereby granted, provided that the above 5 * copyright notice and this permission notice appear in all copies. 6 * 7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY 10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN 13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ 14 15 #ifndef OPENSSL_HEADER_CRYPTO_FIPSMODULE_DH_INTERNAL_H 16 #define OPENSSL_HEADER_CRYPTO_FIPSMODULE_DH_INTERNAL_H 17 18 #include <openssl/base.h> 19 20 #if defined(__cplusplus) 21 extern "C" { 22 #endif 23 24 25 // dh_compute_key_padded_no_self_test does the same as |DH_compute_key_padded|, 26 // but doesn't try to run the self-test first. This is for use in the self tests 27 // themselves, to prevent an infinite loop. 28 int dh_compute_key_padded_no_self_test(unsigned char *out, 29 const BIGNUM *peers_key, DH *dh); 30 31 32 #if defined(__cplusplus) 33 } 34 #endif 35 36 #endif // OPENSSL_HEADER_CRYPTO_FIPSMODULE_DH_INTERNAL_H 37