Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
// V1PriKey.h: interface for the CV1PrivateKey class.
//
// (c) Copyright Schlumberger Technology Corp., unpublished work, created
// 1999. This computer program includes Confidential, Proprietary
// Information and is a Trade Secret of Schlumberger Technology Corp. All
// use, disclosure, and/or reproduction is prohibited unless authorized
// in writing. All Rights Reserved.
//////////////////////////////////////////////////////////////////////
// Note: This file should only be included by the CCI, not directly
// by the client.
#if !defined(SLBCCI_V1PRIKEY_H)
#define SLBCCI_V1PRIKEY_H
#include <string>
#include <vector>
#include <memory> // for auto_ptr
#include <slbRCObj.h>
#include "slbCci.h" // for KeySpec
#include "APriKey.h"
namespace cci {
class CV1Card; class CPriKeyInfoRecord;
class CV1PrivateKey : public CAbstractPrivateKey { public: // Types
// C'tors/D'tors
CV1PrivateKey(CV1Card const &rv1card, KeySpec ks);
virtual ~CV1PrivateKey() throw();
// Operators
// Operations
void AssociateWith(KeySpec ks);
virtual void CredentialID(std::string const &rstrID);
virtual void Decrypt(bool flag);
virtual void Derive(bool flag);
virtual void EndDate(Date const &rEndDate);
virtual void Exportable(bool flag);
virtual void ID(std::string const &rstrID);
virtual std::string InternalAuth(std::string const &rstrOld);
virtual void Label(std::string const &rstrLabel);
virtual void Local(bool flag);
static CV1PrivateKey * Make(CV1Card const &rv1card, KeySpec ks);
virtual void Modifiable(bool flag);
virtual void Modulus(std::string const &rstrModulus);
virtual void NeverExportable(bool flag);
virtual void NeverRead(bool flag);
virtual void PublicExponent(std::string const &rstrExponent);
virtual void Read(bool flag);
virtual void Sign(bool flag);
virtual void SignRecover(bool flag);
virtual void StartDate(Date &rdtStart);
virtual void Subject(std::string const &rstrSubject);
virtual void Unwrap(bool flag);
// Access
virtual std::string CredentialID();
virtual bool Decrypt();
virtual bool Derive();
virtual Date EndDate();
virtual bool Exportable();
virtual std::string ID();
virtual std::string Label();
virtual bool Local();
virtual bool Modifiable();
virtual std::string Modulus();
virtual bool NeverExportable();
virtual bool NeverRead();
virtual bool Private();
virtual std::string PublicExponent();
virtual bool Read();
virtual bool Sign();
virtual bool SignRecover();
virtual Date StartDate();
virtual std::string Subject();
virtual bool Unwrap();
// Predicates
protected: // Types
// C'tors/D'tors
// Operators
// Operations
virtual void DoDelete();
virtual void DoWriteKey(CPrivateKeyBlob const &rblob);
// Access
// Predicates
virtual bool DoEquals(CAbstractPrivateKey const &rhs) const;
// Variables
private: // Types
// C'tors/D'tors
CV1PrivateKey(CAbstractPrivateKey const &rhs); // not defined, copying not allowed.
// Operators
CAbstractPrivateKey & operator=(CAbstractPrivateKey const &rhs); // not defined, initialization not allowed.
// Operations
void Store();
// Access
// Predicates
// Variables
KeySpec m_ks; std::auto_ptr<CPrivateKeyBlob> m_apKeyBlob;
};
} // namespace
#endif // !defined(SLBCCI_V1
|