diff options
Diffstat (limited to 'arm9/lib/include/dgt.h')
-rw-r--r-- | arm9/lib/include/dgt.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arm9/lib/include/dgt.h b/arm9/lib/include/dgt.h index 5e63f3f7..a764e85a 100644 --- a/arm9/lib/include/dgt.h +++ b/arm9/lib/include/dgt.h @@ -27,4 +27,11 @@ struct DGTHash2Context { int Corrupted; }; +void DGT_Hash1Reset(struct DGTHash1Context *context); +void DGT_Hash1SetSource(struct DGTHash1Context *context, u8 *input, u32 length); +void DGT_Hash1GetDigest_R(u8 *digest, struct DGTHash1Context *context); +void DGT_Hash2Reset(struct DGTHash2Context *context); +void DGT_Hash2SetSource(struct DGTHash2Context *context, u8 *input, u32 length); +void DGT_Hash2GetDigest(struct DGTHash2Context *context, u8 *digest); + #endif |