OCSP implementation.
[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 };
43
44 enum class LogicCommand : int {
45     GET,
46     GET_LIST,
47     SAVE,
48     REMOVE,
49     CREATE_KEY_PAIR_RSA,
50     CREATE_KEY_PAIR_ECDSA,
51     GET_CHAIN_CERT,
52     GET_CHAIN_ALIAS,
53     CREATE_SIGNATURE,
54     VERIFY_SIGNATURE
55 };
56
57 // Do not use DB_KEY_FIRST and DB_KEY_LAST in the code.
58 // This values are only for db module!
59 enum class DBDataType : int {
60     KEY_RSA_PUBLIC,
61     DB_KEY_FIRST = KEY_RSA_PUBLIC,
62     KEY_RSA_PRIVATE,
63     KEY_ECDSA_PUBLIC,
64     KEY_ECDSA_PRIVATE,
65     KEY_AES,
66     DB_KEY_LAST = KEY_AES,
67     CERTIFICATE,
68     BINARY_DATA
69 };
70
71 DBDataType toDBDataType(KeyType key);
72 KeyType toKeyType(DBDataType dbDataType);
73
74 class IStream;
75
76 struct PolicySerializable : public Policy, ISerializable {
77     PolicySerializable();
78     explicit PolicySerializable(const Policy &);
79     explicit PolicySerializable(IStream &);
80     void Serialize(IStream &) const;
81 };
82
83 } // namespace CKM
84