This file is indexed.

/usr/share/Yap/sha.pl is in yap 6.2.2-6+b2.

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
/*  $Id$

    Part of SWI-Prolog

    Author:        Jan Wielemaker
    E-mail:        wielemak@science.uva.nl
    WWW:           http://www.swi-prolog.org
    Copyright (C): 1985-2007, University of 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  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
	  ]).
:- 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=
%
%	@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.

%%	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.