shad-go/blowfish/blowfish.go
2022-04-28 02:57:39 +03:00

14 lines
199 B
Go

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