Virgil Security Crypto library  2.6.3
VirgilPFSResponderPublicInfo.h
1 
37 #ifndef VIRGIL_CRYPTO_PFS_VIRGIL_PFS_RESPONDER_PUBLIC_INFO_H
38 #define VIRGIL_CRYPTO_PFS_VIRGIL_PFS_RESPONDER_PUBLIC_INFO_H
39 
40 #include "../VirgilByteArray.h"
41 #include "VirgilPFSPublicKey.h"
42 
43 namespace virgil { namespace crypto { namespace pfs {
44 
54 public:
61  VirgilPFSPublicKey identityPublicKey, VirgilPFSPublicKey longTermPublicKey,
62  VirgilPFSPublicKey oneTimePublicKey = VirgilPFSPublicKey());
63 
69 
75 
81 
82 private:
83  VirgilPFSPublicKey identityPublicKey_;
84  VirgilPFSPublicKey longTermPublicKey_;
85  VirgilPFSPublicKey oneTimePublicKey_;
86 };
87 
88 }}}
89 
90 #endif //VIRGIL_CRYPTO_PFS_VIRGIL_PFS_RESPONDER_PUBLIC_INFO_H
VirgilPFSResponderPublicInfo(VirgilPFSPublicKey identityPublicKey, VirgilPFSPublicKey longTermPublicKey, VirgilPFSPublicKey oneTimePublicKey=VirgilPFSPublicKey())
Root namespace for all Virgil Security libraries.
Definition: VirgilAsn1Compatible.h:46
const VirgilPFSPublicKey & getIdentityPublicKey() const
Getter.
const VirgilPFSPublicKey & getOneTimePublicKey() const
Getter.
const VirgilPFSPublicKey & getLongTermPublicKey() const
Getter.
This is model object that handles public key.
Definition: VirgilPFSPublicKey.h:50
This is model object that represent public information of a PFS Responder.
Definition: VirgilPFSResponderPublicInfo.h:53