Service 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
35 enum class ControlCommand : int {
36     UNLOCK_USER_KEY,
37     LOCK_USER_KEY,
38     REMOVE_USER_DATA,
39     CHANGE_USER_PASSWORD,
40     RESET_USER_PASSWORD
41 };
42
43 enum class LogicCommand : int {
44     GET,
45     SAVE,
46     REMOVE,
47 };
48
49 enum class DBDataType : int {
50     KEY_RSA_PUBLIC,
51     KEY_RSA_PRIVATE,
52     KEY_ECDSA_PUBLIC,
53     KEY_ECDSA_PRIVATE,
54     KEY_AES,
55     CERTIFICATE,
56     BINARY_DATA
57 };
58
59 DBDataType toDBDataType(KeyType key);
60 KeyType toKeyType(DBDataType dbDataType);
61
62 class IStream;
63
64 struct PolicySerializable : public Policy, ISerializable {
65     PolicySerializable();
66     explicit PolicySerializable(const Policy &);
67     explicit PolicySerializable(IStream &);
68     void Serialize(IStream &) const;
69 };
70
71 } // namespace CKM
72