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

Side by Side Diff: crypto/crypto.gyp

Issue 17776003: Add SignatureVerifier::VerifyInitRSAPSS for verifying RSA-PSS signatures. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Work around the lack of HASH_GetType and HASH_ResultLenContext Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | crypto/signature_verifier.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # Put all transitive dependencies for Windows HMAC here. 8 # Put all transitive dependencies for Windows HMAC here.
9 # This is required so that we can build them for nacl win64. 9 # This is required so that we can build them for nacl win64.
10 'hmac_win64_related_sources': [ 10 'hmac_win64_related_sources': [
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 'rsa_private_key_nss.cc', 147 'rsa_private_key_nss.cc',
148 'secure_hash_default.cc', 148 'secure_hash_default.cc',
149 'signature_creator_nss.cc', 149 'signature_creator_nss.cc',
150 'signature_verifier_nss.cc', 150 'signature_verifier_nss.cc',
151 'symmetric_key_nss.cc', 151 'symmetric_key_nss.cc',
152 'third_party/nss/chromium-blapi.h', 152 'third_party/nss/chromium-blapi.h',
153 'third_party/nss/chromium-blapit.h', 153 'third_party/nss/chromium-blapit.h',
154 'third_party/nss/chromium-nss.h', 154 'third_party/nss/chromium-nss.h',
155 'third_party/nss/chromium-sha256.h', 155 'third_party/nss/chromium-sha256.h',
156 'third_party/nss/pk11akey.cc', 156 'third_party/nss/pk11akey.cc',
157 'third_party/nss/rsawrapr.c',
157 'third_party/nss/secsign.cc', 158 'third_party/nss/secsign.cc',
158 'third_party/nss/sha512.cc', 159 'third_party/nss/sha512.cc',
159 ], 160 ],
160 }, { 161 }, {
161 'sources!': [ 162 'sources!': [
162 'ec_private_key_openssl.cc', 163 'ec_private_key_openssl.cc',
163 'ec_signature_creator_openssl.cc', 164 'ec_signature_creator_openssl.cc',
164 'encryptor_openssl.cc', 165 'encryptor_openssl.cc',
165 'hmac_openssl.cc', 166 'hmac_openssl.cc',
166 'openssl_util.cc', 167 'openssl_util.cc',
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 'signature_creator_win.cc', 248 'signature_creator_win.cc',
248 'signature_verifier.h', 249 'signature_verifier.h',
249 'signature_verifier_nss.cc', 250 'signature_verifier_nss.cc',
250 'signature_verifier_openssl.cc', 251 'signature_verifier_openssl.cc',
251 'symmetric_key_nss.cc', 252 'symmetric_key_nss.cc',
252 'symmetric_key_openssl.cc', 253 'symmetric_key_openssl.cc',
253 'third_party/nss/chromium-blapi.h', 254 'third_party/nss/chromium-blapi.h',
254 'third_party/nss/chromium-blapit.h', 255 'third_party/nss/chromium-blapit.h',
255 'third_party/nss/chromium-nss.h', 256 'third_party/nss/chromium-nss.h',
256 'third_party/nss/pk11akey.cc', 257 'third_party/nss/pk11akey.cc',
258 'third_party/nss/rsawrapr.c',
257 'third_party/nss/secsign.cc', 259 'third_party/nss/secsign.cc',
258 ], 260 ],
259 }, 261 },
260 { 262 {
261 'target_name': 'crypto_unittests', 263 'target_name': 'crypto_unittests',
262 'type': 'executable', 264 'type': 'executable',
263 'sources': [ 265 'sources': [
264 # Infrastructure files. 266 # Infrastructure files.
265 'run_all_unittests.cc', 267 'run_all_unittests.cc',
266 268
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 'configurations': { 372 'configurations': {
371 'Common_Base': { 373 'Common_Base': {
372 'msvs_target_platform': 'x64', 374 'msvs_target_platform': 'x64',
373 }, 375 },
374 }, 376 },
375 }, 377 },
376 ], 378 ],
377 }], 379 }],
378 ], 380 ],
379 } 381 }
OLDNEW
« no previous file with comments | « no previous file | crypto/signature_verifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698