Skip to content

Commit c4d915d

Browse files
committed
rewritten
1 parent f61d9e5 commit c4d915d

File tree

8 files changed

+478
-472
lines changed

8 files changed

+478
-472
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 jNizM
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -3,41 +3,41 @@ Calculate hash from string, hex or file via AutoHotkey
33

44

55
## Features
6-
* Generate hash value from string, hex or file
6+
* Generate hash value from string or file
7+
* Generate Password-Based Key Derivation Function 2 (PBKDF2)
78
* Secure-Salted function
89
* Verify hash
910

10-
### Hash Functions
11-
* CRC32
11+
### Functions
1212
* MD2, MD4, MD5
1313
* SHA-1
1414
* SHA-256, SHA-384, SHA-512
1515
* HMAC
16+
* PBKDF2
1617

17-
## Screenshot
18-
![Screenshot](Screenshot.png)
1918

20-
21-
## Info
22-
* Version: v0.9
23-
* URL: [AHK Thread](http://ahkscript.org/boards/viewtopic.php?f=6&t=87)
24-
25-
26-
## Changelog
27-
* 0.9 | Added hash function CRC32
28-
* 0.8 | Bug fixes and improvements
29-
* 0.7 | Added CalcHexHash()
30-
* 0.6 | Change Salt to HMAC funtion
31-
* 0.5 | Added Drag&Drop File into Gui
32-
* 0.4 | Changed Hash functions to CalcAddrHash(), CalcStringHash() & CalcFileHash()
33-
* 0.3 | Added Disable Salt if 'File' is active
34-
* 0.2 | Added HashFromFile(), Checkbox
35-
* 0.1 | First Release
19+
## Examples
20+
![HashCalc](img/HashCalc_01.png)
21+
![HashCalc](img/HashCalc_02.png)
22+
![HashCalc](img/HashCalc_03.png)
23+
![HashCalc](img/HashCalc_04.png)
3624

3725

3826
## Contributing
3927
* thanks to Bentschi for his functions CalcAddrHash(), CalcStringHash() & CalcFileHash()
4028
* thanks to atnbueno for CalcHexHash()
4129
* thanks to SKAN for his functions CRC() & FileCRC32()
4230
* thanks to just me for his translated function HMAC()
43-
* thanks to AutoHotkey Community
31+
* thanks to AutoHotkey Community
32+
33+
34+
## Questions / Bugs / Issues
35+
If you notice any kind of bugs or issues, report them on the [AHK Thread](https://www.autohotkey.com/boards/viewtopic.php?t=87). Same for any kind of questions.
36+
37+
38+
## Copyright and License
39+
[MIT License](LICENSE)
40+
41+
42+
## Donations
43+
[Donations are appreciated if I could help you](https://www.paypal.me/smithz)

Screenshot.png

-33.2 KB
Binary file not shown.

img/HashCalc_01.png

17.6 KB
Loading

img/HashCalc_02.png

18.8 KB
Loading

img/HashCalc_03.png

13.4 KB
Loading

img/HashCalc_04.png

13.9 KB
Loading

0 commit comments

Comments
 (0)