~juju-qa/ubuntu/xenial/juju/2.0-rc2

« back to all changes in this revision

Viewing changes to src/golang.org/x/crypto/sha3/sha3.go

  • Committer: Nicholas Skaggs
  • Date: 2016-09-30 14:39:30 UTC
  • mfrom: (1.8.1)
  • Revision ID: nicholas.skaggs@canonical.com-20160930143930-vwwhrefh6ftckccy
import upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
        storage [maxRate]byte
43
43
 
44
44
        // Specific to SHA-3 and SHAKE.
45
 
        fixedOutput bool            // whether this is a fixed-ouput-length instance
 
45
        fixedOutput bool            // whether this is a fixed-output-length instance
46
46
        outputLen   int             // the default output size in bytes
47
47
        state       spongeDirection // whether the sponge is absorbing or squeezing
48
48
}