golang-github-aead-chacha20 0.0~git20180709.8b13a72-2 source package in Ubuntu

Changelog

golang-github-aead-chacha20 (0.0~git20180709.8b13a72-2) unstable; urgency=medium

  [ Andreas Henriksson ]
  * Fix typo/bugnumber in previous changelog entry

  [ Eric Dorland ]
  * Switch to debhelper-compat 12
  * Standards-Version to 4.4.0.1

 -- Eric Dorland <email address hidden>  Sun, 28 Jul 2019 17:37:10 -0400

Upload details

Uploaded by:
Debian Go Packaging Team
Uploaded to:
Sid
Original maintainer:
Debian Go Packaging Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal release universe misc

Builds

Eoan: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-aead-chacha20_0.0~git20180709.8b13a72-2.dsc 2.3 KiB ebb79dd5e14f670ae51b74d25e85c57bbd8330aedf5e4e251ad6eca10c82a0e2
golang-github-aead-chacha20_0.0~git20180709.8b13a72.orig.tar.xz 17.4 KiB b3f080b2d22315add919a7528f52c573f96603bba694cc6267f70d25a33dec4e
golang-github-aead-chacha20_0.0~git20180709.8b13a72-2.debian.tar.xz 2.3 KiB 7a1412b022180cdedc4e08c165248732ff0250dd4614c9c3d456def9977b0f45

No changes file available.

Binary packages built by this source

golang-github-aead-chacha20-dev: 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.