libdecaf
eddsa.hxx
Go to the documentation of this file.
1 
15 #ifndef __DECAF_EDDSA_HXX__
16 #define __DECAF_EDDSA_HXX__ 1
17 
19 namespace decaf {
21  enum Prehashed {
22  PURE,
23  PREHASHED
24  };
25 }
26 
27 #include <decaf/ed255.hxx>
28 #include <decaf/ed448.hxx>
29 
30 #endif /* __DECAF_EDDSA_HXX__ */
Namespace for all libdecaf C++ objects.
Definition: ed255.hxx:41
Prehashed
How signatures handle hashing.
Definition: eddsa.hxx:21
@ PURE
Sign the message itself.
Definition: eddsa.hxx:22
@ PREHASHED
Sign the hash of the message.
Definition: eddsa.hxx:23