Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Readme update #24

Merged
merged 2 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ benchmark-compression:
go test -benchmem -bench BenchmarkRoundTrip github.com/D3vl0per/crypt/compression -timeout 30m -benchtime=1s -count=6 | tee "compression-$(shell date --iso-8601=seconds).out"

coverage:
go test -coverprofile=coverage.out ./...
go test -covermode=atomic -coverprofile=coverage.out ./...
go tool cover -html=coverage.out -o coverage.html
rm coverage.out
google-chrome-stable coverage.html
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Go-Crypt (!!! WIP !!!)

This project is a comprehensive toolkit for developers who need to implement various cryptographic operations in their Go applications

<h1 align="center">(Go) Crypt</h1>
<p align="center">
<a href="https://pkg.go.dev/github.com/D3vl0per/crypt"><img src="https://img.shields.io/badge/godoc-reference-blue.svg"/></a>
<a href="https://github.com/D3vl0per/crypt/actions/workflows/test_test.yaml"><img src="https://github.com/D3vl0per/crypt/actions/workflows/test_test.yaml/badge.svg?branch=main"/></a>
<a href="https://codecov.io/github/D3vl0per/crypt"><img src="https://codecov.io/github/D3vl0per/crypt/graph/badge.svg?token=X8DSE9DZ18"/></a>
</p>
<p align="center"> This project is a comprehensive toolkit for developers who need to implement various cryptographic operations in their Go applications
</p>

## Crypto suite:
- Generic
Expand Down
Loading