security: Pair-up Tpm and Pib in KeyChain
In this commit, we also change the HOME setting for test cases.
Change-Id: I7fa15461555b3519d9d2005c6956c167ed07d66f
Refs: #2242
Refs: #2260
diff --git a/src/security/sec-tpm-osx.cpp b/src/security/sec-tpm-osx.cpp
index 9f722fd..593c586 100644
--- a/src/security/sec-tpm-osx.cpp
+++ b/src/security/sec-tpm-osx.cpp
@@ -47,6 +47,8 @@
using std::string;
+const std::string SecTpmOsx::SCHEME("tpm-osxkeychain:");
+
/**
* @brief Helper class to wrap CoreFoundation object pointers
*
@@ -236,9 +238,11 @@
bool m_inTerminal;
};
-SecTpmOsx::SecTpmOsx()
- : m_impl(new Impl)
+SecTpmOsx::SecTpmOsx(const std::string& location)
+ : SecTpm(location)
+ , m_impl(new Impl)
{
+ // TODO: add location support
if (m_impl->m_inTerminal)
SecKeychainSetUserInteractionAllowed(false);
else
@@ -250,8 +254,8 @@
throw Error("No default keychain, create one first!");
}
-SecTpmOsx::~SecTpmOsx(){
- //TODO: implement
+SecTpmOsx::~SecTpmOsx()
+{
}
void
@@ -525,6 +529,12 @@
return key;
}
+std::string
+SecTpmOsx::getScheme()
+{
+ return SCHEME;
+}
+
ConstBufferPtr
SecTpmOsx::exportPrivateKeyPkcs8FromTpmInternal(const Name& keyName, bool needRetry)
{