shad-go/blowfish/blowfish.go
2022-03-15 23:49:56 +03:00

14 lines
195 B
Go

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