Fix mixed tabs and spaces. Fixes #12.

This commit is contained in:
Technion 2017-12-31 05:02:18 +00:00
parent 5a48c66b07
commit 9d2f90a5c5
3 changed files with 38 additions and 42 deletions

View File

@ -117,7 +117,6 @@
-export([
generichash/3,
generichash/2,
generichash_init/2,
generichash_update/2,
generichash_final/1

View File

@ -127,7 +127,7 @@
crypto_pwhash/2,
crypto_pwhash_str/1,
crypto_pwhash_str_verify/2
]).
]).
%% Generic hash
-export([
@ -137,12 +137,11 @@
crypto_generichash_KEYBYTES/0,
crypto_generichash_KEYBYTES_MIN/0,
crypto_generichash_KEYBYTES_MAX/0,
crypto_generichash/3,
crypto_generichash_init/2,
crypto_generichash_update/3,
crypto_generichash_final/2
]).
]).
%% Access to the RNG
-export([
@ -181,8 +180,6 @@ crypto_generichash_init(_HashSize, _Key) -> erlang:nif_error(nif_not_loaded).
crypto_generichash_update(_HashSize, _HashState, _Message) -> erlang:nif_error(nif_not_loaded).
crypto_generichash_final(_HashSize, _HashState) -> erlang:nif_error(nif_not_loaded).
crypto_pwhash(_Password, _Salt) -> erlang:nif_error(nif_not_loaded).
crypto_pwhash_str(_Password) -> erlang:nif_error(nif_not_loaded).
crypto_pwhash_str_verify(_HashedPassword, _Password) -> erlang:nif_error(nif_not_loaded).