Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: src/platform/vboot_reference/crypto/genpadding.sh

Issue 1574005: VBoot Reference: Refactor Part 2 - Crypto Libraries (Closed)
Patch Set: . Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/platform/vboot_reference/crypto/padding.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 for rsaalgo in ${RSAAlgos[@]} 165 for rsaalgo in ${RSAAlgos[@]}
166 do 166 do
167 for hashalgo in ${HashAlgos[@]} 167 for hashalgo in ${HashAlgos[@]}
168 do 168 do
169 echo ${rsaalgo}NUMBYTES - ${hashalgo}_DIGEST_SIZE, 169 echo ${rsaalgo}NUMBYTES - ${hashalgo}_DIGEST_SIZE,
170 done 170 done
171 done 171 done
172 echo "};" 172 echo "};"
173 echo 173 echo
174 174
175 # Generate signature algorithm to messge digest algorithm map.
176 echo "const int hash_type_map[] = {"
177 for rsaalgo in ${RSAAlgos[@]}
178 do
179 for hashalgo in ${HashAlgos[@]}
180 do
181 echo ${hashalgo}_DIGEST_ALGORITHM,
182 done
183 done
184 echo "};"
185 echo
186
175 # Generate algorithm to message digest's output size map. 187 # Generate algorithm to message digest's output size map.
176 echo "const int hash_size_map[NUMALGORITHMS] = {" 188 echo "const int hash_size_map[NUMALGORITHMS] = {"
177 for rsaalgo in ${RSAAlgos[@]} 189 for rsaalgo in ${RSAAlgos[@]}
178 do 190 do
179 for hashalgo in ${HashAlgos[@]} 191 for hashalgo in ${HashAlgos[@]}
180 do 192 do
181 echo ${hashalgo}_DIGEST_SIZE, 193 echo ${hashalgo}_DIGEST_SIZE,
182 done 194 done
183 done 195 done
184 echo "};" 196 echo "};"
(...skipping 30 matching lines...) Expand all
215 do 227 do
216 for hashalgo in ${HashAlgos[@]} 228 for hashalgo in ${HashAlgos[@]}
217 do 229 do
218 echo \"${rsaalgo} ${hashalgo}\", 230 echo \"${rsaalgo} ${hashalgo}\",
219 done 231 done
220 done 232 done
221 echo "};" 233 echo "};"
222 echo 234 echo
223 235
224 #echo "#endif /* VBOOT_REFERENCE_PADDING_H_ */" 236 #echo "#endif /* VBOOT_REFERENCE_PADDING_H_ */"
OLDNEW
« no previous file with comments | « no previous file | src/platform/vboot_reference/crypto/padding.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698