peerplays-fc/include/fc/crypto/scrypt.hpp

10 lines
290 B
C++
Raw Normal View History

#pragma once
#include <vector>
namespace fc {
2014-07-14 15:40:13 +00:00
void scrypt_derive_key( const std::vector<unsigned char>& passphrase, const std::vector<unsigned char>& salt,
unsigned int n, unsigned int r, unsigned int p, std::vector<unsigned char>& key );
} // namespace fc