b5b0d1a5a14aa376edd19030a918940f072346ad
[platform/core/security/ode.git] / server / key-manager / key-generator.h
1 /*
2  *  Copyright (c) 2015 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 #ifndef __KEY_GENERATOR_H__
18 #define __KEY_GENERATOR_H__
19
20 #include <vector>
21
22 namespace ode {
23
24 class KeyGenerator final {
25 public:
26         KeyGenerator(int size);
27         KeyGenerator(const KeyGenerator&) = delete;
28         KeyGenerator(KeyGenerator&&) = delete;
29         ~KeyGenerator();
30
31         KeyGenerator& operator=(const KeyGenerator&) = delete;
32         KeyGenerator& operator=(KeyGenerator&&) = delete;
33
34         typedef std::vector<unsigned char> data;
35
36         const data PBKDF(const data& pass, const data& salt);
37         const data AES(const data& in1, const data& in2);
38         const data HMAC(const data& original, const data& key);
39         const data RNG();
40
41 private:
42         int keySize;
43 };
44
45 } // namespace ode
46 #endif // __KEY_GENERATOR_H__