https://github.com/sorairolake/abcrypt-go
A simple, modern and secure file encryption library for Go
https://github.com/sorairolake/abcrypt-go
abcrypt abcrypt-encryption argon2 argon2id blake2 blake2b chacha20 chacha20-poly1305 encryption go golang poly1305 xchacha20 xchacha20-poly1305
Last synced: about 2 months ago
JSON representation
A simple, modern and secure file encryption library for Go
- Host: GitHub
- URL: https://github.com/sorairolake/abcrypt-go
- Owner: sorairolake
- License: apache-2.0
- Created: 2024-02-13T09:46:48.000Z (over 1 year ago)
- Default Branch: develop
- Last Pushed: 2025-08-09T03:44:58.000Z (about 2 months ago)
- Last Synced: 2025-08-09T05:29:09.723Z (about 2 months ago)
- Topics: abcrypt, abcrypt-encryption, argon2, argon2id, blake2, blake2b, chacha20, chacha20-poly1305, encryption, go, golang, poly1305, xchacha20, xchacha20-poly1305
- Language: Go
- Homepage: https://pkg.go.dev/github.com/sorairolake/abcrypt-go
- Size: 197 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.adoc
- Contributing: CONTRIBUTING.adoc
- License: LICENSE-APACHE
- Code of conduct: CODE_OF_CONDUCT.md
- Authors: AUTHORS.adoc
Awesome Lists containing this project
README
# abcrypt-go
[![CI][ci-badge]][ci-url]
[![Go Reference][reference-badge]][reference-url]
![Go version][go-version-badge]**abcrypt-go** is an implementation of the [abcrypt encrypted data format].
This package supports version 1 of the abcrypt format.
## Usage
To install this library:
```sh
go get -u github.com/sorairolake/abcrypt-go
```### Documentation
See the [documentation][reference-url] for more details.
## Minimum Go version
This library requires the minimum version of Go 1.23.0.
## Source code
The upstream repository is available at
.## Changelog
Please see [CHANGELOG.adoc].
## Contributing
Please see [CONTRIBUTING.adoc].
## License
Copyright (C) 2024 Shun Sakai (see [AUTHORS.adoc])
This library is distributed under the terms of either the _Apache License 2.0_
or the _MIT License_.This project is compliant with version 3.3 of the [_REUSE Specification_]. See
copyright notices of individual files for more details on copyright and
licensing information.[ci-badge]: https://img.shields.io/github/actions/workflow/status/sorairolake/abcrypt-go/CI.yaml?branch=develop&style=for-the-badge&logo=github&label=CI
[ci-url]: https://github.com/sorairolake/abcrypt-go/actions?query=branch%3Adevelop+workflow%3ACI++
[reference-badge]: https://img.shields.io/badge/Go-Reference-steelblue?style=for-the-badge&logo=go
[reference-url]: https://pkg.go.dev/github.com/sorairolake/abcrypt-go
[go-version-badge]: https://img.shields.io/github/go-mod/go-version/sorairolake/abcrypt-go?style=for-the-badge&logo=go
[abcrypt encrypted data format]: https://sorairolake.github.io/abcrypt/book/format.html
[CHANGELOG.adoc]: CHANGELOG.adoc
[CONTRIBUTING.adoc]: CONTRIBUTING.adoc
[AUTHORS.adoc]: AUTHORS.adoc
[_REUSE Specification_]: https://reuse.software/spec-3.3/