diff options
author | Matt Caswell <matt@openssl.org> | 2018-02-07 17:03:14 +0000 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2018-02-20 12:59:31 +0000 |
commit | 909c68ae7253a718993cf9d89412e4c9b403eb9b (patch) | |
tree | 9be35905a3fc7e89381a3f2927f373b75f6864a3 /crypto/ec/curve448/point_448.h | |
parent | c1f15b76ef13823ddd1f006ba75128c369eca067 (diff) | |
download | openssl-new-909c68ae7253a718993cf9d89412e4c9b403eb9b.tar.gz |
Yet more style updates to the curve448 code
Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de>
(Merged from https://github.com/openssl/openssl/pull/5105)
Diffstat (limited to 'crypto/ec/curve448/point_448.h')
-rw-r--r-- | crypto/ec/curve448/point_448.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/crypto/ec/curve448/point_448.h b/crypto/ec/curve448/point_448.h index 326718b305..219d9f7641 100644 --- a/crypto/ec/curve448/point_448.h +++ b/crypto/ec/curve448/point_448.h @@ -92,9 +92,8 @@ extern const niels_t *curve448_wnaf_base; * C448_FAILURE: The scalar was greater than the modulus, and has been reduced * modulo that modulus. */ -__owur c448_error_t curve448_scalar_decode( - curve448_scalar_t out, - const unsigned char ser[C448_SCALAR_BYTES]); +c448_error_t curve448_scalar_decode(curve448_scalar_t out, + const unsigned char ser[C448_SCALAR_BYTES]); /* * Read a scalar from wire format or from bytes. Reduces mod scalar prime. |