The back-end implementation of an in-memory TPM. More...
#include <back-end-mem.hpp>
Classes | |
class | Impl |
Public Member Functions | |
BackEndMem (const std::string &location="") | |
Create memory-based TPM backend. More... | |
~BackEndMem () final | |
Public Member Functions inherited from ndn::security::tpm::BackEnd | |
virtual | ~BackEnd () |
bool | hasKey (const Name &keyName) const |
Check if the key with name keyName exists in the TPM. More... | |
unique_ptr< KeyHandle > | getKeyHandle (const Name &keyName) const |
Get the handle of the key with name keyName . More... | |
unique_ptr< KeyHandle > | createKey (const Name &identityName, const KeyParams ¶ms) |
Create a key for identityName according to params . More... | |
void | deleteKey (const Name &keyName) |
Delete the key with name keyName . More... | |
ConstBufferPtr | exportKey (const Name &keyName, const char *pw, size_t pwLen) |
Get the private key with name keyName in encrypted PKCS #8 format. More... | |
void | importKey (const Name &keyName, span< const uint8_t > pkcs8, const char *pw, size_t pwLen) |
Import a private key in encrypted PKCS #8 format. More... | |
void | importKey (const Name &keyName, shared_ptr< transform::PrivateKey > key) |
Import a private key. More... | |
virtual bool | isTerminalMode () const |
Check if the TPM is in terminal mode. More... | |
virtual void | setTerminalMode (bool isTerminal) const |
Set the terminal mode of the TPM. More... | |
virtual bool | isTpmLocked () const |
Check if the TPM is locked. More... | |
virtual NDN_CXX_NODISCARD bool | unlockTpm (const char *pw, size_t pwLen) const |
Unlock the TPM. More... | |
Static Public Member Functions | |
static const std::string & | getScheme () |
Additional Inherited Members | |
Public Types inherited from ndn::security::tpm::BackEnd | |
using | Error = Tpm::Error |
Protected Member Functions inherited from ndn::security::tpm::BackEnd | |
Name | constructAsymmetricKeyName (const KeyHandle &key, const Name &identity, const KeyParams ¶ms) const |
Construct and return the name of a RSA or EC key, based on identity and params . More... | |
Name | constructHmacKeyName (const transform::PrivateKey &key, const Name &identity, const KeyParams ¶ms) const |
Construct and return the name of a HMAC key, based on identity and params . More... | |
The back-end implementation of an in-memory TPM.
Definition at line 34 of file back-end-mem.hpp.
|
explicit |
Create memory-based TPM backend.
location | Not used (required by the TPM registration interface). |
Definition at line 43 of file back-end-mem.cpp.
References ~BackEndMem().
|
finaldefault |
Referenced by BackEndMem().
|
static |
Definition at line 51 of file back-end-mem.cpp.
References ndn::OBufferStream::buf(), ndn::security::tpm::BackEnd::constructAsymmetricKeyName(), ndn::security::tpm::BackEnd::constructHmacKeyName(), ndn::EC, ndn::security::transform::generatePrivateKey(), ndn::KeyParams::getKeyType(), ndn::HMAC, nonstd::optional_lite::std11::move(), NDN_THROW, NDN_THROW_NESTED, and ndn::RSA.