security: Move KeyChain to security::v1 namespace and deprecated it
Change-Id: Ic4b6915ca15998a83b410f3f8fac027f797ee7ca
Refs: #3098
diff --git a/tests/identity-management-fixture.hpp b/tests/identity-management-fixture.hpp
index d792a3f..f96a24c 100644
--- a/tests/identity-management-fixture.hpp
+++ b/tests/identity-management-fixture.hpp
@@ -22,7 +22,7 @@
#ifndef NDN_TESTS_IDENTITY_MANAGEMENT_FIXTURE_HPP
#define NDN_TESTS_IDENTITY_MANAGEMENT_FIXTURE_HPP
-#include "security/key-chain.hpp"
+#include "security/v1/key-chain.hpp"
#include "security/signing-helpers.hpp"
#include <vector>
@@ -46,7 +46,7 @@
/// @brief add identity, return true if succeed.
bool
- addIdentity(const Name& identity, const KeyParams& params = KeyChain::DEFAULT_KEY_PARAMS);
+ addIdentity(const Name& identity, const KeyParams& params = security::v1::KeyChain::DEFAULT_KEY_PARAMS);
/**
* @brief save identity certificate to a file
@@ -68,10 +68,10 @@
*/
bool
addSubCertificate(const Name& identity, const Name& issuer,
- const KeyParams& params = KeyChain::DEFAULT_KEY_PARAMS);
+ const KeyParams& params = security::v1::KeyChain::DEFAULT_KEY_PARAMS);
protected:
- KeyChain m_keyChain;
+ security::v1::KeyChain m_keyChain;
private:
std::vector<Name> m_identities;