aboutsummaryrefslogtreecommitdiff
path: root/id.server/src
diff options
context:
space:
mode:
authorrudolf <rudolf@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-08-11 08:43:52 +0000
committerrudolf <rudolf@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-08-11 08:43:52 +0000
commitfc4ece44b4c0abc17305cc9c5b6e26406aeb5ef8 (patch)
tree865bb179788acffa77d3bcbb0e28c7c56cccc9de /id.server/src
parentf4a424e480b4c95734f82ea3d293a2dd0fbdf7b5 (diff)
downloadmoa-id-spss-fc4ece44b4c0abc17305cc9c5b6e26406aeb5ef8.tar.gz
moa-id-spss-fc4ece44b4c0abc17305cc9c5b6e26406aeb5ef8.tar.bz2
moa-id-spss-fc4ece44b4c0abc17305cc9c5b6e26406aeb5ef8.zip
removed todo, tests ok
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@434 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'id.server/src')
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/auth/AuthenticationServer.java2
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/auth/parser/IdentityLinkAssertionParser.java1
-rw-r--r--id.server/src/at/gv/egovernment/moa/id/auth/validator/VerifyXMLSignatureResponseValidator.java2
3 files changed, 0 insertions, 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)) {