Modify to get encryption key requested by osp security team
[framework/web/wrt-commons.git] / modules / encryption / src / resource_encryption.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_encryption.cpp
18  * @author  Soyoung Kim (sy037.kim@samsung.com)
19  * @version 1.0
20  * @brief   Implementation file for resource encryption
21  */
22 #include <stddef.h>
23 #include <dpl/encryption/resource_encryption.h>
24
25 #include <fcntl.h>
26 #include <dpl/log/log.h>
27 #include <dukgen.h>
28
29 namespace {
30 #define BITS_SIZE 128
31 #define KEY_SIZE 16
32 }
33 namespace WRTEncryptor {
34 ResourceEncryptor::ResourceEncryptor()
35 {
36     LogDebug("Started Encrytion");
37 }
38
39 ResourceEncryptor::~ResourceEncryptor()
40 {
41     LogDebug("Finished Encrytion");
42 }
43
44 int ResourceEncryptor::GetBlockSize(int inSize)
45 {
46     if ((inSize % AES_BLOCK_SIZE) != 0) {
47         return (( inSize / AES_BLOCK_SIZE) + 1) * AES_BLOCK_SIZE;
48     }
49     return inSize;
50 }
51
52 void ResourceEncryptor::CreateEncryptionKey(std::string userKey)
53 {
54     if (userKey.empty()) {
55         return;
56     }
57
58     char* pKey = GetDeviceUniqueKey(const_cast<char*>(userKey.c_str()),
59             userKey.size(), KEY_SIZE);
60     unsigned char *key = reinterpret_cast<unsigned char*>(pKey);
61
62     if (0 > AES_set_encrypt_key(key, BITS_SIZE, &m_encKey)) {
63         ThrowMsg(ResourceEncryptor::Exception::CreateEncKeyFailed,
64                  "Failed to create encryption key");
65     }
66     LogDebug("Success to create ecryption and decryption key");
67 }
68
69 AES_KEY ResourceEncryptor::GetEncryptionkey()
70 {
71     return m_encKey;
72 }
73
74 void ResourceEncryptor::EncryptChunk(unsigned char*
75                                      inputBuf,
76                                      unsigned char* encBuf,
77                                      size_t chunkSize)
78 {
79     Assert(inputBuf);
80     Assert(encBuf);
81
82     unsigned char ivec[16] = { 0, };
83
84     AES_cbc_encrypt(inputBuf, encBuf, chunkSize, &m_encKey, ivec, AES_ENCRYPT);
85 }
86 } //namespace ResourceEnc