ECPrivateKey.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00023 #ifndef _INTERFACE_ECPRIVATEKEY_H
00024 #define _INTERFACE_ECPRIVATEKEY_H
00025
00026 #ifdef __cplusplus
00027
00028 #include "beecrypt/c++/security/interfaces/PrivateKey.h"
00029 using beecrypt::security::interfaces::PrivateKey;
00030 #include "beecrypt/c++/security/interfaces/ECKey.h"
00031 using beecrypt::security::interfaces::ECKey;
00032 #include "beecrypt/c++/security/spec/ECPoint.h"
00033 using beecrypt::security::spec::ECPoint;
00034
00035 namespace beecrypt {
00036 namespace security {
00037 namespace interfaces {
00041 class ECPrivateKey : public PrivateKey, public ECKey
00042 {
00043 public:
00044 virtual const ECPoint& getS() const throw () = 0;
00045 };
00046 }
00047 }
00048 }
00049
00050 #endif
00051
00052 #endif