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

Unified Diff: net/cert/internal/verify_signed_data.h

Issue 1209283004: Implement VerifySignedData() for ECDSA, RSA PKCS#1 and RSA PSS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@parse_pss
Patch Set: nop? Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/cert/internal/verify_signed_data.cc » ('j') | net/cert/internal/verify_signed_data.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/internal/verify_signed_data.h
diff --git a/net/cert/internal/verify_signed_data.h b/net/cert/internal/verify_signed_data.h
new file mode 100644
index 0000000000000000000000000000000000000000..adee49272ca9dc54b91ab032ae339122962ee823
--- /dev/null
+++ b/net/cert/internal/verify_signed_data.h
@@ -0,0 +1,40 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef NET_CERT_INTERNAL_VERIFY_SIGNED_DATA_H_
+#define NET_CERT_INTERNAL_VERIFY_SIGNED_DATA_H_
+
+#include "base/compiler_specific.h"
+#include "net/base/net_export.h"
+
+namespace net {
+
+namespace der {
+class Input;
+} // namespace der
+
+class SignatureAlgorithm;
+
+// Verifies that |signature_value| is a valid signature of |signed_data| using
+// the algorithm |signature_algorithm| and the public key |public_key|.
+//
+// |signature_algorithm| - The parsed AlgorithmIdentifier
+// |signed_data| - The blob of data to verify
+// |signature_value| - The bytes for the signature's value, to be interpreted
+// according to the signature algorithm.
+// IMPORTANT: In RFC 5280, signatureValue is a BIT STRING. The expected
+// input to this function is the byte contents of that bit string, and
+// not the BIT STRING's DER itself.
davidben 2015/07/21 16:26:27 "byte contents of that bit string" vs "BIT STRING'
eroman 2015/07/21 19:24:28 OK so thinking about this more, I think it makes t
davidben 2015/07/21 19:41:14 SGTM. This is a pretty X.509-specific interface, s
+// |public_key| - A DER-encoded SubjectPublicKeyInfo.
+//
+// Returns true if verification was successful.
+NET_EXPORT bool VerifySignedData(const SignatureAlgorithm& signature_algorithm,
+ const der::Input& signed_data,
+ const der::Input& signature_value,
+ const der::Input& public_key)
+ WARN_UNUSED_RESULT;
+
+} // namespace net
+
+#endif // NET_CERT_INTERNAL_VERIFY_SIGNED_DATA_H_
« no previous file with comments | « no previous file | net/cert/internal/verify_signed_data.cc » ('j') | net/cert/internal/verify_signed_data.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698