shad-go/blowfish/blowfish.go

16 lines
244 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 pkg-config: libcrypto
2023-02-22 13:02:34 +00:00
// #cgo CFLAGS: -Wno-deprecated-declarations
2021-04-15 08:26:56 +00:00
// #include <openssl/blowfish.h>
import "C"
type Blowfish struct {
}
func New(key []byte) *Blowfish {
panic("implement me")
}