type crypto/sha3.SHAKE
16 uses
crypto/sha3 (current package)
sha3.go#L170: type SHAKE struct {
sha3.go#L175: func NewSHAKE128() *SHAKE {
sha3.go#L176: return &SHAKE{*sha3.NewShake128()}
sha3.go#L180: func NewSHAKE256() *SHAKE {
sha3.go#L181: return &SHAKE{*sha3.NewShake256()}
sha3.go#L189: func NewCSHAKE128(N, S []byte) *SHAKE {
sha3.go#L190: return &SHAKE{*sha3.NewCShake128(N, S)}
sha3.go#L198: func NewCSHAKE256(N, S []byte) *SHAKE {
sha3.go#L199: return &SHAKE{*sha3.NewCShake256(N, S)}
sha3.go#L205: func (s *SHAKE) Write(p []byte) (n int, err error) {
sha3.go#L212: func (s *SHAKE) Read(p []byte) (n int, err error) {
sha3.go#L217: func (s *SHAKE) Reset() {
sha3.go#L222: func (s *SHAKE) BlockSize() int {
sha3.go#L227: func (s *SHAKE) MarshalBinary() ([]byte, error) {
sha3.go#L232: func (s *SHAKE) AppendBinary(p []byte) ([]byte, error) {
sha3.go#L237: func (s *SHAKE) UnmarshalBinary(data []byte) error {
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)