blob: e87380d697a0299975d9021189c67c8ddc0c99ac (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include "Swiften/Base/ByteArray.h"
namespace Swift {
class PBKDF2 {
public:
static ByteArray encode(const ByteArray& password, const ByteArray& salt, int iterations);
};
}
|