aboutsummaryrefslogtreecommitdiff
path: root/src/crypt.h
blob: 1ea1b85384a9446bc54c200f12c968e115df49a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef BU_CRYPT_H
#define BU_CRYPT_H

#include "bu/fstring.h"

namespace Bu
{
	FString cryptPass( const FString &sPass, const FString &sSalt );
	FString cryptPass( const FString &sPass );
};

#endif