Revert "Implementation of ExtensionEncryption with CryptsetupEngine"
[platform/core/security/ode.git] / server / extension-encryption.cpp
1 /*
2  *  Copyright (c) 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 #include "rmi/extension-encryption.h"
18
19 namespace ode {
20
21 ExtensionEncryption::ExtensionEncryption(ODEControlContext &ctx) :
22         context(ctx)
23 {
24 }
25
26 ExtensionEncryption::~ExtensionEncryption()
27 {
28 }
29
30 int ExtensionEncryption::mount(const std::string& password)
31 {
32         return -1;
33 }
34
35 int ExtensionEncryption::umount()
36 {
37         return -1;
38 }
39
40 int ExtensionEncryption::format(const std::string &password)
41 {
42         return -1;
43 }
44
45 int ExtensionEncryption::isPasswordInitialized()
46 {
47         return -1;
48 }
49
50 int ExtensionEncryption::initPassword(const std::string& password)
51 {
52         return -1;
53 }
54
55 int ExtensionEncryption::cleanPassword(const std::string& password)
56 {
57         return -1;
58 }
59
60 int ExtensionEncryption::changePassword(const std::string &oldPassword,
61                                                                            const std::string &newPassword)
62 {
63         return -1;
64 }
65
66 int ExtensionEncryption::verifyPassword(const std::string& password)
67 {
68         return -1;
69 }
70
71 int ExtensionEncryption::getState()
72 {
73         return -1;
74 }
75
76 } // namespace ode