• Home
  • History
  • Annotate
  • only in /external/chromium_org/crypto/third_party/nss/
NameDateSize

..12-Mar-20154 KiB

chromium-blapi.h12-Mar-20154.8 KiB

chromium-blapit.h12-Mar-20153.4 KiB

chromium-nss.h12-Mar-20153.2 KiB

chromium-prtypes.h12-Mar-20152.5 KiB

chromium-sha256.h12-Mar-20152.1 KiB

LICENSE12-Mar-20151.7 KiB

pk11akey.cc12-Mar-20153.6 KiB

README.chromium12-Mar-2015911

rsawrapr.c12-Mar-20154.6 KiB

secsign.cc12-Mar-20154.4 KiB

sha512.cc12-Mar-201535.1 KiB

README.chromium

1Name: Network Security Services (NSS)
2URL: http://www.mozilla.org/projects/security/pki/nss/
3License: MPL 1.1/GPL 2.0/LGPL 2.1
4
5We extracted the SHA-256 source files, eliminated unneeded dependencies,
6deleted or commented out unused code, and tweaked them for Chrome's source
7tree.  sha512.c is renamed sha512.cc so that it can include Chrome's C++
8header "base/basictypes.h".  We define NOUNROLL256 to reduce the object code
9size.
10
11In blapi.h and sha512.cc, replaced uint32 by unsigned int so that they can
12be compiled with -DNO_NSPR_10_SUPPORT.  NO_NSPR_10_SUPPORT turns off the
13definition of the NSPR 1.0 types int8 - int64 and uint8 - uint64 to avoid
14conflict with the same-named types defined in "base/basictypes.h".
15
16rsawrapr.c is copied from nss/lib/softoken/rsawrapr.c, with
17HASH_GetRawHashObject changed to HASH_GetHashObject. It contains the
18emsa_pss_verify function for verifying RSA-PSS signatures.
19