diff --git a/src/keyring.cpp b/src/keyring.cpp index de0d30c..bc7be9f 100644 --- a/src/keyring.cpp +++ b/src/keyring.cpp @@ -43,8 +43,8 @@ std::string keyring::get_keyid (const std::string&pubkey) cube256hash hf; std::vector tmp = hf (std::vector - (&pubkey[0], - &pubkey[pubkey.length()])); + (pubkey.data(), + pubkey.data() + pubkey.length())); r.resize (tmp.size() * 2, ' '); for (size_t i = 0; i < tmp.size(); ++i) {