Skip to content

Commit 2d0cd9c

Browse files
update go.mod, go.sum, readme
1 parent 1d1faef commit 2d0cd9c

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
[![Readme Card](https://github-readme-stats.vercel.app/api/pin/?username=cyclone-github&repo=yescrypt_crack&theme=gruvbox)](https://github.com/cyclone-github/yescrypt_crack/)
22

3-
<!--
43
[![Go Report Card](https://goreportcard.com/badge/github.com/cyclone-github/yescrypt_crack)](https://goreportcard.com/report/github.com/cyclone-github/yescrypt_crack)
5-
-->
64
[![GitHub issues](https://img.shields.io/github/issues/cyclone-github/yescrypt_crack.svg)](https://github.com/cyclone-github/yescrypt_crack/issues)
75
[![License](https://img.shields.io/github/license/cyclone-github/yescrypt_crack.svg)](LICENSE)
86
[![GitHub release](https://img.shields.io/github/release/cyclone-github/yescrypt_crack.svg)](https://github.com/cyclone-github/yescrypt_crack/releases)
@@ -71,11 +69,12 @@ cat wordlist | ./yescrypt_crack.bin -h yescrypt.txt
7169
### Compile from source:
7270
- If you want the latest features, compiling from source is the best option since the release version may run several revisions behind the source code.
7371
- This assumes you have Go and Git installed
74-
- `git clone https://github.com/cyclone-github/yescrypt_crack.git`
75-
- `cd yescrypt_crack`
76-
- `go mod init yescrypt_crack`
77-
- `go mod tidy`
78-
- `go build -ldflags="-s -w" .`
79-
- `./yescrypt_crack -h {hash file} -w {wordlist file} -t {CPU threads to use (optional)}`
72+
- `git clone https://github.com/cyclone-github/yescrypt_crack.git` # clone repo
73+
- `cd yescrypt_crack` # enter project directory
74+
- `go mod init yescrypt_crack` # initialize Go module (skips if go.mod exists)
75+
- `go mod tidy` # download dependencies
76+
- `go build -ldflags="-s -w" .` # compile binary in current directory
77+
- `go install -ldflags="-s -w" .` # compile binary and install to $GOPATH
78+
- `./yescrypt_crack -h {hash file} -w {wordlist file} -t {CPU threads to use (optional)}` # run yescrypt_crack
8079
- Compile from source code how-to:
8180
- https://github.com/cyclone-github/scripts/blob/main/intro_to_go.txt

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module yescrypt_crack
22

3-
go 1.24.0
3+
go 1.24.2
44

55
require (
66
github.com/openwall/yescrypt-go v1.0.0
7-
golang.org/x/crypto v0.36.0
7+
golang.org/x/crypto v0.38.0
88
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
github.com/openwall/yescrypt-go v1.0.0 h1:jsGk48zkFvtUjGVOhYPGh+CS595JmTRcKnpggK2AON4=
22
github.com/openwall/yescrypt-go v1.0.0/go.mod h1:e6CWtFizUEOUttaOjeVMiv1lJaJie3mfOtLJ9CCD6sA=
3-
golang.org/x/crypto v0.36.0 h1:AnAEvhDddvBdpY+uR+MyHmuZzzNqXSe/GvuDeob5L34=
4-
golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc=
3+
golang.org/x/crypto v0.38.0 h1:jt+WWG8IZlBnVbomuhg2Mdq0+BBQaHbtqHEFEigjUV8=
4+
golang.org/x/crypto v0.38.0/go.mod h1:MvrbAqul58NNYPKnOra203SB9vpuZW0e+RRZV+Ggqjw=

0 commit comments

Comments
 (0)