OLD | NEW |
1 Name: Network Security Services (NSS) | 1 Name: Network Security Services (NSS) |
2 URL: http://www.mozilla.org/projects/security/pki/nss/ | 2 URL: http://www.mozilla.org/projects/security/pki/nss/ |
3 Version: 3.14 | 3 Version: 3.14 |
4 Security Critical: Yes | 4 Security Critical: Yes |
5 License: MPL 2 | 5 License: MPL 2 |
6 License FILE: NOT_SHIPPED | 6 License FILE: NOT_SHIPPED |
7 | 7 |
8 This directory includes a copy of NSS's libssl from the CVS repo at: | 8 This directory includes a copy of NSS's libssl from the CVS repo at: |
9 :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot | 9 :pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot |
10 | 10 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 | 76 |
77 * Define the EC_POINT_FORM_UNCOMPRESSED macro. In NSS 3.13.2 the macro | 77 * Define the EC_POINT_FORM_UNCOMPRESSED macro. In NSS 3.13.2 the macro |
78 definition was moved from the internal header ec.h to blapit.h. When | 78 definition was moved from the internal header ec.h to blapit.h. When |
79 compiling against older system NSS headers, we need to define the macro. | 79 compiling against older system NSS headers, we need to define the macro. |
80 patches/ecpointform.patch | 80 patches/ecpointform.patch |
81 | 81 |
82 * SSL_ExportKeyingMaterial should get the RecvBufLock and SSL3HandshakeLock. | 82 * SSL_ExportKeyingMaterial should get the RecvBufLock and SSL3HandshakeLock. |
83 This change was made in https://chromiumcodereview.appspot.com/10454066. | 83 This change was made in https://chromiumcodereview.appspot.com/10454066. |
84 patches/secretexporterlocks.patch | 84 patches/secretexporterlocks.patch |
85 | 85 |
| 86 * Implement CBC processing in constant-time to address the "Lucky Thirteen" |
| 87 attack. |
| 88 patches/cbc.patch |
| 89 https://bugzilla.mozilla.org/show_bug.cgi?id=822365 |
| 90 |
86 Apply the patches to NSS by running the patches/applypatches.sh script. Read | 91 Apply the patches to NSS by running the patches/applypatches.sh script. Read |
87 the comments at the top of patches/applypatches.sh for instructions. | 92 the comments at the top of patches/applypatches.sh for instructions. |
88 | 93 |
89 The ssl/bodge directory contains files taken from the NSS repo that we required | 94 The ssl/bodge directory contains files taken from the NSS repo that we required |
90 for building libssl outside of its usual build environment. | 95 for building libssl outside of its usual build environment. |
OLD | NEW |