/*
* RSACryptServiceProvider.h
* Copyright (c) 2011 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED.
*/
// SOL9
// 2009/03/02
// 2009/03/04 Modified the second constructor.
#pragma once
#include <sol/Object.h>
#include <sol/Exception.h>
#include <wincrypt.h>
#include <sol/crypt/CryptServiceProvider.h>
namespace SOL {
/*+
RSACryptServiceProvier
PROV_RSA_AES
Exchange: RSA
Signature: RSA
Encryption: RC2, RC4, AES
Hash: MD5, SHA-1
*/
class RSACryptServiceProvider :public CryptServiceProvider {
public:
/**
* Constructor
*/
RSACryptServiceProvider()
:CryptServiceProvider(PROV_RSA_AES) {
}
public:
/**
* Constructor
*/
//
RSACryptServiceProvider(const TCHAR* container)
:CryptServiceProvider(container, PROV_RSA_AES) {
}
public:
//Destructor
~RSACryptServiceProvider() {
}
};
}
|