shad-go/blowfish/blowfish.go

15 lines
194 B
Go
Raw Normal View History

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