Skip to content

Commit 7c4d425

Browse files
v1.0.0
1 parent 0f43eeb commit 7c4d425

File tree

5 files changed

+30
-16
lines changed

5 files changed

+30
-16
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### v1.0.0; 2024-12-10
2+
```
3+
v1.0.0 release
4+
```
15
### v2024-11-04.1445-threaded
26
```
37
fixed https://github.com/cyclone-github/hashgen/issues/5

README.md

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
1-
[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=cyclone-github&repo=hashgen&theme=gruvbox)](https://github.com/cyclone-github/)
1+
[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=cyclone-github&repo=hashgen&theme=gruvbox)](https://github.com/cyclone-github/hashgen/)
2+
3+
[![Go Report Card](https://goreportcard.com/badge/github.com/cyclone-github/hashgen)](https://goreportcard.com/report/github.com/cyclone-github/hashgen)
4+
[![GitHub issues](https://img.shields.io/github/issues/cyclone-github/hashgen.svg)](https://github.com/cyclone-github/hashgen/issues)
5+
[![License](https://img.shields.io/github/license/cyclone-github/hashgen.svg)](LICENSE)
6+
[![GitHub release](https://img.shields.io/github/release/cyclone-github/hashgen.svg)](https://github.com/cyclone-github/hashgen/releases)
7+
[![Go Reference](https://pkg.go.dev/badge/github.com/cyclone-github/hashgen.svg)](https://pkg.go.dev/github.com/cyclone-github/hashgen)
8+
29
# hashgen - Cyclone's hash generator
310
```
411
$ ./hashgen_amd64.bin -m 0 -w rockyou.txt -o /dev/null
5-
2023/11/02 19:10:51 Starting...
6-
2023/11/02 19:10:51 Processing file: rockyou.txt
7-
2023/11/02 19:10:51 Hash function: 0
8-
2023/11/02 19:10:51 CPU Threads: 16
9-
2023/11/02 19:10:52 Finished hashing 15053568 lines in 0.500 sec (30.123 M lines/sec)
12+
2024/12/10 19:07:31 Starting...
13+
2024/12/10 19:07:31 Processing file: rockyou.txt
14+
2024/12/10 19:07:31 Hash function: 0
15+
2024/12/10 19:07:31 CPU Threads: 16
16+
2024/12/10 19:07:31 Finished processing 14344391 lines in 0.475 sec (30.228 M lines/sec)
1017
```
1118
**As of the this writing, hashgen (go) has a 2,519% faster md5 hashrate vs the next fastest publicly available CPU based hash generator (see benchmarks).** While this is extremely fast, these hashrates can be beat by improved code optimization and/or coding in faster programming languages (I'm looking at you C, Rust and Zig).
1219

@@ -72,13 +79,14 @@ To use hashgen, type your mode, wordlist input & hash output files with a simple
7279
- Compile from source code how-to:
7380
- https://github.com/cyclone-github/scripts/blob/main/intro_to_go.txt
7481

75-
### Change Log:
82+
### Changelog:
7683
- https://github.com/cyclone-github/hashgen/blob/main/CHANGELOG.md
7784

7885
### Mentions:
7986
- Go Package Documentation: https://pkg.go.dev/github.com/cyclone-github/hashgen
80-
- Hashcat Wiki: https://hashcat.net/wiki/
81-
- Hashkiller Forum: https://forum.hashkiller.io/index.php?threads/cyclone-hashgen.63140/
87+
- hashcat wiki: https://hashcat.net/wiki/
88+
- hashkiller forum: https://forum.hashkiller.io/index.php?threads/cyclone-hashgen.63140/
89+
- hashpwn forum: https://forum.hashpwn.net/post/89
8290
- Softpedia: https://www.softpedia.com/get/System/File-Management/hashgen-go.shtml
8391

8492
### Antivirus False Positives:

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module hashgen
22

33
go 1.22.4
44

5-
require golang.org/x/crypto v0.28.0
5+
require golang.org/x/crypto v0.30.0
66

7-
require golang.org/x/sys v0.26.0 // indirect
7+
require golang.org/x/sys v0.28.0 // indirect

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
golang.org/x/crypto v0.28.0 h1:GBDwsMXVQi34v5CCYUm2jkJvu4cbtru2U4TN2PSyQnw=
2-
golang.org/x/crypto v0.28.0/go.mod h1:rmgy+3RHxRZMyY0jjAJShp2zgEdOqj2AO7U0pYmeQ7U=
3-
golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo=
4-
golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
1+
golang.org/x/crypto v0.30.0 h1:RwoQn3GkWiMkzlX562cLB7OxWvjH1L8xutO2WoJcRoY=
2+
golang.org/x/crypto v0.30.0/go.mod h1:kDsLvtWBEx7MV9tJOj9bnXsPbxwJQ6csT/x4KIN4Ssk=
3+
golang.org/x/sys v0.28.0 h1:Fksou7UEQUWlKvIdsqzJmUmCX3cZuD2+P3XyyzwMhlA=
4+
golang.org/x/sys v0.28.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=

hashgen.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,12 @@ v2024-11-04.1445-threaded;
5858
fixed https://github.com/cyclone-github/hashgen/issues/5
5959
added CPU threaded info to -help
6060
cleaned up code and print functions
61+
v1.0.0; 2024-12-10
62+
v1.0.0 release
6163
*/
6264

6365
func versionFunc() {
64-
fmt.Fprintln(os.Stderr, "Cyclone hash generator v2024-11-04.1445-threaded")
66+
fmt.Fprintln(os.Stderr, "Cyclone hash generator v1.0.0; 2024-12-10")
6567
}
6668

6769
// help function

0 commit comments

Comments
 (0)