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

Side by Side Diff: base/crypto/signature_verifier_openssl.cc

Issue 3855004: Make USE_OPENSSL and USE_NSS mutually exclusive (Closed)
Patch Set: wtc comments Created 10 years, 2 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 | « base/crypto/signature_creator_openssl.cc ('k') | base/crypto/symmetric_key.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/crypto/signature_verifier.h"
6
7 #include "base/logging.h"
8
9 namespace base {
10
11 SignatureVerifier::SignatureVerifier() {
12 }
13
14 SignatureVerifier::~SignatureVerifier() {
15 }
16
17 bool SignatureVerifier::VerifyInit(const uint8* signature_algorithm,
18 int signature_algorithm_len,
19 const uint8* signature,
20 int signature_len,
21 const uint8* public_key_info,
22 int public_key_info_len) {
23 NOTIMPLEMENTED();
24 return false;
25 }
26
27 void SignatureVerifier::VerifyUpdate(const uint8* data_part,
28 int data_part_len) {
29 NOTIMPLEMENTED();
30 }
31
32 bool SignatureVerifier::VerifyFinal() {
33 NOTIMPLEMENTED();
34 return false;
35 }
36
37 void SignatureVerifier::Reset() {
38 NOTIMPLEMENTED();
39 }
40
41 } // namespace base
OLDNEW
« no previous file with comments | « base/crypto/signature_creator_openssl.cc ('k') | base/crypto/symmetric_key.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698