aboutsummaryrefslogtreecommitdiff
path: root/id
diff options
context:
space:
mode:
authorThomas Lenz <tlenz@iaik.tugraz.at>2017-10-11 16:08:57 +0200
committerThomas Lenz <tlenz@iaik.tugraz.at>2017-10-11 16:08:57 +0200
commit1a80e310ed77110a8757b78b750a6a000495b16f (patch)
tree14465678d42e32da5d1291a4cfd05fefbab3f42c /id
parent0815848a43f7040af216b3a909c0c8d06e1db928 (diff)
downloadmoa-id-spss-1a80e310ed77110a8757b78b750a6a000495b16f.tar.gz
moa-id-spss-1a80e310ed77110a8757b78b750a6a000495b16f.tar.bz2
moa-id-spss-1a80e310ed77110a8757b78b750a6a000495b16f.zip
fix wrong eIDAS bPK calculation
Diffstat (limited to 'id')
-rw-r--r--id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/builder/AuthenticationDataBuilder.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/builder/AuthenticationDataBuilder.java b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/builder/AuthenticationDataBuilder.java
index cad3354f5..9e586b0f4 100644
--- a/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/builder/AuthenticationDataBuilder.java
+++ b/id/server/idserverlib/src/main/java/at/gv/egovernment/moa/id/auth/builder/AuthenticationDataBuilder.java
@@ -1118,7 +1118,7 @@ public class AuthenticationDataBuilder extends MOAIDAuthConstants {
}
- Pair<String, String> eIDASID = new BPKBuilder().buildeIDASIdentifer(baseIDType, baseID,
+ Pair<String, String> eIDASID = new BPKBuilder().buildeIDASIdentifer(baseID, baseIDType,
cititzenCountryCode, eIDASOutboundCountry);
Logger.debug("Authenticate user with bPK:" + eIDASID.getFirst() + " Type:" + eIDASID.getSecond());
return eIDASID;