61 lines
1.4 KiB
C++
61 lines
1.4 KiB
C++
// ---------------------------------------------------------------------------
|
|
// Name: actISecurityManager.h
|
|
// Product: cv act library
|
|
// Purpose: ISecurityManager used to manage the token authentication objects.
|
|
//
|
|
// Copyright: (c) 2008 cv cryptovision GmbH
|
|
// all rights reserved
|
|
// Licence: The conditions for the use of this software are regulated
|
|
// in the cv act library licence agreement.
|
|
//
|
|
// Autor: Markus Tesche (MTE)
|
|
// Date: 08/05/2008
|
|
// ---------------------------------------------------------------------------
|
|
|
|
#ifndef ACT_ISecurityManager_h
|
|
#define ACT_ISecurityManager_h
|
|
|
|
#include "actBasics.h"
|
|
#include "actIRefCounted.h"
|
|
|
|
namespace act
|
|
{
|
|
class ITokenPIN;
|
|
class IAuthIdRef;
|
|
|
|
enum SecManType
|
|
{
|
|
SecManUnknown = 0,
|
|
SecManPIN,
|
|
SecManBio,
|
|
};
|
|
|
|
//
|
|
// ISecurityManager
|
|
// TODO: MTE: Add access control management
|
|
class ISecurityManager : public IRefCounted
|
|
{
|
|
public:
|
|
virtual SecManType GetType() const = 0;
|
|
virtual void Delete(ITokenPIN* auth_obj) = 0;
|
|
};
|
|
|
|
class IPINManager : public ISecurityManager
|
|
{
|
|
public:
|
|
// NOTE: MTE: pin can be empty!
|
|
virtual ITokenPIN* Create(IAuthIdRef* authIdRef, IAuthIdRef* parentAuthIdRef,
|
|
int retryCount, const Blob& pin) = 0;
|
|
};
|
|
|
|
class IBioManager : public ISecurityManager
|
|
{
|
|
public:
|
|
virtual ITokenPIN* Create(IAuthIdRef* authIdRef, IAuthIdRef* parentAuthIdRef,
|
|
int retryCount, int bioFinger) = 0;
|
|
};
|
|
|
|
} // namespace act
|
|
|
|
#endif // ACT_ISecurityManager_h
|