2ec612e8d276d711226701df4e0ce877fd0fc9b7
[framework/web/wrt-commons.git] / modules / encryption / src / resource_decryption.cpp
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 /*
17  * @file    resource_decryption.cpp
18  * @author  Soyoung Kim (sy037.kim@samsung.com)
19  * @version 1.0
20  * @brief   Implementation file for resource decryption
21  */
22 #include <stddef.h>
23 #include <dpl/encryption/resource_decryption.h>
24
25 #include <fcntl.h>
26 #include <string>
27 #include <dpl/log/log.h>
28 #include <dpl/exception.h>
29
30 namespace {
31 #define BITS_SIZE 128
32 #define KEY_SIZE 16
33 }
34 namespace WRTDecryptor {
35 ResourceDecryptor::ResourceDecryptor()
36 {
37     LogDebug("Started Decryption");
38 }
39
40 ResourceDecryptor::ResourceDecryptor(std::string userKey)
41 {
42     LogDebug("Finished Decryption");
43     SetDecryptionKey(userKey);
44 }
45
46 ResourceDecryptor::~ResourceDecryptor()
47 {}
48
49 void ResourceDecryptor::SetDecryptionKey(std::string userKey)
50 {
51     if (userKey.empty()) {
52         return;
53     }
54
55     char **duk = calculate(const_cast<char*>(userKey.c_str()),
56                            userKey.size(), KEY_SIZE);
57     unsigned char *key = reinterpret_cast<unsigned char*>(*duk);
58
59     if (0 > AES_set_decrypt_key(key, BITS_SIZE, &m_decKey)) {
60         ThrowMsg(ResourceDecryptor::Exception::GetDecKeyFailed,
61                  "Failed to create decryption key");
62     }
63 }
64
65 AES_KEY* ResourceDecryptor::GetDecryptionKey()
66 {
67     return &m_decKey;
68 }
69
70 void ResourceDecryptor::GetDecryptedChunk(unsigned char*
71                                           inBuf,
72                                           unsigned char* decBuf,
73                                           size_t inBufSize)
74 {
75     Assert(decBuf);
76     if (decBuf == NULL) {
77         ThrowMsg(ResourceDecryptor::Exception::EncryptionFailed,
78                  "Failed to Get Decryption Chunk");
79     }
80     unsigned char ivec[16] = { 0, };
81
82     AES_cbc_encrypt(inBuf, decBuf, inBufSize, &m_decKey, ivec, AES_DECRYPT);
83     LogDebug("Success decryption");
84 }
85 } //namespace WRTDecryptor