Differences From Artifact [46f665cb64]:
- File
sha1.h
— part of check-in
[5027cbae9b]
at
2011-08-26 05:29:43
on branch trunk
— Updated to include DoD root CAs as objects in the PKCS#11 module
Updated to include Netscape Trust Objects (https://developer.mozilla.org/index.php?title=en/NSS/PKCS_%2311_Netscape_Trust) in PKCS#11 module
Added more attributes to scan for to test driver (user: rkeene, size: 2072) [annotate] [blame] [check-ins using]
To Artifact [cf44cc0e4d]:
- File
sha1.h
— part of check-in
[02f5cea2da]
at
2011-09-08 01:47:17
on branch trunk
— CACKey 0.6.2
Updated to include sha1.c, md5.c, and asn1-x509.c in the cackey.c translation unit so that these symbols never get exported and conflict with existing programs
Updated to try harder to remove and weaken symbols from shared object (user: rkeene, size: 2093) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
66 67 68 69 70 71 72 | int Computed; /* Is the digest computed? */ int Corrupted; /* Is the message digest corrupted? */ } SHA1Context; /* * Function Prototypes */ | | | | | 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | int Computed; /* Is the digest computed? */ int Corrupted; /* Is the message digest corrupted? */ } SHA1Context; /* * Function Prototypes */ static int SHA1Reset( SHA1Context *); static int SHA1Input( SHA1Context *, const uint8_t *, unsigned int); static int SHA1Result( SHA1Context *, uint8_t Message_Digest[SHA1HashSize]); #endif |