| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 # Run this script in the mozilla/security/nss/lib/ssl directory in a NSS | 6 # Run this script in the mozilla/security/nss/lib/ssl directory in a NSS |
| 7 # source tree. | 7 # source tree. |
| 8 # | 8 # |
| 9 # Point patches_dir to the src/net/third_party/nss/patches directory in a | 9 # Point patches_dir to the src/net/third_party/nss/patches directory in a |
| 10 # chromium source tree. | 10 # chromium source tree. |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 patch -p4 < $patches_dir/channelid.patch | 31 patch -p4 < $patches_dir/channelid.patch |
| 32 | 32 |
| 33 patch -p4 < $patches_dir/tlsunique.patch | 33 patch -p4 < $patches_dir/tlsunique.patch |
| 34 | 34 |
| 35 patch -p4 < $patches_dir/ecpointform.patch | 35 patch -p4 < $patches_dir/ecpointform.patch |
| 36 | 36 |
| 37 patch -p4 < $patches_dir/secretexporterlocks.patch | 37 patch -p4 < $patches_dir/secretexporterlocks.patch |
| 38 | 38 |
| 39 patch -p4 < $patches_dir/cbc.patch | 39 patch -p4 < $patches_dir/cbc.patch |
| 40 | 40 |
| 41 patch -p4 < $patches_dir/aes256keylength.patch |
| 42 |
| 41 patch -p4 < $patches_dir/suitebonly.patch | 43 patch -p4 < $patches_dir/suitebonly.patch |
| 42 | 44 |
| 43 patch -p4 < $patches_dir/secitemarray.patch | 45 patch -p4 < $patches_dir/secitemarray.patch |
| 44 | 46 |
| 45 patch -p4 < $patches_dir/unusedvariables.patch | 47 patch -p4 < $patches_dir/unusedvariables.patch |
| 46 | 48 |
| 47 patch -p4 < $patches_dir/handlecertstatus.patch | 49 patch -p4 < $patches_dir/handlecertstatus.patch |
| 48 | 50 |
| 49 patch -p4 < $patches_dir/tls12.patch | 51 patch -p4 < $patches_dir/tls12.patch |
| 50 | 52 |
| 51 patch -p4 < $patches_dir/tls12chromium.patch | 53 patch -p4 < $patches_dir/tls12chromium.patch |
| 52 | 54 |
| 53 patch -p4 < $patches_dir/tls12certrequest.patch | 55 patch -p4 < $patches_dir/tls12certrequest.patch |
| 54 | 56 |
| 55 patch -p4 < $patches_dir/tls12hmacsha256.patch | 57 patch -p4 < $patches_dir/tls12hmacsha256.patch |
| 56 | 58 |
| 57 patch -p4 < $patches_dir/tls12handshakehashes.patch | 59 patch -p4 < $patches_dir/tls12handshakehashes.patch |
| OLD | NEW |