All password are stored in std::string now.
[platform/core/security/key-manager.git] / src / include / ckm / ckm-type.h
1 /*
2  *  Copyright (c) 2000 - 2013 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        ckm-type.h
18  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
19  * @version     1.0
20  * @brief       Sample service implementation.
21  */
22 #pragma once
23
24 #include <string>
25 #include <vector>
26
27 namespace CKM {
28
29 // used to pass password and raw key data
30 typedef std::vector<unsigned char> RawBuffer;
31 typedef std::string Alias;
32 typedef std::vector<Alias> AliasVector;
33
34 enum class KeyType : int {
35     KEY_NONE,
36     KEY_RSA_PUBLIC,
37     KEY_RSA_PRIVATE,
38     //        KEY_ECDSA_PUBLIC,
39     //        KEY_ECDSA_PRIVATE,
40     //        KEY_AES
41 };
42
43 struct Policy {
44     Policy(const std::string &pass = std::string(), bool extract = true, bool rest = false)
45       : password(pass)
46       , extractable(extract)
47       , restricted(rest)
48     {}
49     virtual ~Policy(){}
50     std::string password;  // byte array used to encrypt data inside CKM
51     bool extractable;  // if true key may be extracted from storage
52     bool restricted;   // if true only key owner may see data
53 };
54
55 // Added by Dongsun Lee
56 enum class HashAlgorithm : int {
57     SHA1,
58     SHA256,
59     SHA384,
60     SHA512
61 };
62
63 // Added by Dongsun Lee
64 enum class RSAPaddingAlgorithm : int {
65     XRSA_PKCS1_PADDING,
66     XRSA_SSLV23_PADDING,
67     XRSA_NO_PADDING,
68     XRSA_PKCS1_OAEP_PADDING,
69     XRSA_X931_PADDING
70 };
71
72 // Internal types
73 class KeyImpl;
74 class CertificateImpl;
75
76 } // namespace CKM
77