mirror of
https://github.com/tulir/mautrix-whatsapp
synced 2024-11-04 05:49:15 +01:00
17 lines
388 B
Go
17 lines
388 B
Go
//go:build !cgo || nocrypto
|
|
|
|
package main
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func NewCryptoHelper(bridge *Bridge) Crypto {
|
|
if !bridge.Config.Bridge.Encryption.Allow {
|
|
bridge.Log.Warnln("Bridge built without end-to-bridge encryption, but encryption is enabled in config")
|
|
}
|
|
bridge.Log.Debugln("Bridge built without end-to-bridge encryption")
|
|
return nil
|
|
}
|
|
|
|
var NoSessionFound = errors.New("nil")
|