peerplays-fc/include/fc/crypto/scrypt.hpp
Vikram Rajkumar e442b29f6e Fix scrypt
2014-07-14 13:40:33 -04:00

9 lines
290 B
C++

#pragma once
#include <vector>
namespace fc {
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