| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 | 2 |
| 3 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 3 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # Script to generate padding.c containing PKCS 1.5 padding byte arrays for | 7 # Script to generate padding.c containing PKCS 1.5 padding byte arrays for |
| 8 # various combinations of RSA key lengths and message digest algorithms. | 8 # various combinations of RSA key lengths and message digest algorithms. |
| 9 | 9 |
| 10 Pad_Preamble="0x00,0x01" | 10 Pad_Preamble="0x00,0x01" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 /* | 41 /* |
| 42 * DO NOT MODIFY THIS FILE DIRECTLY. | 42 * DO NOT MODIFY THIS FILE DIRECTLY. |
| 43 * | 43 * |
| 44 * This file is automatically generated by genpadding.sh and contains padding | 44 * This file is automatically generated by genpadding.sh and contains padding |
| 45 * arrays corresponding to various combinations of algorithms for RSA signatures
. | 45 * arrays corresponding to various combinations of algorithms for RSA signatures
. |
| 46 */ | 46 */ |
| 47 | 47 |
| 48 EOF | 48 EOF |
| 49 | 49 |
| 50 | 50 |
| 51 echo '#include "rsa.h"' | 51 echo '#include "cryptolib.h"' |
| 52 echo '#include "sha.h"' | |
| 53 echo | 52 echo |
| 54 echo | 53 echo |
| 55 cat <<EOF | 54 cat <<EOF |
| 56 /* | 55 /* |
| 57 * PKCS 1.5 padding (from the RSA PKCS#1 v2.1 standard) | 56 * PKCS 1.5 padding (from the RSA PKCS#1 v2.1 standard) |
| 58 * | 57 * |
| 59 * Depending on the RSA key size and hash function, the padding is calculated | 58 * Depending on the RSA key size and hash function, the padding is calculated |
| 60 * as follows: | 59 * as follows: |
| 61 * | 60 * |
| 62 * 0x00 || 0x01 || PS || 0x00 || T | 61 * 0x00 || 0x01 || PS || 0x00 || T |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 do | 226 do |
| 228 for hashalgo in ${HashAlgos[@]} | 227 for hashalgo in ${HashAlgos[@]} |
| 229 do | 228 do |
| 230 echo \"${rsaalgo} ${hashalgo}\", | 229 echo \"${rsaalgo} ${hashalgo}\", |
| 231 done | 230 done |
| 232 done | 231 done |
| 233 echo "};" | 232 echo "};" |
| 234 echo | 233 echo |
| 235 | 234 |
| 236 #echo "#endif /* VBOOT_REFERENCE_PADDING_H_ */" | 235 #echo "#endif /* VBOOT_REFERENCE_PADDING_H_ */" |
| OLD | NEW |