/usr/lib/swi-prolog/library/sha.pl is in swi-prolog-nox 6.6.4-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | /* Part of SWI-Prolog
Author: Jan Wielemaker
E-mail: J.Wielemaker@vu.nl
WWW: http://www.swi-prolog.org
Copyright (C): 2007-2013, University of Amsterdam
VU University Amsterdam
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
As a special exception, if you link this library with other files,
compiled with a Free Software compiler, to produce an executable, this
library does not by itself cause the resulting executable to be covered
by the GNU General Public License. This exception does not however
invalidate any other reasons why the executable file might be covered by
the GNU General Public License.
*/
:- module(crypto_hash,
[ sha_hash/3, % +Data, -Hash, +Options
sha_new_ctx/2, % -NewContext, +Options
sha_hash_ctx/4, % +OldCtx, +Data, -NewCtx, -Hash
hmac_sha/4, % +Key, +Data, -Hash, +Options
file_sha1/2, % +File, -SHA1
hash_atom/2 % +Hash, -HexAtom
]).
:- use_module(library(shlib)).
:- use_foreign_library(foreign(sha4pl)).
%% sha_hash(+Data, -Hash, +Options) is det
%
% Hash is the SHA hash of Data, The conversion is controlled
% by Options:
%
% * algorithm(+Algorithm)
% One of =sha1= (default), =sha224=, =sha256=, =sha384= or
% =sha512=
% * encoding(+Encoding)
% If Data is a sequence of character _codes_, this must be
% translated into a sequence of _bytes_, because that is what
% the hashing requires. The default encoding is =utf8=. The
% other meaningful value is =octet=, claiming that Data contains
% raw bytes.
%
% @param Data is either an atom, string or code-list
% @param Hash is a packed string
%% sha_new_ctx(-NewContext, +Options) is det
%
% NewContext is unified with the empty SHA computation context
% (which includes the Options.) It could later be passed to
% sha_hash_ctx/4. For Options, see sha_hash/3.
%
% @param NewContext is an opaque pure Prolog term that is
% subject to garbage collection.
%% sha_hash_ctx(+OldContext, +Data, -NewContext, -Hash) is det
%
% Hash is the SHA hash of Data. NewContext is the new SHA
% computation context, while OldContext is the old. OldContext
% may be produced by a prior invocation of either sha_new_ctx/3 or
% sha_hash_ctx/4 itself.
%
% This predicate allows a SHA function to be computed in chunks,
% which may be important while working with Metalink (RFC 5854),
% BitTorrent or similar technologies, or simply with big files.
%% hmac_sha(+Key, +Data, -Hash, +Options) is det
%
% For Options, see sha_hash/3.
%% file_sha1(+File, -SHA1:atom) is det.
%
% True when SHA1 is the SHA1 hash for the content of File. Options
% is passed to open/4 and typically used to control whether binary
% or text encoding must be used. The output is compatible to the
% =sha1sum= program found in many systems.
file_sha1(File, Hash) :-
setup_call_cleanup(
open(File, read, In, [type(binary)]),
stream_sha1(In, Hash),
close(In)).
stream_sha1(Stream, Hash) :-
sha_new_ctx(Ctx0, [encoding(octet)]),
update_hash(Stream, Ctx0, _Ctx, 0, HashCodes),
hash_atom(HashCodes, Hash).
update_hash(In, Ctx0, Ctx, Hash0, Hash) :-
at_end_of_stream(In), !,
Ctx = Ctx0,
Hash = Hash0.
update_hash(In, Ctx0, Ctx, _Hash0, Hash) :-
read_pending_input(In, Data, []),
sha_hash_ctx(Ctx0, Data, Ctx1, Hash1),
update_hash(In, Ctx1, Ctx, Hash1, Hash).
%% hash_atom(+HashCodes, -HexAtom) is det.
%
% Convert a list of bytes (integers 0..255) into the usual
% hexadecimal notation. E.g.
%
% ==
% ?- sha_hash('SWI-Prolog', Hash, []),
% hash_atom(Hash, Hex).
% Hash = [61, 128, 252, 38, 121, 69, 229, 85, 199|...],
% Hex = '3d80fc267945e555c730403bd0ab0716e2a68c68'.
% ==
hash_atom(Codes, Hash) :-
phrase(bytes_hex(Codes), HexCodes),
atom_codes(Hash, HexCodes).
bytes_hex([]) --> [].
bytes_hex([H|T]) -->
{ High is H>>4,
Low is H /\ 0xf,
code_type(C0, xdigit(High)),
code_type(C1, xdigit(Low))
},
[C0,C1],
bytes_hex(T).
|