Files
eway/internal/crypto/decrypt_off.go
2024-01-29 00:09:30 +03:00

11 lines
226 B
Go

//go:build !encon
// +build !encon
package crypto
import "git.loyso.art/frx/eway/internal/entity"
func Decrypt(hexedcipher string) (plaintext string, err error) {
return "", entity.SimpleError("this feature turned off")
}