diff -r 000000000000 -r 6474c204b198 security/manager/ssl/src/nsKeygenThread.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/security/manager/ssl/src/nsKeygenThread.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,70 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef _NSKEYGENTHREAD_H_ +#define _NSKEYGENTHREAD_H_ + +#include "keyhi.h" +#include "nspr.h" + +#include "mozilla/Mutex.h" +#include "nsIKeygenThread.h" +#include "nsCOMPtr.h" + +class nsIRunnable; + +class nsKeygenThread : public nsIKeygenThread +{ +private: + mozilla::Mutex mutex; + + nsCOMPtr mNotifyObserver; + + bool iAmRunning; + bool keygenReady; + bool statusDialogClosed; + bool alreadyReceivedParams; + + SECKEYPrivateKey *privateKey; + SECKEYPublicKey *publicKey; + PK11SlotInfo *slot; + PK11AttrFlags flags; + PK11SlotInfo *altSlot; + PK11AttrFlags altFlags; + PK11SlotInfo *usedSlot; + uint32_t keyGenMechanism; + void *params; + void *wincx; + + PRThread *threadHandle; + +public: + nsKeygenThread(); + virtual ~nsKeygenThread(); + + NS_DECL_NSIKEYGENTHREAD + NS_DECL_THREADSAFE_ISUPPORTS + + void SetParams( + PK11SlotInfo *a_slot, + PK11AttrFlags a_flags, + PK11SlotInfo *a_alternative_slot, + PK11AttrFlags a_alternative_flags, + uint32_t a_keyGenMechanism, + void *a_params, + void *a_wincx ); + + nsresult ConsumeResult( + PK11SlotInfo **a_used_slot, + SECKEYPrivateKey **a_privateKey, + SECKEYPublicKey **a_publicKey); + + void Join(void); + + void Run(void); +}; + +#endif //_NSKEYGENTHREAD_H_