Files
SilentDragonXLite/src/Crypto/passwd.h
2020-05-23 15:23:07 +02:00

14 lines
237 B
C++

#ifndef PASSWD_H
#define PASSWD_H
#include <stdio.h>
#include <sodium.h>
#include <QString>
class PASSWD
{
public:
static void show_hex_buff(unsigned char buf[]);
static const unsigned char* hash(QString);
};
#endif