Fix mixed tabs and spaces. Fixes #12.
This commit is contained in:
parent
5a48c66b07
commit
9d2f90a5c5
@ -117,7 +117,6 @@
|
|||||||
-export([
|
-export([
|
||||||
generichash/3,
|
generichash/3,
|
||||||
generichash/2,
|
generichash/2,
|
||||||
|
|
||||||
generichash_init/2,
|
generichash_init/2,
|
||||||
generichash_update/2,
|
generichash_update/2,
|
||||||
generichash_final/1
|
generichash_final/1
|
||||||
|
@ -127,7 +127,7 @@
|
|||||||
crypto_pwhash/2,
|
crypto_pwhash/2,
|
||||||
crypto_pwhash_str/1,
|
crypto_pwhash_str/1,
|
||||||
crypto_pwhash_str_verify/2
|
crypto_pwhash_str_verify/2
|
||||||
]).
|
]).
|
||||||
|
|
||||||
%% Generic hash
|
%% Generic hash
|
||||||
-export([
|
-export([
|
||||||
@ -137,12 +137,11 @@
|
|||||||
crypto_generichash_KEYBYTES/0,
|
crypto_generichash_KEYBYTES/0,
|
||||||
crypto_generichash_KEYBYTES_MIN/0,
|
crypto_generichash_KEYBYTES_MIN/0,
|
||||||
crypto_generichash_KEYBYTES_MAX/0,
|
crypto_generichash_KEYBYTES_MAX/0,
|
||||||
|
|
||||||
crypto_generichash/3,
|
crypto_generichash/3,
|
||||||
crypto_generichash_init/2,
|
crypto_generichash_init/2,
|
||||||
crypto_generichash_update/3,
|
crypto_generichash_update/3,
|
||||||
crypto_generichash_final/2
|
crypto_generichash_final/2
|
||||||
]).
|
]).
|
||||||
|
|
||||||
%% Access to the RNG
|
%% Access to the RNG
|
||||||
-export([
|
-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_update(_HashSize, _HashState, _Message) -> erlang:nif_error(nif_not_loaded).
|
||||||
crypto_generichash_final(_HashSize, _HashState) -> 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(_Password, _Salt) -> erlang:nif_error(nif_not_loaded).
|
||||||
crypto_pwhash_str(_Password) -> 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).
|
crypto_pwhash_str_verify(_HashedPassword, _Password) -> erlang:nif_error(nif_not_loaded).
|
||||||
|
Loading…
x
Reference in New Issue
Block a user