commit | 2105dbebbba69becf0dc42f0d13bbe2babb290c9 | [log] [tgz] |
---|---|---|
author | Jeff Thompson <jefft0@gmail.com> | Wed Dec 18 16:16:28 2013 -0800 |
committer | Jeff Thompson <jefft0@gmail.com> | Wed Dec 18 16:16:28 2013 -0800 |
tree | 051e82b38866ca7bd639a1bef03aa5571f8dab18 | |
parent | 7c4685d233ada8a01816877154f5cff0cd93dff5 [diff] |
security: internal: In Sha256WithRsaHandler, renamed verify to verifySignature.
diff --git a/include/ndn-cpp/security/signature/sha256-with-rsa-handler.hpp b/include/ndn-cpp/security/signature/sha256-with-rsa-handler.hpp index 4cc9f98..6627f02 100644 --- a/include/ndn-cpp/security/signature/sha256-with-rsa-handler.hpp +++ b/include/ndn-cpp/security/signature/sha256-with-rsa-handler.hpp
@@ -30,7 +30,7 @@ * @throw SecurityException if data does not have a Sha256WithRsaSignature. */ static bool - verify(const Data& data, const PublicKey& publicKey); + verifySignature(const Data& data, const PublicKey& publicKey); };