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