blob: ae29bdde0c6aa97017d13a81cc2e1d4865c7f31d [file] [log] [blame]
John Wedig2098dab2021-09-14 13:56:28 -07001
2#include "estoraged.hpp"
3
4#include <iostream>
5#include <vector>
6
7namespace estoraged
8{
9
10void eStoraged::format(std::vector<uint8_t>)
11{
12 std::cerr << "Formatting encrypted eMMC" << std::endl;
13}
14
15void eStoraged::erase(std::vector<uint8_t>, EraseMethod)
16{
17 std::cerr << "Erasing encrypted eMMC" << std::endl;
18}
19
20void eStoraged::lock(std::vector<uint8_t>)
21{
22 std::cerr << "Locking encrypted eMMC" << std::endl;
23}
24
25void eStoraged::unlock(std::vector<uint8_t>)
26{
27 std::cerr << "Unlocking encrypted eMMC" << std::endl;
28}
29
30void eStoraged::changePassword(std::vector<uint8_t>, std::vector<uint8_t>)
31{
32 std::cerr << "Changing password for encrypted eMMC" << std::endl;
33}
34
35} // namespace estoraged