aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-02-08 10:17:05 +0000
committerMario <mario@mariovavti.com>2021-02-08 10:17:05 +0000
commitd316d9436bde512f520c5d1615d107b8e74744df (patch)
tree23323641bfb31ff4278994490d7cfce02e0ab50e
parentb2e4a4b2b109bf99560660d8c179db37238f998f (diff)
downloadvolse-hubzilla-d316d9436bde512f520c5d1615d107b8e74744df.tar.gz
volse-hubzilla-d316d9436bde512f520c5d1615d107b8e74744df.tar.bz2
volse-hubzilla-d316d9436bde512f520c5d1615d107b8e74744df.zip
mixed up variables
-rw-r--r--Zotlabs/Lib/Keyutils.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Lib/Keyutils.php b/Zotlabs/Lib/Keyutils.php
index d4b660c04..616ecfcf6 100644
--- a/Zotlabs/Lib/Keyutils.php
+++ b/Zotlabs/Lib/Keyutils.php
@@ -64,8 +64,8 @@ class Keyutils {
$rsa->loadKey($key);
$rsa->setPublicKey();
- $e = $rsa->modulus->toBytes();
- $m = $rsa->exponent->toBytes();
+ $m = $rsa->modulus->toBytes();
+ $e = $rsa->exponent->toBytes();
}