mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-23 12:16:38 +00:00
cc4f773b0e
This includes support for journal mode set to WAL on the BSDs. Relates to: #1753, #2962
16 lines
329 B
Go
16 lines
329 B
Go
// Copyright 2023 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build !gc || purego || !s390x
|
|
|
|
package sha3
|
|
|
|
func newShake128() *state {
|
|
return newShake128Generic()
|
|
}
|
|
|
|
func newShake256() *state {
|
|
return newShake256Generic()
|
|
}
|