HomeSort by relevance Sort by last modified time
    Searched refs:HmacSession (Results 1 - 15 of 15) sorted by null

  /system/tpm/trunks/
hmac_session.h 30 // HmacSession is an interface for managing hmac backed sessions for
32 class HmacSession {
34 HmacSession() {}
35 virtual ~HmacSession() {}
66 DISALLOW_COPY_AND_ASSIGN(HmacSession);
trunks_factory.h 32 class HmacSession;
64 // Returns a HmacSession instance. The caller takes ownership.
65 virtual scoped_ptr<HmacSession> GetHmacSession() const = 0;
mock_hmac_session.h 28 class MockHmacSession : public HmacSession {
trunks_factory_for_test.h 40 class HmacSession;
70 scoped_ptr<HmacSession> GetHmacSession() const override;
96 void set_hmac_session(HmacSession* hmac_session) {
120 HmacSession* hmac_session_;
hmac_session_impl.h 34 // This class implements the HmacSession interface. It is used for
47 class TRUNKS_EXPORT HmacSessionImpl: public HmacSession {
55 // HmacSession methods.
72 // HmacSession.
trunks_factory_impl.cc 83 scoped_ptr<HmacSession> TrunksFactoryImpl::GetHmacSession() const {
84 return scoped_ptr<HmacSession>(new HmacSessionImpl(*this));
trunks_client_test.h 112 HmacSession* session);
trunks_factory_impl.h 53 scoped_ptr<HmacSession> GetHmacSession() const override;
trunks_client_test.cc 72 scoped_ptr<HmacSession> session = factory_->GetHmacSession();
101 scoped_ptr<HmacSession> session = factory_->GetHmacSession();
142 scoped_ptr<HmacSession> session = factory_->GetHmacSession();
170 scoped_ptr<HmacSession> session = factory_->GetHmacSession();
200 scoped_ptr<HmacSession> session = factory_->GetHmacSession();
242 scoped_ptr<HmacSession> session = factory_->GetHmacSession();
299 scoped_ptr<HmacSession> session = factory_->GetHmacSession();
365 scoped_ptr<HmacSession> session = factory_->GetHmacSession();
424 scoped_ptr<HmacSession> hmac_session = factory_->GetHmacSession();
551 scoped_ptr<HmacSession> hmac_session = factory_->GetHmacSession()
    [all...]
trunks_factory_for_test.cc 298 TPM_RC StartSession(HmacSession* session) override {
416 class HmacSessionForwarder : public HmacSession {
418 explicit HmacSessionForwarder(HmacSession* target): target_(target) {}
446 HmacSession* target_;
583 scoped_ptr<HmacSession> TrunksFactoryForTest::GetHmacSession() const {
584 return scoped_ptr<HmacSession>(new HmacSessionForwarder(hmac_session_));
mock_tpm_utility.h 107 MOCK_METHOD1(StartSession, TPM_RC(HmacSession*));
tpm_utility.h 192 // |use_only_policy_authorization| specifies if we can use HmacSession in
241 // This method sets up a given HmacSession with parameter encryption set to
243 virtual TPM_RC StartSession(HmacSession* session) = 0;
tpm_utility_impl.h 120 TPM_RC StartSession(HmacSession* session) override;
tpm_utility_impl.cc 272 scoped_ptr<HmacSession> session = factory_.GetHmacSession();
    [all...]
  /system/tpm/tpm_manager/server/
tpm2_nvram_impl.h 68 scoped_ptr<trunks::HmacSession> trunks_session_;

Completed in 348 milliseconds