diff options
author | tb <> | 2025-07-29 10:52:20 +0000 |
---|---|---|
committer | tb <> | 2025-07-29 10:52:20 +0000 |
commit | aa7438bc918c1337f5cb9e3bbcb6c61710c672f9 (patch) | |
tree | 5d65937a81ab3cc1b425ae99567fe9eaf647ebc9 | |
parent | ed9ca319ea1e15a0160d20554ab55582abb7e556 (diff) | |
download | openbsd-aa7438bc918c1337f5cb9e3bbcb6c61710c672f9.tar.gz openbsd-aa7438bc918c1337f5cb9e3bbcb6c61710c672f9.tar.bz2 openbsd-aa7438bc918c1337f5cb9e3bbcb6c61710c672f9.zip |
curve25519.c: zap trailing whitespace introduced in previous
-rw-r--r-- | src/lib/libcrypto/curve25519/curve25519.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/curve25519/curve25519.c b/src/lib/libcrypto/curve25519/curve25519.c index 9c54b16d13..0aa3d2855b 100644 --- a/src/lib/libcrypto/curve25519/curve25519.c +++ b/src/lib/libcrypto/curve25519/curve25519.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: curve25519.c,v 1.17 2025/07/17 00:55:48 kenjiro Exp $ */ | 1 | /* $OpenBSD: curve25519.c,v 1.18 2025/07/29 10:52:20 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2015, Google Inc. | 3 | * Copyright (c) 2015, Google Inc. |
4 | * | 4 | * |
@@ -3781,7 +3781,7 @@ ge_double_scalarmult_vartime(ge_p2 *r, const uint8_t *a, | |||
3781 | } | 3781 | } |
3782 | } | 3782 | } |
3783 | 3783 | ||
3784 | /* | 3784 | /* |
3785 | * int64_lshift21 returns |a << 21| but is defined when shifting bits into the | 3785 | * int64_lshift21 returns |a << 21| but is defined when shifting bits into the |
3786 | * sign bit. This works around a language flaw in C. | 3786 | * sign bit. This works around a language flaw in C. |
3787 | * | 3787 | * |