golang-github-stevvooe-resumable 0.0~git20150521.0.51ad441-2.1 source package in Ubuntu

Changelog

golang-github-stevvooe-resumable (0.0~git20150521.0.51ad441-2.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Thu, 07 Jan 2021 13:39:19 +0100

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-stevvooe-resumable_0.0~git20150521.0.51ad441-2.1.dsc 2.4 KiB 04c83e7274e0c7a75c45b54981f77807adb55b3a4b3da8d45ebb954160f071cc
golang-github-stevvooe-resumable_0.0~git20150521.0.51ad441.orig.tar.bz2 19.3 KiB bdec76fead27f699542da8b3ee2e1d46792785a49fbdb28366a5d5724cde8d4f
golang-github-stevvooe-resumable_0.0~git20150521.0.51ad441-2.1.debian.tar.xz 2.5 KiB e80efe1462d39cb360c00dae406be31c6d1a183a1c33d09670e72b6a2ef0b4fd

No changes file available.

Binary packages built by this source

golang-github-stevvooe-resumable-dev: Subset of the Go `crypto` Package with a Resumable Hash Interface

 Package resumable registers resumable versions of hash functions. Resumable
 varieties of hash functions are available via the standard crypto package.
 Support can be checked by type assertion against the resumable.Hash interface.
 .
 While one can use these sub-packages directly, it makes more sense to register
 them using side-effect imports:
 .
   import _ "github.com/stevvooe/resumable/sha256"
 .
 This will make the resumable hashes available to the application through the
 standard crypto package. For example, if a new sha256 is required, one should
 use the following:
 .
   h := crypto.SHA256.New()
 .
 Such a features allows one to control the inclusion of resumable hash support
 in a single file. Applications that require the resumable hash implementation
 can type switch to detect support, while other parts of the application can be
 completely oblivious to the presence of the alternative hash functions.
 .
 Also note that the implementations available in this package are completely
 untouched from their Go counterparts in the standard library. Only an extra
 file is added to each package to implement the extra resumable hash functions.