071471307575d6ddaefd0aa987f9c6c264c3f2be
[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
36 enum class ControlCommand : int {
37     UNLOCK_USER_KEY,
38     LOCK_USER_KEY,
39     REMOVE_USER_DATA,
40     CHANGE_USER_PASSWORD,
41     RESET_USER_PASSWORD,
42     REMOVE_APP_DATA,
43     SET_CC_MODE
44 };
45
46 enum class LogicCommand : int {
47     GET,
48     GET_LIST,
49     SAVE,
50     REMOVE,
51     CREATE_KEY_PAIR_RSA,
52     CREATE_KEY_PAIR_ECDSA,
53     GET_CHAIN_CERT,
54     GET_CHAIN_ALIAS,
55     CREATE_SIGNATURE,
56     VERIFY_SIGNATURE,
57     CREATE_KEY_PAIR_DSA,
58     ALLOW_ACCESS,
59     DENY_ACCESS,
60     // for backward compatibility append new on the end
61 };
62
63 // Do not use DB_KEY_FIRST and DB_KEY_LAST in the code.
64 // This values are only for db module!
65 enum class DBDataType : int {
66     KEY_RSA_PUBLIC,
67     DB_KEY_FIRST = KEY_RSA_PUBLIC,
68     KEY_RSA_PRIVATE,
69     KEY_ECDSA_PUBLIC,
70     KEY_ECDSA_PRIVATE,
71     KEY_DSA_PUBLIC,
72     KEY_DSA_PRIVATE,
73     KEY_AES,
74     DB_KEY_LAST = KEY_AES,
75     CERTIFICATE,
76     BINARY_DATA,
77 };
78
79 DBDataType toDBDataType(KeyType key);
80 KeyType toKeyType(DBDataType dbDataType);
81 const char* toDBAccessRight(AccessRight access_right_type);
82
83 class IStream;
84
85 struct PolicySerializable : public Policy, ISerializable {
86     PolicySerializable();
87     explicit PolicySerializable(const Policy &);
88     explicit PolicySerializable(IStream &);
89     void Serialize(IStream &) const;
90 };
91
92 } // namespace CKM
93