hashes_noasm.go 409 B

1234567891011121314151617181920212223
  1. // Copyright 2023 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. //go:build !gc || purego || !s390x
  5. package sha3
  6. func new224() *state {
  7. return new224Generic()
  8. }
  9. func new256() *state {
  10. return new256Generic()
  11. }
  12. func new384() *state {
  13. return new384Generic()
  14. }
  15. func new512() *state {
  16. return new512Generic()
  17. }