Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
LICENSE | D | 03-May-2024 | 1.7 KiB | 36 | 35 | |
README.chromium | D | 03-May-2024 | 688 | 14 | 11 | |
blapi.h | D | 03-May-2024 | 4.7 KiB | 102 | 49 | |
blapit.h | D | 03-May-2024 | 3.3 KiB | 92 | 22 | |
sha256.h | D | 03-May-2024 | 2 KiB | 52 | 12 | |
sha512.cc | D | 03-May-2024 | 35.1 KiB | 1,392 | 1,147 |
README.chromium
1Name: Network Security Services (NSS) 2URL: http://www.mozilla.org/projects/security/pki/nss/ 3 4We extracted the SHA-256 source files, eliminated unneeded dependencies, 5deleted or commented out unused code, and tweaked them for Chrome's source 6tree. sha512.c is renamed sha512.cc so that it can include Chrome's C++ 7header "base/basictypes.h". We define NOUNROLL256 to reduce the object code 8size. 9 10In blapi.h and sha512.cc, replaced uint32 by unsigned int so that they can 11be compiled with -DNO_NSPR_10_SUPPORT. NO_NSPR_10_SUPPORT turns off the 12definition of the NSPR 1.0 types int8 - int64 and uint8 - uint64 to avoid 13conflict with the same-named types defined in "base/basictypes.h". 14