2022-02-10 22:06:57 +00:00
|
|
|
//go:build !solution
|
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")
|
|
|
|
}
|