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

Unified Diff: net/base/keygen_handler_openssl.cc

Issue 647883002: git cl format the final third of the net/base directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: net/base/keygen_handler_openssl.cc
diff --git a/net/base/keygen_handler_openssl.cc b/net/base/keygen_handler_openssl.cc
index aeb64a8b543e4308aa2574237250544b4fe32f51..72fa2cdd2cbcddf5537a83cbae4d9e8a82f423ef 100644
--- a/net/base/keygen_handler_openssl.cc
+++ b/net/base/keygen_handler_openssl.cc
@@ -25,8 +25,8 @@ std::string KeygenHandler::GenKeyAndSignChallenge() {
crypto::ScopedOpenSSL<NETSCAPE_SPKI, NETSCAPE_SPKI_free>::Type spki(
NETSCAPE_SPKI_new());
- ASN1_STRING_set(spki.get()->spkac->challenge,
- challenge_.data(), challenge_.size());
+ ASN1_STRING_set(
+ spki.get()->spkac->challenge, challenge_.data(), challenge_.size());
NETSCAPE_SPKI_set_pubkey(spki.get(), pkey);
// Using MD5 as this is what is required in HTML5, even though the SPKI
// structure does allow the use of a SHA-1 signature.
@@ -40,4 +40,3 @@ std::string KeygenHandler::GenKeyAndSignChallenge() {
}
} // namespace net
-

Powered by Google App Engine
This is Rietveld 408576698