diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2017-05-09 16:09:03 +0200 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2017-05-09 16:09:03 +0200 |
commit | d0b3bca1163ebc17560e35f53744137e68dcad8f (patch) | |
tree | c61cc4810cf30ffca26e8776f47c0e79ce16128d | |
parent | 3a80aa7e900c77da7625886f72ee22666ecfae23 (diff) | |
parent | 81dda2c2bbfdb4a5b2fe1a9ac8e6bcb1e2aac928 (diff) | |
download | moa-id-spss-d0b3bca1163ebc17560e35f53744137e68dcad8f.tar.gz moa-id-spss-d0b3bca1163ebc17560e35f53744137e68dcad8f.tar.bz2 moa-id-spss-d0b3bca1163ebc17560e35f53744137e68dcad8f.zip |
Merge branch 'Branch_MOA-ID-3.2.1' into development_preview
-rw-r--r-- | id/server/modules/moa-id-modul-citizencard_authentication/src/main/java/at/gv/egovernment/moa/id/auth/AuthenticationServer.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/id/server/modules/moa-id-modul-citizencard_authentication/src/main/java/at/gv/egovernment/moa/id/auth/AuthenticationServer.java b/id/server/modules/moa-id-modul-citizencard_authentication/src/main/java/at/gv/egovernment/moa/id/auth/AuthenticationServer.java index 66161e508..9294f3658 100644 --- a/id/server/modules/moa-id-modul-citizencard_authentication/src/main/java/at/gv/egovernment/moa/id/auth/AuthenticationServer.java +++ b/id/server/modules/moa-id-modul-citizencard_authentication/src/main/java/at/gv/egovernment/moa/id/auth/AuthenticationServer.java @@ -972,8 +972,9 @@ public class AuthenticationServer extends BaseAuthenticationServer { try { String xmlVerifyXMLSignatureResponse = DOMUtils .serializeNode(domVsresp, true); - Logger.trace(new LogMsg(xmlCreateXMLSignatureReadResponse)); - Logger.trace(new LogMsg(xmlVerifyXMLSignatureResponse)); + Logger.trace("Signature from BKU: " + new LogMsg(xmlCreateXMLSignatureReadResponse)); + Logger.trace("Signature verification request: " + new LogMsg(DOMUtils.serializeNode(domVsreq, true))); + Logger.trace("Signature verification result: " + new LogMsg(xmlVerifyXMLSignatureResponse)); } catch (Throwable t) { t.printStackTrace(); Logger.info(new LogMsg(t.getStackTrace())); |