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

Unified Diff: remoting/host/keygen_main.cc

Issue 6805019: Move crypto files out of base, to a top level directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Chrome, webkit, remoting and crypto/owners Created 9 years, 8 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: remoting/host/keygen_main.cc
===================================================================
--- remoting/host/keygen_main.cc (revision 80873)
+++ remoting/host/keygen_main.cc (working copy)
@@ -13,13 +13,13 @@
#include "base/at_exit.h"
#include "base/base64.h"
-#include "base/crypto/rsa_private_key.h"
+#include "crypto/rsa_private_key.h"
#include "base/memory/scoped_ptr.h"
int main(int argc, char** argv) {
base::AtExitManager exit_manager;
- scoped_ptr<base::RSAPrivateKey> key(base::RSAPrivateKey::Create(2048));
+ scoped_ptr<crypto::RSAPrivateKey> key(crypto::RSAPrivateKey::Create(2048));
std::vector<uint8> private_key_buf;
key->ExportPrivateKey(&private_key_buf);

Powered by Google App Engine
This is Rietveld 408576698