diff options
author | Mario <mario@mariovavti.com> | 2021-02-08 10:17:05 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-02-08 10:17:05 +0000 |
commit | d316d9436bde512f520c5d1615d107b8e74744df (patch) | |
tree | 23323641bfb31ff4278994490d7cfce02e0ab50e /Zotlabs/Lib/Keyutils.php | |
parent | b2e4a4b2b109bf99560660d8c179db37238f998f (diff) | |
download | volse-hubzilla-d316d9436bde512f520c5d1615d107b8e74744df.tar.gz volse-hubzilla-d316d9436bde512f520c5d1615d107b8e74744df.tar.bz2 volse-hubzilla-d316d9436bde512f520c5d1615d107b8e74744df.zip |
mixed up variables
Diffstat (limited to 'Zotlabs/Lib/Keyutils.php')
-rw-r--r-- | Zotlabs/Lib/Keyutils.php | 4 |
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(); } |