//go:build !solution package blowfish // #cgo pkg-config: libcrypto // #include import "C" type Blowfish struct { } func New(key []byte) *Blowfish { panic("implement me") }