CVS: cvs.openbsd.org: src
Joel Sing <[email protected]>
| Newsgroups | gmane.os.openbsd.cvs |
|---|---|
| Message-ID | <[email protected]> |
CVSROOT: /cvs Module name: src Changes by: [email protected] 2026/07/14 10:31:02 Modified files: lib/libskey : skeysubr.c Log message: Use SHA1Final() in libskey. S/KEY requires hash output in little endian form, while SHA-1 produces big endian output. Rather than using SHA1Pad() and then reaching into the SHA-1 state directly, use SHA1Final() and then convert to little endian using be32toh/htole32. ok claudio@ millert@ tb@