Desafio Labsec (SGC)
FirstMilestone.h
Go to the documentation of this file.
1 #ifndef FIRSTMILESTONE_H
2 #define FIRSTMILESTONE_H
3 
4 #include <libcryptosec/MessageDigest.h>
5 #include <libcryptosec/ByteArray.h>
6 
7 #include "utils/FileIo.h"
8 #include "utils/trace.h"
9 #include "utils/paths.h"
10 #include "utils/macros.h"
33 
34 public:
35  virtual ~FirstMilestone();
36 
40  ByteArray computeHash();
41 };
42 #endif /*FIRSTMILESTONE_H*/
ByteArray computeHash()
Definition: FirstMilestone.cpp:5
virtual ~FirstMilestone()
Definition: FirstMilestone.cpp:3
First Milestone - Obtain the Hash of a document.
Definition: FirstMilestone.h:32