shad-go/blowfish/blowfish.go
2021-04-15 11:26:56 +03:00

14 lines
194 B
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")
}