176d6005e7245c67be0d305baf9b83256069f932
[platform/core/security/key-manager.git] / src / manager / common / protocols.h
1 /*
2  *  Copyright (c) 2000 - 2014 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  * @file        protocols.h
17  * @author      Bartlomiej Grzelewski (b.grzelewski@samsung.com)
18  * @author      Zofia Abramowska (z.abramowska@samsung.com)
19  * @version     1.0
20  * @brief       This file contains list of all protocols suported by Central
21  *              Key Manager.
22  */
23 #pragma once
24
25 #include <ckm/ckm-type.h>
26
27 #include <dpl/serialization.h>
28
29 namespace CKM {
30
31 extern char const * const SERVICE_SOCKET_ECHO;
32 extern char const * const SERVICE_SOCKET_CKM_CONTROL;
33 extern char const * const SERVICE_SOCKET_CKM_STORAGE;
34 extern char const * const SERVICE_SOCKET_OCSP;
35 extern char const * const LABEL_ALIAS_SEPARATOR;
36
37 enum class ControlCommand : int {
38     UNLOCK_USER_KEY,
39     LOCK_USER_KEY,
40     REMOVE_USER_DATA,
41     CHANGE_USER_PASSWORD,
42     RESET_USER_PASSWORD,
43     REMOVE_APP_DATA,
44     SET_CC_MODE,
45     ALLOW_ACCESS,
46     DENY_ACCESS,
47     // for backward compatibility append new at the end
48 };
49
50 enum class LogicCommand : int {
51     GET,
52     GET_LIST,
53     SAVE,
54     REMOVE,
55     CREATE_KEY_PAIR_RSA,
56     CREATE_KEY_PAIR_ECDSA,
57     GET_CHAIN_CERT,
58     GET_CHAIN_ALIAS,
59     CREATE_SIGNATURE,
60     VERIFY_SIGNATURE,
61     CREATE_KEY_PAIR_DSA,
62     ALLOW_ACCESS,
63     DENY_ACCESS,
64     // for backward compatibility append new at the end
65 };
66
67 // Do not use DB_KEY_FIRST and DB_KEY_LAST in the code.
68 // This values are only for db module!
69 enum class DBDataType : int {
70     KEY_RSA_PUBLIC,
71     DB_KEY_FIRST = KEY_RSA_PUBLIC,
72     KEY_RSA_PRIVATE,
73     KEY_ECDSA_PUBLIC,
74     KEY_ECDSA_PRIVATE,
75     KEY_DSA_PUBLIC,
76     KEY_DSA_PRIVATE,
77     KEY_AES,
78     DB_KEY_LAST = KEY_AES,
79     CERTIFICATE,
80     BINARY_DATA,
81 };
82
83 typedef std::vector<std::pair<std::string, Alias> > LabelAliasVector;
84
85 DBDataType toDBDataType(KeyType key);
86 KeyType toKeyType(DBDataType dbDataType);
87 const char* toDBAccessRight(AccessRight access_right_type);
88
89 class IStream;
90
91 struct PolicySerializable : public Policy, ISerializable {
92     PolicySerializable();
93     explicit PolicySerializable(const Policy &);
94     explicit PolicySerializable(IStream &);
95     void Serialize(IStream &) const;
96 };
97
98 } // namespace CKM
99