2022-02-10 22:06:57 +00:00
|
|
|
//go:build !solution
|
2021-04-15 08:26:56 +00:00
|
|
|
|
|
|
|
package blowfish
|
|
|
|
|
2022-04-25 01:10:42 +00:00
|
|
|
// #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")
|
|
|
|
}
|