Tizen 2.1 base
[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
50 void ResourceDecryptor::SetDecryptionKey(std::string userKey)
51 {
52     if (userKey.empty()) {
53         return;
54     }
55
56     char **duk = calculate(const_cast<char*>(userKey.c_str()), 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, unsigned char* decBuf, size_t inBufSize)
72 {
73     Assert(decBuf);
74     if (decBuf == NULL) {
75         ThrowMsg(ResourceDecryptor::Exception::EncryptionFailed,
76                 "Failed to Get Decryption Chunk");
77     }
78     unsigned char ivec[16] = {0, };
79
80     AES_cbc_encrypt(inBuf, decBuf, inBufSize, &m_decKey, ivec, AES_DECRYPT);
81     LogDebug("Success decryption");
82 }
83
84 } //namespace WRTDecryptor