套件:golang-github-aead-chacha20-dev(0.0~git20180709.8b13a72-5)
golang-github-aead-chacha20-dev 的相關連結
Debian 的資源:
下載原始碼套件 golang-github-aead-chacha20:
- [golang-github-aead-chacha20_0.0~git20180709.8b13a72-5.dsc]
- [golang-github-aead-chacha20_0.0~git20180709.8b13a72.orig.tar.xz]
- [golang-github-aead-chacha20_0.0~git20180709.8b13a72-5.debian.tar.xz]
維護小組:
外部的資源:
- 主頁 [github.com]
相似套件:
- python3-py3exiv2
- python-pybtex-doc
- golang-github-aead-poly1305-dev
- golang-tags.cncf-container-device-interface-dev
- golang-github-xhit-go-simple-mail-dev
- golang-github-youmark-pkcs8-dev
- golang-github-schollz-progressbar-dev
- golang-github-xanzy-go-gitlab-dev
- golang-github-pin-tftp-dev
- python3-pycryptodome
- python-pycryptodome-doc
ChaCha20 and XChaCha20 stream ciphers go library
The ChaCha20 stream cipher ChaCha is a stream cipher family created by Daniel J. Bernstein. The most common ChaCha cipher is ChaCha20 (20 rounds). ChaCha20 is standardized in RFC 7539 (https://tools.ietf.org/html/rfc7539).
This package provides implementations of three ChaCha versions: - ChaCha20 with a 64 bit nonce (can en/decrypt up to 2^64 * 64 bytes for one key-nonce combination) - ChaCha20 with a 96 bit nonce (can en/decrypt up to 2^32 * 64 bytes ~ 256 GB for one key-nonce combination) - XChaCha20 with a 192 bit nonce (can en/decrypt up to 2^64 * 64 bytes for one key-nonce combination)
Furthermore the chacha subpackage implements ChaCha20/12 and ChaCha20/8. These versions use 12 or 8 rounds instead of 20. But it's recommended to use ChaCha20 (with 20 rounds) - it will be fast enough for almost all purposes.