identt
AccessKeyService.hpp
Go to the documentation of this file.
1 
33 #ifndef _IDENTT_STORE_ACCESSKEY_SERVICE_HPP_
34 #define _IDENTT_STORE_ACCESSKEY_SERVICE_HPP_
35 
36 #include <query/QueryBase.hpp>
37 #include <store/StoreBase.hpp>
38 
39 namespace identt {
40 namespace store {
41 
42 class AccessKeyService : public StoreBase {
43 public:
44 
57  void VerifyAccessKeyAction(::identt::utils::SharedTable::pointer stptr, std::string akey);
58 
59 private:
60 
61 };
62 } // namespace store
63 } // namespace identt
64 
65 #endif // _IDENTT_STORE_ACCESSKEY_SERVICE_HPP_
66 
Definition: StoreBase.hpp:58
Definition: CryptoBase.hpp:49
void VerifyAccessKeyAction(::identt::utils::SharedTable::pointer stptr, std::string akey)
VerifyAccessKeyAction : verify the access key.
Definition: AccessKeyService.cc:44
Definition: AccessKeyService.hpp:42