summaryrefslogtreecommitdiff
path: root/src/manager/crypto/tz-backend/store.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/manager/crypto/tz-backend/store.cpp')
-rw-r--r--src/manager/crypto/tz-backend/store.cpp20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/manager/crypto/tz-backend/store.cpp b/src/manager/crypto/tz-backend/store.cpp
index 8fd12f1f..e878b45f 100644
--- a/src/manager/crypto/tz-backend/store.cpp
+++ b/src/manager/crypto/tz-backend/store.cpp
@@ -27,28 +27,34 @@ namespace Crypto {
namespace TZ {
Store::Store(CryptoBackend backendId) :
- GStore(backendId)
+ GStore(backendId)
{
}
GObjUPtr Store::getObject(const Token &, const Password &)
{
- ThrowErr(Exc::Crypto::OperationNotSupported, "Trust zone backend is not implemented!");
+ ThrowErr(Exc::Crypto::OperationNotSupported,
+ "Trust zone backend is not implemented!");
}
-TokenPair Store::generateAKey(const CryptoAlgorithm &, const Password &, const Password &)
+TokenPair Store::generateAKey(const CryptoAlgorithm &, const Password &,
+ const Password &)
{
- ThrowErr(Exc::Crypto::OperationNotSupported, "Trust zone backend is not implemented!");
+ ThrowErr(Exc::Crypto::OperationNotSupported,
+ "Trust zone backend is not implemented!");
}
Token Store::import(const Data &, const Password &)
{
- ThrowErr(Exc::Crypto::OperationNotSupported, "Trust zone backend is not implemented!");
+ ThrowErr(Exc::Crypto::OperationNotSupported,
+ "Trust zone backend is not implemented!");
}
-Token Store::importEncrypted(const Data &, const Password &, const DataEncryption &)
+Token Store::importEncrypted(const Data &, const Password &,
+ const DataEncryption &)
{
- ThrowErr(Exc::Crypto::OperationNotSupported, "Trust zone backend is not implemented!");
+ ThrowErr(Exc::Crypto::OperationNotSupported,
+ "Trust zone backend is not implemented!");
}
} // namespace TZ