Typos, and replaced 'checksum' with 'digest': more consistent with Erlang documentation
This commit is contained in:
parent
19c717fb97
commit
bbdbbf313f
1 changed files with 4 additions and 4 deletions
|
@ -139,14 +139,14 @@ try_write_owner(To, #file_info{uid=OwnerId}) ->
|
||||||
try_write_group(To, #file_info{gid=OwnerId}) ->
|
try_write_group(To, #file_info{gid=OwnerId}) ->
|
||||||
file:write_file_info(To, #file_info{gid=OwnerId}).
|
file:write_file_info(To, #file_info{gid=OwnerId}).
|
||||||
|
|
||||||
%% @doc return an md5 checksum string or a binary. Same as unix utility of
|
%% @doc return the MD5 digest of a string or a binary,
|
||||||
%% same name.
|
%% named after the UNIX utility.
|
||||||
-spec md5sum(string() | binary()) -> string().
|
-spec md5sum(string() | binary()) -> string().
|
||||||
md5sum(Value) ->
|
md5sum(Value) ->
|
||||||
hex(binary_to_list(erlang:md5(Value))).
|
hex(binary_to_list(erlang:md5(Value))).
|
||||||
|
|
||||||
%% @doc return an sha1sum checksum string or a binary. Same as unix utility of
|
%% @doc return the SHA-1 digest of a string or a binary,
|
||||||
%% same name.
|
%% named after the UNIX utility.
|
||||||
-ifdef(deprecated_crypto).
|
-ifdef(deprecated_crypto).
|
||||||
-spec sha1sum(string() | binary()) -> string().
|
-spec sha1sum(string() | binary()) -> string().
|
||||||
sha1sum(Value) ->
|
sha1sum(Value) ->
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue