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