aboutsummaryrefslogtreecommitdiff
path: root/matrix/nocrypto.go
diff options
context:
space:
mode:
Diffstat (limited to 'matrix/nocrypto.go')
-rw-r--r--matrix/nocrypto.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/matrix/nocrypto.go b/matrix/nocrypto.go
new file mode 100644
index 0000000..979afda
--- /dev/null
+++ b/matrix/nocrypto.go
@@ -0,0 +1,13 @@
+// This contains no-op stubs of the methods in crypto.go for non-cgo builds with crypto disabled.
+
+// +build !cgo
+
+package matrix
+
+func isBadEncryptError(err error) bool {
+ return false
+}
+
+func (c *Container) initCrypto() error {
+ return nil
+}