-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclsha2
More file actions
executable file
·209 lines (177 loc) · 6.23 KB
/
clsha2
File metadata and controls
executable file
·209 lines (177 loc) · 6.23 KB
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
#!/usr/bin/python3
"""
* File: clsha2
* Version : 1.1
* License : BSD-3-Clause
*
*
* Copyright (c) 2022 - 2025
* Ralf Senderek, Ireland. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Ralf Senderek.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
"""
import sys, os
from base64 import *
from binascii import *
try:
from cryptlib_py import *
except:
ERR_IMPORT = """
The python3 library is not installed. You need to install the packages cryptlib-python3 and cryptlib.
You will find them for a variety of operating systems here:
https://senderek.ie/cryptlib
or in the Fedora repository.
"""
print(ERR_IMPORT)
exit (-1)
Version = "clsha2 version 1.1"
HashSize = 32
OK = 0
ERR_NOBYTES = 1
ERR_PERM = 2
MaxBytes = 500000000
Source = "file"
Mode = "hex"
InputBytes = bytearray()
# we try to read all bytes in a single pass
ReadMoreBytes = False
FileName = ""
def print_help():
Help = """
SHA2 hash values of files or standard input
usage: clsha2 [OPTION] [FILE]
No FILE or "-" reads from standard input.
Options are:
--help prints this message
--version prints the version
--base64 prints the hashvalue in base64 encoding instead of hex
Full documentation <https://senderek.ie/cryptlib/tools/clsha2>
This program depends on two packages providing the cryptlib shared object
library and the python3-bindings to this library.
You can download both packages in RPM format at
https://senderek.ie/cryptlib/downloads
Or in FEDORA you can install the packages cryptlib and cryptlib-python3
directly from the repository.
"""
print( Help )
#############################################################
if len(sys.argv) > 1 :
if sys.argv[1] == "--help":
print_help()
exit( OK )
if sys.argv[1] == "--version":
print ( Version )
exit( OK )
if sys.argv[1] == "--base64" or sys.argv[1] == "-b64" :
Mode = "base64"
try:
sys.argv.remove( "-b64" )
except:
pass
try:
sys.argv.remove( "--base64" )
except:
pass
# all input is read as bytes
if len(sys.argv) > 1 :
if sys.argv[1] == "-":
try:
InputBytes = sys.stdin.buffer.read( MaxBytes )
Source = "stdin"
FileName = "-"
except:
print("Error: reading from stdin")
exit ( ERR_PERM )
elif os.path.isfile(sys.argv[1]):
FileName = sys.argv[1]
try:
F = open( FileName, "rb" )
InputBytes = F.read( MaxBytes )
except:
print( "cannot open file " + str(FileName) )
exit ( ERR_PERM )
else:
try:
InputBytes = sys.stdin.buffer.read( MaxBytes )
Source = "stdin"
FileName = "-"
except:
print("Error: reading from stdin")
exit ( ERR_PERM )
##### Begin Cryptlib code #####
cryptInit()
cryptUser = CRYPT_UNUSED
hashContext_object = cryptCreateContext( cryptUser, CRYPT_ALGO_SHA2 )
hashContext = int( hashContext_object )
Algo = bytearray( b' ' )
namesize = cryptGetAttributeString( hashContext, CRYPT_CTXINFO_NAME_ALGO, Algo )
# hashedData must be modifiable Buffer
hashedData = bytearray()
hashedData.extend( InputBytes )
nullData = bytearray( b'' )
if len(hashedData) < MaxBytes:
# we only need one pass, no looping required
cryptEncrypt( hashContext, hashedData )
else:
# use all bytes that have been read already
cryptEncrypt( hashContext, hashedData )
# there are more bytes to be read
ReadMoreBytes = True
while ReadMoreBytes:
# start with empty bytearray
del( hashedData )
hashedData = bytearray()
if Source == "file":
InputBytes = F.read( MaxBytes )
hashedData.extend( InputBytes )
if len( InputBytes ) < MaxBytes:
ReadMoreBytes = False
# no more input
F.close()
else:
InputBytes = sys.stdin.buffer.read( MaxBytes )
hashedData.extend( InputBytes )
if len( InputBytes ) < MaxBytes:
ReadMoreBytes = False
cryptEncrypt( hashContext, hashedData )
if hashedData:
# end the operation with null bytes input
if hashedData:
cryptEncrypt( hashContext, nullData )
else:
exit( ERR_NOBYTES )
# the hashvalue needs a minimum of 32 Bytes
hashvalue = bytearray( b' '*HashSize )
num = cryptGetAttributeString( hashContext, CRYPT_CTXINFO_HASHVALUE, hashvalue )
# output
if num == HashSize:
if Mode == "base64":
print ( b64encode( hashvalue ).decode() + " " + FileName )
else:
print( hexlify( hashvalue ).decode() + " " + FileName )
cryptDestroyContext( hashContext )
cryptEnd()
sys.exit( OK )