diff options
author | Sage Weil <sage@redhat.com> | 2015-01-27 00:49:10 +0100 |
---|---|---|
committer | Sage Weil <sage@redhat.com> | 2015-04-22 02:00:27 +0200 |
commit | ad5a1549f401af3eae38f5c4de24e7b952e40f7f (patch) | |
tree | 3f71cc4166444228e116ff8ea4d2264206771982 /src/common/ceph_context.h | |
parent | Merge pull request #4418 from oritwas/wip-11438 (diff) | |
download | ceph-ad5a1549f401af3eae38f5c4de24e7b952e40f7f.tar.xz ceph-ad5a1549f401af3eae38f5c4de24e7b952e40f7f.zip |
auth: make CryptoHandler implementations totally private
There is no need to expose these implementations outside Crypto.cc.
Signed-off-by: Sage Weil <sage@redhat.com>
Diffstat (limited to 'src/common/ceph_context.h')
-rw-r--r-- | src/common/ceph_context.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/common/ceph_context.h b/src/common/ceph_context.h index a8dfec55410..47aceb0f88e 100644 --- a/src/common/ceph_context.h +++ b/src/common/ceph_context.h @@ -32,8 +32,6 @@ class md_config_obs_t; struct md_config_t; class CephContextHook; class CephContextObs; -class CryptoNone; -class CryptoAES; class CryptoHandler; namespace ceph { @@ -165,8 +163,8 @@ private: std::map<std::string, AssociatedSingletonObject*> _associated_objs; // crypto - CryptoNone *_crypto_none; - CryptoAES *_crypto_aes; + CryptoHandler *_crypto_none; + CryptoHandler *_crypto_aes; // experimental CephContextObs *_cct_obs; |