Raspberry Cloud
ConcreteEncryption.h
1 #ifndef _CONCRETEENCRYPTION_H
2 #define _CONCRETEENCRYPTION_H
3 
4 #include <string>
5 #include "HomeNetworkEncryption.h"
6 using namespace std;
7 
14 public:
15 
20  string encrypt(string fileID);
21 
26  string decrypt(string fileID);
27 };
28 
29 #endif //_CONCRETEENCRYPTION_H
Definition: ConcreteEncryption.h:13
Definition: HomeNetworkEncryption.h:12