diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2024-11-16 12:34:17 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2024-11-16 12:34:17 +0000 |
commit | 67c5460ed0a5b8b5cbe8abadf91b62acb24088e4 (patch) | |
tree | 8663df40bfb438e4baaa37d298326d4ac21dd0ad | |
parent | 2b3fa551fd921735ac656da9a1ad78ff0e4d6178 (diff) |
Specify size for K256 symbol.
Missing sizes spotted by guenther@
-rw-r--r-- | lib/libcrypto/sha/sha256_amd64_generic.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/sha/sha256_amd64_generic.S b/lib/libcrypto/sha/sha256_amd64_generic.S index a7d2f9ddad9..166bce9ca8b 100644 --- a/lib/libcrypto/sha/sha256_amd64_generic.S +++ b/lib/libcrypto/sha/sha256_amd64_generic.S @@ -1,4 +1,4 @@ -/* $OpenBSD: sha256_amd64_generic.S,v 1.2 2024/11/12 13:51:14 jsing Exp $ */ +/* $OpenBSD: sha256_amd64_generic.S,v 1.3 2024/11/16 12:34:16 jsing Exp $ */ /* * Copyright (c) 2024 Joel Sing <jsing@openbsd.org> * @@ -299,3 +299,4 @@ K256: .long 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3 .long 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208 .long 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2 +.size K256,.-K256 |