aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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();
}