https://github.com/devfacet/cipherman
A Golang library that provides various cipher implementations.
https://github.com/devfacet/cipherman
chacha20poly1305 cipher diffie-hellman ecdh go golang x25519
Last synced: 11 months ago
JSON representation
A Golang library that provides various cipher implementations.
- Host: GitHub
- URL: https://github.com/devfacet/cipherman
- Owner: devfacet
- License: mit
- Created: 2022-08-10T03:05:33.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-11T17:18:09.000Z (about 3 years ago)
- Last Synced: 2024-04-14T22:59:48.388Z (about 2 years ago)
- Topics: chacha20poly1305, cipher, diffie-hellman, ecdh, go, golang, x25519
- Language: Go
- Homepage:
- Size: 22.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Cipherman
[![Godoc][doc-image]][doc-url] [![Release][release-image]][release-url] [![Build][build-image]][build-url]
A Golang library that provides various cipher implementations.
## Usage
See [chacha20poly1305_test.go](chacha20poly1305_test.go), [x25519xchacha20poly1305_test.go](x25519xchacha20poly1305_test.go) and [ecdhxchacha20poly1305_test.go](ecdhxchacha20poly1305_test.go).
## Test
```shell
# Run tests
make test
# Continuous testing
make test-ui
# Benchmarks
make test-benchmarks
```
## Contributing
See [CONTRIBUTING.md](CONTRIBUTING.md)
## License
Licensed under The MIT License (MIT)
For the full copyright and license information, please view the LICENSE.txt file.
[doc-url]: https://pkg.go.dev/github.com/devfacet/cipherman
[doc-image]: https://pkg.go.dev/badge/github.com/devfacet/cipherman
[release-url]: https://github.com/devfacet/cipherman/releases/latest
[release-image]: https://img.shields.io/github/release/devfacet/cipherman.svg?style=flat-square
[build-url]: https://github.com/devfacet/cipherman/actions/workflows/test.yaml
[build-image]: https://github.com/devfacet/cipherman/workflows/Test/badge.svg