type crypto/sha3.SHAKE
16 uses
crypto/sha3 (current package)
sha3.go#L176: type SHAKE struct {
sha3.go#L181: func NewSHAKE128() *SHAKE {
sha3.go#L182: return &SHAKE{*sha3.NewShake128()}
sha3.go#L186: func NewSHAKE256() *SHAKE {
sha3.go#L187: return &SHAKE{*sha3.NewShake256()}
sha3.go#L195: func NewCSHAKE128(N, S []byte) *SHAKE {
sha3.go#L196: return &SHAKE{*sha3.NewCShake128(N, S)}
sha3.go#L204: func NewCSHAKE256(N, S []byte) *SHAKE {
sha3.go#L205: return &SHAKE{*sha3.NewCShake256(N, S)}
sha3.go#L211: func (s *SHAKE) Write(p []byte) (n int, err error) {
sha3.go#L218: func (s *SHAKE) Read(p []byte) (n int, err error) {
sha3.go#L223: func (s *SHAKE) Reset() {
sha3.go#L228: func (s *SHAKE) BlockSize() int {
sha3.go#L233: func (s *SHAKE) MarshalBinary() ([]byte, error) {
sha3.go#L238: func (s *SHAKE) AppendBinary(p []byte) ([]byte, error) {
sha3.go#L243: func (s *SHAKE) UnmarshalBinary(data []byte) error {
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)