commit d165285c5ad704a8998d7ec35932863c7c641730 parent e8b5e07b8f2d27a840848e01540a01dce45d2dc8 Author: Marcello Stanisci <stanisci.m@gmail.com> Date: Thu, 21 Nov 2019 05:33:46 +0100 fix keys order Diffstat:
| M | nexus/src/main/kotlin/Main.kt | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/nexus/src/main/kotlin/Main.kt b/nexus/src/main/kotlin/Main.kt @@ -774,8 +774,8 @@ fun main() { transaction { val subscriber = EbicsSubscriberEntity.findById(id) ?: throw SubscriberNotFoundError(HttpStatusCode.NotFound) - subscriber.encryptionPrivateKey = SerialBlob(authKey.encoded) - subscriber.authenticationPrivateKey = SerialBlob(encKey.encoded) + subscriber.encryptionPrivateKey = SerialBlob(encKey.encoded) + subscriber.authenticationPrivateKey = SerialBlob(authKey.encoded) subscriber.signaturePrivateKey = SerialBlob(sigKey.encoded) }