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

Changelog

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

  [ Paul Tagliamonte ]
  * Team upload.
  * Use a secure transport for the Vcs-Git and Vcs-Browser URL
  * Remove Built-Using from arch:all -dev package

  [ Konstantinos Margaritis ]
  * Replace golang-go with golang-any in Build-Depends, remove golang-go from
    Depends

 -- Konstantinos Margaritis <email address hidden>  Wed, 09 Aug 2017 11:10:57 +0300

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
Bionic release universe misc

Builds

Artful: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
golang-github-stevvooe-resumable_0.0~git20150521.0.51ad441-2.dsc 2.4 KiB fb84cc9d1a53ce21d3971afef7ec8b011d18452d0e0c1a686d24d5e7c1c2e722
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.debian.tar.xz 2.4 KiB 8c2b9f2423aea75b4a30f5c3d9d49a538e207bc3b55676e8474ccfde268b9566

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.