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

Unified Diff: net/der/input.cc

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: clarify that signature_value is NOT the BIT STRING itself, but the byte contents Created 5 years, 6 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
« net/der/input.h ('K') | « net/der/input.h ('k') | net/net.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/der/input.cc
diff --git a/net/der/input.cc b/net/der/input.cc
index 45edfdcca67fde5ad002f151d6f2deb7e39c0870..004034e3ecd17cd93b8f87c040c3f5441fb0714b 100644
--- a/net/der/input.cc
+++ b/net/der/input.cc
@@ -17,6 +17,10 @@ Input::Input() : data_(nullptr), len_(0) {
Input::Input(const uint8_t* data, size_t len) : data_(data), len_(len) {
}
+Input::Input(const std::string& s)
+ : data_(reinterpret_cast<const uint8_t*>(s.data())), len_(s.size()) {
+}
+
bool Input::Equals(const Input& other) const {
if (len_ != other.len_)
return false;
« net/der/input.h ('K') | « net/der/input.h ('k') | net/net.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698