disallow copying
| 112 | public: |
| 113 | // disallow copying |
| 114 | CryptContext(CryptContext const&) = delete; |
| 115 | void operator=(CryptContext const&) = delete; |
| 116 | |
| 117 | bool IsCaseInsensitive() { return m_caseinsensitive && !m_config->m_reverse && !m_config->m_PlaintextNames; }; |
nothing calls this directly
no outgoing calls
no test coverage detected