From fc4ece44b4c0abc17305cc9c5b6e26406aeb5ef8 Mon Sep 17 00:00:00 2001 From: rudolf Date: Thu, 11 Aug 2005 08:43:52 +0000 Subject: removed todo, tests ok git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@434 d688527b-c9ab-4aba-bd8d-4036d912da1d --- id.server/src/at/gv/egovernment/moa/id/auth/AuthenticationServer.java | 2 -- .../gv/egovernment/moa/id/auth/parser/IdentityLinkAssertionParser.java | 1 - .../moa/id/auth/validator/VerifyXMLSignatureResponseValidator.java | 2 -- 3 files changed, 5 deletions(-) diff --git a/id.server/src/at/gv/egovernment/moa/id/auth/AuthenticationServer.java b/id.server/src/at/gv/egovernment/moa/id/auth/AuthenticationServer.java index 8cb71402f..5cbe86a25 100644 --- a/id.server/src/at/gv/egovernment/moa/id/auth/AuthenticationServer.java +++ b/id.server/src/at/gv/egovernment/moa/id/auth/AuthenticationServer.java @@ -188,8 +188,6 @@ public class AuthenticationServer implements MOAIDAuthConstants { // bkuSelectionType==HTMLSelect String bkuSelectTag; try { - //TODO full Plattform Support, test with different Templates - bkuSelectTag = readBKUSelectTag(AuthConfigurationProvider.getInstance(), bkuConnParam); } catch (Throwable ex) { throw new AuthenticationException( diff --git a/id.server/src/at/gv/egovernment/moa/id/auth/parser/IdentityLinkAssertionParser.java b/id.server/src/at/gv/egovernment/moa/id/auth/parser/IdentityLinkAssertionParser.java index dd44419da..2df33725a 100644 --- a/id.server/src/at/gv/egovernment/moa/id/auth/parser/IdentityLinkAssertionParser.java +++ b/id.server/src/at/gv/egovernment/moa/id/auth/parser/IdentityLinkAssertionParser.java @@ -276,7 +276,6 @@ public class IdentityLinkAssertionParser { pubKeys.add(ecPubKey); } catch(Exception e) { - //TODO test throw new ECDSAConverterException("parser.03", new Object[] { e.toString() }, e); } } diff --git a/id.server/src/at/gv/egovernment/moa/id/auth/validator/VerifyXMLSignatureResponseValidator.java b/id.server/src/at/gv/egovernment/moa/id/auth/validator/VerifyXMLSignatureResponseValidator.java index 1127b3f43..877df31d5 100644 --- a/id.server/src/at/gv/egovernment/moa/id/auth/validator/VerifyXMLSignatureResponseValidator.java +++ b/id.server/src/at/gv/egovernment/moa/id/auth/validator/VerifyXMLSignatureResponseValidator.java @@ -134,14 +134,12 @@ public class VerifyXMLSignatureResponseValidator { RSAPublicKey rsaPubKeySignature = (RSAPublicKey) pubKeySignature; RSAPublicKey rsakey = (RSAPublicKey) pubKeysIdentityLink[i]; - //TODO check the usage of equals method if (rsakey.getModulus().equals(rsaPubKeySignature.getModulus()) && rsakey.getPublicExponent().equals(rsaPubKeySignature.getPublicExponent())) found = true; } //compare ECDSAPublicKeys - //TODO check implementation if((idl.getPublicKey()[i] instanceof iaik.security.ecc.ecdsa.ECPublicKey) && (pubKeySignature instanceof iaik.security.ecc.ecdsa.ECPublicKey)) { -- cgit v1.2.3