diff options
Diffstat (limited to 'src/libstore/crypto.hh')
-rw-r--r-- | src/libstore/crypto.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/crypto.hh b/src/libstore/crypto.hh index eb299b90f52b..9110af3aa9e5 100644 --- a/src/libstore/crypto.hh +++ b/src/libstore/crypto.hh @@ -12,7 +12,7 @@ struct Key std::string key; /* Construct Key from a string in the format - '<name>:<key-in-base64>'. */ + ‘<name>:<key-in-base64>’. */ Key(const std::string & s); protected: @@ -44,7 +44,7 @@ private: typedef std::map<std::string, PublicKey> PublicKeys; -/* Return true iff 'sig' is a correct signature over 'data' using one +/* Return true iff ‘sig’ is a correct signature over ‘data’ using one of the given public keys. */ bool verifyDetached(const std::string & data, const std::string & sig, const PublicKeys & publicKeys); |