| 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 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 patch -p5 < $patches_dir/ecpointform.patch | 41 patch -p5 < $patches_dir/ecpointform.patch |
| 42 | 42 |
| 43 patch -p5 < $patches_dir/secretexporterlocks.patch | 43 patch -p5 < $patches_dir/secretexporterlocks.patch |
| 44 | 44 |
| 45 patch -p6 < $patches_dir/cbc.patch | 45 patch -p6 < $patches_dir/cbc.patch |
| 46 | 46 |
| 47 patch -p5 < $patches_dir/dtlsinitclist.patch | 47 patch -p5 < $patches_dir/dtlsinitclist.patch |
| 48 | 48 |
| 49 patch -p5 < $patches_dir/aes256keylength.patch | 49 patch -p5 < $patches_dir/aes256keylength.patch |
| 50 |
| 51 patch -p5 < $patches_dir/norc4falsestart.patch |
| OLD | NEW |