26 #ifndef NDN_SECURITY_SEC_TPM_FILE_HPP 27 #define NDN_SECURITY_SEC_TPM_FILE_HPP 29 #include "../common.hpp" 68 m_inTerminal = inTerminal;
84 unlockTpm(
const char* password,
size_t passwordLength,
bool usePassword)
95 virtual shared_ptr<v1::PublicKey>
99 signInTpm(
const uint8_t* data,
size_t dataLength,
103 decryptInTpm(
const uint8_t* data,
size_t dataLength,
const Name& keyName,
bool isSymmetric);
106 encryptInTpm(
const uint8_t* data,
size_t dataLength,
const Name& keyName,
bool isSymmetric);
143 unique_ptr<Impl> m_impl;
153 #endif // NDN_SECURITY_SEC_TPM_FILE_HPP virtual void setInTerminal(bool inTerminal)
Set inTerminal flag to inTerminal.
Copyright (c) 2011-2015 Regents of the University of California.
virtual bool generateRandomBlock(uint8_t *res, size_t size)
Generate a random block.
static const std::string SCHEME
virtual void generateKeyPairInTpm(const Name &keyName, const KeyParams ¶ms)
Generate a pair of asymmetric keys.
virtual bool unlockTpm(const char *password, size_t passwordLength, bool usePassword)
Unlock the TPM.
virtual ConstBufferPtr encryptInTpm(const uint8_t *data, size_t dataLength, const Name &keyName, bool isSymmetric)
Encrypt data.
SecTpm is the base class of the TPM classes.
virtual std::string getScheme()
Class representing a wire element of NDN-TLV packet format.
virtual void addAppToAcl(const Name &keyName, KeyClass keyClass, const std::string &appPath, AclType acl)
Add the application into the ACL of a particular key.
virtual bool getInTerminal() const
Get value of inTerminal flag.
virtual bool importPublicKeyPkcs1IntoTpm(const Name &keyName, const uint8_t *buf, size_t size)
Import a public key in PKCS#1 formatted buffer of size bufferSize.
virtual ConstBufferPtr decryptInTpm(const uint8_t *data, size_t dataLength, const Name &keyName, bool isSymmetric)
Decrypt data.
virtual bool isLocked()
Check if TPM is locked.
Error(const std::string &what)
virtual bool importPrivateKeyPkcs8IntoTpm(const Name &keyName, const uint8_t *buf, size_t size)
Import a private key from PKCS#8 formatted buffer of size bufferSize.
virtual void setTpmPassword(const uint8_t *password, size_t passwordLength)
set password of TPM
virtual void generateSymmetricKeyInTpm(const Name &keyName, const KeyParams ¶ms)
Generate a symmetric key.
virtual Block signInTpm(const uint8_t *data, size_t dataLength, const Name &keyName, DigestAlgorithm digestAlgorithm)
Sign data.
virtual shared_ptr< v1::PublicKey > getPublicKeyFromTpm(const Name &keyName)
Get a public key.
virtual void deleteKeyPairInTpm(const Name &keyName)
Delete a key pair of asymmetric keys.
virtual void resetTpmPassword()
reset password of TPM
Name abstraction to represent an absolute name.
SecTpmFile(const std::string &dir="")
Base class of key parameters.
shared_ptr< const Buffer > ConstBufferPtr
virtual bool doesKeyExistInTpm(const Name &keyName, KeyClass keyClass)
Check if a particular key exists.
virtual ConstBufferPtr exportPrivateKeyPkcs8FromTpm(const Name &keyName)
Export a private key in PKCS#8 format.