Source file src/crypto/internal/fips/cast_test.go
1 // Copyright 2024 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 5 package fips 6 7 var AllCASTs []string 8 9 func init() { 10 testingOnlyCASTHook = func(name string) { 11 AllCASTs = append(AllCASTs, name) 12 } 13 } 14