Merge "Migrate to openssl3" into tizen
[platform/core/security/ode.git] / lib / internal-encryption.h
1 /*
2  *  Copyright (c) 2015-2017 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
17 #ifndef __INTERNAL_ENCRYPTION_CLIENT_H__
18 #define __INTERNAL_ENCRYPTION_CLIENT_H__
19
20 #include <string>
21 #include <vector>
22
23 #include "rmi/internal-encryption.h"
24 #include "client.h"
25
26 namespace ode {
27
28 class InternalEncryptionClient final: public InternalEncryption {
29 public:
30         InternalEncryptionClient(RmiClientPtr& ctxt);
31         ~InternalEncryptionClient();
32
33         int setMountPassword(const std::string& password);
34
35         int mount(const std::vector<unsigned char> &mk, unsigned int options);
36         int umount();
37         int isMounted();
38
39         int prepareEncryption(unsigned int options);
40         int prepareDecryption();
41
42         int encrypt(const std::string& password, unsigned int options = 0);
43         int decrypt(const std::string& password);
44
45         int recovery();
46
47         int isPasswordInitialized();
48         int initPassword(const std::string& password);
49         int cleanPassword(const std::string& password);
50         int changePassword(const std::string& oldPW, const std::string& newPW);
51         int verifyPassword(const std::string& password);
52
53         int getState();
54
55         unsigned int getSupportedOptions();
56
57         std::string getDevicePath() const;
58
59 private:
60         RmiClientPtr& context;
61 };
62
63 } // namespace ode
64
65 #endif // __INTERNAL_ENCRYPTION_CLIENT_H__