identt
PubKeyService.hpp
Go to the documentation of this file.
1 
33 #ifndef _IDENTT_STORE_PUBKEY_SERVICE_HPP_
34 #define _IDENTT_STORE_PUBKEY_SERVICE_HPP_
35 
36 #include <query/SignedJson.hpp> // includes QueryBase
37 #include <store/StoreBase.hpp>
38 
39 namespace identt {
40 namespace store {
41 
43 public:
44 
57  void GetPubKeyAction(::identt::utils::SharedTable::pointer stptr, ::identt::query::PubKeyT* pubkey);
58 
71  void GetPubKeyValidAction(::identt::utils::SharedTable::pointer stptr, ::identt::query::PubKeyT* pubkey);
72 
85  void GetEphemeralValidAction(::identt::utils::SharedTable::pointer stptr, ::identt::query::PubKeyT* pubkey);
86 
87 };
88 } // namespace store
89 } // namespace identt
90 
91 #endif // _IDENTT_STORE_PUBKEY_SERVICE_HPP_
void GetPubKeyValidAction(::identt::utils::SharedTable::pointer stptr, ::identt::query::PubKeyT *pubkey)
GetPubKeyValidAction : Service Endpoint GetPubKeyValid.
Definition: PubKeyService.cc:58
Definition: SignedJson.hpp:43
Definition: StoreBase.hpp:58
void GetPubKeyAction(::identt::utils::SharedTable::pointer stptr, ::identt::query::PubKeyT *pubkey)
GetPubKeyAction : Service Endpoint GetPubKey.
Definition: PubKeyService.cc:43
Definition: PubKeyService.hpp:42
void GetEphemeralValidAction(::identt::utils::SharedTable::pointer stptr, ::identt::query::PubKeyT *pubkey)
GetEphemeralValidAction : Service Endpoint GetEphemeralValid.
Definition: PubKeyService.cc:77
Definition: CryptoBase.hpp:49