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

Side by Side Diff: chrome/browser/ui/crypto_module_delegate_nss.h

Issue 61643007: Update keygen to use correct NSS slot on ChromeOS multiprofile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sky review changes Created 7 years 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_CRYPTO_MODULE_DELEGATE_NSS_H_
6 #define CHROME_BROWSER_UI_CRYPTO_MODULE_DELEGATE_NSS_H_
7
8 #include <string>
9
10 #include "base/compiler_specific.h"
11 #include "base/synchronization/waitable_event.h"
12 #include "chrome/browser/ui/crypto_module_password_dialog.h"
13 #include "crypto/nss_crypto_module_delegate.h"
14
15 namespace content {
16 class ResourceContext;
17 }
18
19 // Delegate to handle unlocking a slot or indicating which slot to store a key
20 // in. When passing to NSS functions which take a wincx argument, use the value
21 // returned from the wincx() method.
22 class ChromeNSSCryptoModuleDelegate
23 : public crypto::NSSCryptoModuleDelegate {
24 public:
25 // Create a ChromeNSSCryptoModuleDelegate. |reason| is used to select what
26 // string to show the user, |server| is displayed to indicate which connection
27 // is causing the dialog to appear.
28 ChromeNSSCryptoModuleDelegate(chrome::CryptoModulePasswordReason reason,
29 const std::string& server);
30
31 virtual ~ChromeNSSCryptoModuleDelegate();
32
33 // Must be called on IO thread. Returns true if the delegate is ready for use.
34 // Otherwise, if |initialization_complete_callback| is non-null, the
35 // initialization will proceed asynchronously and the callback will be run
36 // once the delegate is ready to use.
37 bool InitializeSlot(content::ResourceContext* context,
38 const base::Closure& initialization_complete_callback)
39 WARN_UNUSED_RESULT;
40
41 // crypto::NSSCryptoModuleDelegate implementation.
42 virtual crypto::ScopedPK11Slot RequestSlot() OVERRIDE;
43
44 // crypto::CryptoModuleBlockingPasswordDelegate implementation.
45 virtual std::string RequestPassword(const std::string& slot_name,
46 bool retry,
47 bool* cancelled) OVERRIDE;
48
49 private:
50 void ShowDialog(const std::string& slot_name, bool retry);
51
52 void GotPassword(const char* password);
53
54 void DidGetSlot(const base::Closure& callback, crypto::ScopedPK11Slot slot);
55
56 // Parameters displayed in the dialog.
57 const chrome::CryptoModulePasswordReason reason_;
58 const std::string server_;
59
60 // Event to block worker thread while waiting for dialog on UI thread.
61 base::WaitableEvent event_;
62
63 // Stores the results from the dialog for access on worker thread.
64 std::string password_;
65 bool cancelled_;
66
67 // The slot which will be returned by RequestSlot.
68 crypto::ScopedPK11Slot slot_;
69
70 DISALLOW_COPY_AND_ASSIGN(ChromeNSSCryptoModuleDelegate);
71 };
72
73 // Create a delegate which only handles unlocking slots.
74 crypto::CryptoModuleBlockingPasswordDelegate*
75 CreateCryptoModuleBlockingPasswordDelegate(
76 chrome::CryptoModulePasswordReason reason,
77 const std::string& server);
78
79 #endif // CHROME_BROWSER_UI_CRYPTO_MODULE_DELEGATE_NSS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698