aboutsummaryrefslogtreecommitdiff
path: root/src/crypt.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/crypt.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/crypt.h b/src/crypt.h
new file mode 100644
index 0000000..1ea1b85
--- /dev/null
+++ b/src/crypt.h
@@ -0,0 +1,12 @@
1#ifndef BU_CRYPT_H
2#define BU_CRYPT_H
3
4#include "bu/fstring.h"
5
6namespace Bu
7{
8 FString cryptPass( const FString &sPass, const FString &sSalt );
9 FString cryptPass( const FString &sPass );
10};
11
12#endif