11 lines
226 B
Go
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")
|
|
}
|