| 15 | } |
| 16 | |
| 17 | FSecure::SecureString FSecure::Crypto::String::Decrypt() |
| 18 | { |
| 19 | auto tmp = m_Data.empty() ? ByteVector{} : DecryptFromAnonymous(m_Data, m_Key); |
| 20 | return { tmp.begin(), tmp.end() }; |
| 21 | } |
| 22 | |
| 23 | FSecure::Crypto::String& FSecure::Crypto::String::operator=(std::string_view sv) |
| 24 | { |
no test coverage detected