gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libeufin] branch master updated: fix keys order


From: gnunet
Subject: [libeufin] branch master updated: fix keys order
Date: Thu, 21 Nov 2019 05:33:55 +0100

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new d165285  fix keys order
d165285 is described below

commit d165285c5ad704a8998d7ec35932863c7c641730
Author: Marcello Stanisci <address@hidden>
AuthorDate: Thu Nov 21 05:33:46 2019 +0100

    fix keys order
---
 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
index a3d528e..1124953 100644
--- 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)
                 }
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]