summaryrefslogtreecommitdiffstats
path: root/xbmc/interfaces/legacy/DrmCryptoSession.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/interfaces/legacy/DrmCryptoSession.cpp')
-rw-r--r--xbmc/interfaces/legacy/DrmCryptoSession.cpp108
1 files changed, 108 insertions, 0 deletions
diff --git a/xbmc/interfaces/legacy/DrmCryptoSession.cpp b/xbmc/interfaces/legacy/DrmCryptoSession.cpp
new file mode 100644
index 0000000..26f69be
--- /dev/null
+++ b/xbmc/interfaces/legacy/DrmCryptoSession.cpp
@@ -0,0 +1,108 @@
+/*
+ * Copyright (C) 2005-2018 Team Kodi
+ * This file is part of Kodi - https://kodi.tv
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ * See LICENSES/README.md for more information.
+ */
+
+#include "DrmCryptoSession.h"
+
+#include "media/drm/CryptoSession.h"
+
+using namespace XbmcCommons;
+
+namespace XBMCAddon
+{
+ namespace xbmcdrm
+ {
+ CryptoSession::CryptoSession(const String& UUID,
+ const String& cipherAlgorithm,
+ const String& macAlgorithm)
+ : m_cryptoSession(DRM::CCryptoSession::GetCryptoSession(UUID, cipherAlgorithm, macAlgorithm))
+ {
+ }
+
+ CryptoSession::~CryptoSession()
+ {
+ delete m_cryptoSession;
+ }
+
+ Buffer CryptoSession::GetKeyRequest(const Buffer &init, const String &mimeType, bool offlineKey, const std::map<String, String> &parameters)
+ {
+ if (m_cryptoSession)
+ return m_cryptoSession->GetKeyRequest(init, mimeType, offlineKey, parameters);
+
+ return Buffer();
+ }
+
+ String CryptoSession::GetPropertyString(const String &name)
+ {
+ if (m_cryptoSession)
+ return m_cryptoSession->GetPropertyString(name);
+
+ return "";
+ }
+
+ String CryptoSession::ProvideKeyResponse(const Buffer &response)
+ {
+ if (m_cryptoSession)
+ return m_cryptoSession->ProvideKeyResponse(response);
+
+ return "";
+ }
+
+ void CryptoSession::RemoveKeys()
+ {
+ if (m_cryptoSession)
+ m_cryptoSession->RemoveKeys();
+ }
+
+ void CryptoSession::RestoreKeys(const String& keySetId)
+ {
+ if (m_cryptoSession)
+ m_cryptoSession->RestoreKeys(keySetId);
+ }
+
+ void CryptoSession::SetPropertyString(const String &name, const String &value)
+ {
+ if (m_cryptoSession)
+ return m_cryptoSession->SetPropertyString(name, value);
+ }
+
+ /*******************Crypto section *****************/
+
+ Buffer CryptoSession::Decrypt(const Buffer &cipherKeyId, const Buffer &input, const Buffer &iv)
+ {
+ if (m_cryptoSession)
+ return m_cryptoSession->Decrypt(cipherKeyId, input, iv);
+
+ return Buffer();
+ }
+
+ Buffer CryptoSession::Encrypt(const Buffer &cipherKeyId, const Buffer &input, const Buffer &iv)
+ {
+ if (m_cryptoSession)
+ return m_cryptoSession->Encrypt(cipherKeyId, input, iv);
+
+ return Buffer();
+ }
+
+ Buffer CryptoSession::Sign(const Buffer &macKeyId, const Buffer &message)
+ {
+ if (m_cryptoSession)
+ return m_cryptoSession->Sign(macKeyId, message);
+
+ return Buffer();
+ }
+
+ bool CryptoSession::Verify(const Buffer &macKeyId, const Buffer &message, const Buffer &signature)
+ {
+ if (m_cryptoSession)
+ return m_cryptoSession->Verify(macKeyId, message, signature);
+
+ return false;
+ }
+
+ } //namespace xbmcdrm
+} //namespace XBMCAddon