shad-go/blowfish/blowfish.go

15 lines
195 B
Go
Raw Normal View History

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