shad-go/blowfish/blowfish.go
Fedor Korotkiy 545540cea9 WIP
2023-02-22 17:02:34 +04:00

15 lines
244 B
Go

//go:build !solution
package blowfish
// #cgo pkg-config: libcrypto
// #cgo CFLAGS: -Wno-deprecated-declarations
// #include <openssl/blowfish.h>
import "C"
type Blowfish struct {
}
func New(key []byte) *Blowfish {
panic("implement me")
}