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

Unified Diff: net/base/keygen_handler_nss.cc

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 | « net/base/keygen_handler_mac.cc ('k') | net/base/keygen_handler_openssl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/keygen_handler_nss.cc
diff --git a/net/base/keygen_handler_nss.cc b/net/base/keygen_handler_nss.cc
deleted file mode 100644
index 661dabc7710d056aac8d02843b4828e6547c376f..0000000000000000000000000000000000000000
--- a/net/base/keygen_handler_nss.cc
+++ /dev/null
@@ -1,46 +0,0 @@
-// Copyright (c) 2011 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.
-
-#include "net/base/keygen_handler.h"
-
-#include "base/logging.h"
-#include "crypto/nss_crypto_module_delegate.h"
-#include "crypto/nss_util.h"
-#include "crypto/scoped_nss_types.h"
-#include "net/third_party/mozilla_security_manager/nsKeygenHandler.h"
-
-// PSM = Mozilla's Personal Security Manager.
-namespace psm = mozilla_security_manager;
-
-namespace net {
-
-std::string KeygenHandler::GenKeyAndSignChallenge() {
- crypto::EnsureNSSInit();
-
- crypto::ScopedPK11Slot slot;
- if (crypto_module_delegate_) {
- slot = crypto_module_delegate_->RequestSlot().Pass();
- } else {
- LOG(ERROR) << "Could not get an NSS key slot.";
- return std::string();
- }
-
- // Authenticate to the token.
- if (SECSuccess != PK11_Authenticate(slot.get(),
- PR_TRUE,
- crypto_module_delegate_->wincx())) {
- LOG(ERROR) << "Could not authenticate to the key slot.";
- return std::string();
- }
-
- return psm::GenKeyAndSignChallenge(key_size_in_bits_, challenge_, url_,
- slot.get(), stores_key_);
-}
-
-void KeygenHandler::set_crypto_module_delegate(
- scoped_ptr<crypto::NSSCryptoModuleDelegate> delegate) {
- crypto_module_delegate_ = delegate.Pass();
-}
-
-} // namespace net
« no previous file with comments | « net/base/keygen_handler_mac.cc ('k') | net/base/keygen_handler_openssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698