summaryrefslogtreecommitdiff
path: root/src/include/openssl/ecdh.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/openssl/ecdh.h')
-rw-r--r--src/include/openssl/ecdh.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/include/openssl/ecdh.h b/src/include/openssl/ecdh.h
index c1675030..73e2140e 100644
--- a/src/include/openssl/ecdh.h
+++ b/src/include/openssl/ecdh.h
@@ -76,26 +76,26 @@ extern "C" {
#endif
-/* Elliptic curve Diffie-Hellman. */
+// Elliptic curve Diffie-Hellman.
-/* ECDH_compute_key calculates the shared key between |pub_key| and |priv_key|.
- * If |kdf| is not NULL, then it is called with the bytes of the shared key and
- * the parameter |out|. When |kdf| returns, the value of |*outlen| becomes the
- * return value. Otherwise, as many bytes of the shared key as will fit are
- * copied directly to, at most, |outlen| bytes at |out|. It returns the number
- * of bytes written to |out|, or -1 on error. */
+// ECDH_compute_key calculates the shared key between |pub_key| and |priv_key|.
+// If |kdf| is not NULL, then it is called with the bytes of the shared key and
+// the parameter |out|. When |kdf| returns, the value of |*outlen| becomes the
+// return value. Otherwise, as many bytes of the shared key as will fit are
+// copied directly to, at most, |outlen| bytes at |out|. It returns the number
+// of bytes written to |out|, or -1 on error.
OPENSSL_EXPORT int ECDH_compute_key(
void *out, size_t outlen, const EC_POINT *pub_key, const EC_KEY *priv_key,
void *(*kdf)(const void *in, size_t inlen, void *out, size_t *outlen));
#if defined(__cplusplus)
-} /* extern C */
+} // extern C
#endif
#define ECDH_R_KDF_FAILED 100
#define ECDH_R_NO_PRIVATE_VALUE 101
#define ECDH_R_POINT_ARITHMETIC_FAILURE 102
-#endif /* OPENSSL_HEADER_ECDH_H */
+#endif // OPENSSL_HEADER_ECDH_H