1f10fdbd62c5f1d6657fb1542ce67d343dc7728f
[framework/web/wrt-commons.git] / modules / encryption / include / dpl / encryption / resource_decryption.h
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.h
18  * @author  Soyoung Kim (sy037.kim@samsung.com)
19  * @version 1.0
20  * @brief   Header file for resource decryption
21  */
22 #ifndef RESOURCE_DECRYPTION_H
23 #define RESOURCE_DECRYPTION_H
24
25 #include <string.h>
26 #include <string>
27 #include <openssl/aes.h>
28 #include <openssl/sha.h>
29 #include <dpl/exception.h>
30
31 namespace WRTDecryptor {
32 class ResourceDecryptor
33 {
34   public:
35     class Exception
36     {
37       public:
38         DECLARE_EXCEPTION_TYPE(DPL::Exception, Base)
39         DECLARE_EXCEPTION_TYPE(Base, GetDecKeyFailed)
40         DECLARE_EXCEPTION_TYPE(Base, EncryptionFailed)
41     };
42
43     ResourceDecryptor();
44     ResourceDecryptor(std::string userKey);
45     virtual ~ResourceDecryptor();
46
47     void SetDecryptionKey(std::string userKey);
48     void GetDecryptedChunk(unsigned char* inBuf,
49                            unsigned char* decBuf,
50                            size_t chunkSize);
51
52     /* TrustZone */
53     int DecryptChunkByTrustZone(
54             std::string pkgid,
55             const unsigned char *inBuffer,
56             int inBufSize);
57     void getDecryptStringByTrustZone(unsigned char *decBuffer);
58
59   private:
60     AES_KEY* GetDecryptionKey();
61     AES_KEY m_decKey;
62     void *m_getBuffer;
63 };
64 } //namespace WRTDecryptor
65
66 #endif /* RESOURCE_DECRYPTION_H */