Searched refs:timeskew (Results 1 - 12 of 12) sorted by relevance
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/profile/ |
H A D | RequestedSecurityToken.java | 61 * @param timeskew permitted skew between service provider and identity 69 int timeskew) 68 verifyToken(String realm, String hostEntityId, int timeskew) argument
|
H A D | SAML11RequestedSecurityToken.java | 327 * @param timeskew permitted skew between service provider and identity 335 int timeskew) 414 if (!WSFederationUtils.isTimeValid(assertion, timeskew)) { 334 verifyToken(String realm, String hostEntityId, int timeskew) argument
|
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/profile/ |
H A D | RequestedSecurityToken.java | 61 * @param timeskew permitted skew between service provider and identity 69 int timeskew) 68 verifyToken(String realm, String hostEntityId, int timeskew) argument
|
H A D | SAML11RequestedSecurityToken.java | 328 * @param timeskew permitted skew between service provider and identity 336 int timeskew) 415 if (!WSFederationUtils.isTimeValid(assertion, timeskew)) { 335 verifyToken(String realm, String hostEntityId, int timeskew) argument
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/servlet/ |
H A D | RPSigninResponse.java | 148 int timeskew = SAML2Constants.ASSERTION_TIME_SKEW_DEFAULT; 152 timeskew = Integer.parseInt(timeskewStr); 153 if (timeskew < 0) { 154 timeskew = SAML2Constants.ASSERTION_TIME_SKEW_DEFAULT; 158 debug.message(classMethod + "timeskew = " + timeskew); 171 timeskew);
|
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/servlet/ |
H A D | RPSigninResponse.java | 148 int timeskew = SAML2Constants.ASSERTION_TIME_SKEW_DEFAULT; 152 timeskew = Integer.parseInt(timeskewStr); 153 if (timeskew < 0) { 154 timeskew = SAML2Constants.ASSERTION_TIME_SKEW_DEFAULT; 158 debug.message(classMethod + "timeskew = " + timeskew); 171 timeskew);
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/common/ |
H A D | WSFederationUtils.java | 301 * @param timeskew in seconds 303 * - timeskew AND the current time is before the Assertion's notOnOrAfter 304 * time + timeskew 306 public static boolean isTimeValid(Assertion assertion, int timeskew) argument 321 } else if ((notOnOrAfter.getTime() + timeskew * 1000) < timeNow ) { 325 Integer.toString(timeskew), 342 } else if ((notBefore.getTime() - timeskew * 1000) > timeNow ) { 346 Integer.toString(timeskew),
|
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/wsfederation/common/ |
H A D | WSFederationUtils.java | 314 * @param timeskew in seconds 316 * - timeskew AND the current time is before the Assertion's notOnOrAfter 317 * time + timeskew 319 public static boolean isTimeValid(Assertion assertion, int timeskew) argument 334 } else if ((notOnOrAfter.getTime() + timeskew * 1000) < timeNow ) { 338 Integer.toString(timeskew), 355 } else if ((notBefore.getTime() - timeskew * 1000) > timeNow ) { 359 Integer.toString(timeskew),
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/ |
H A D | SAML2Utils.java | 734 int timeskew = SAML2Constants.ASSERTION_TIME_SKEW_DEFAULT; 739 timeskew = Integer.parseInt(timeskewStr); 740 if (timeskew < 0) { 741 timeskew = SAML2Constants.ASSERTION_TIME_SKEW_DEFAULT; 745 debug.message(method + "timeskew = " + timeskew); 750 ((notOnOrAfter.getTime() + timeskew * 1000) < 768 if ((notBefore.getTime() + timeskew * 1000) >
|
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/ |
H A D | IDPSSOUtil.java | 2830 int timeskew = SAML2Constants.ASSERTION_TIME_SKEW_DEFAULT; 2836 timeskew = Integer.parseInt(timeskewStr); 2837 if (timeskew < 0) { 2838 timeskew = SAML2Constants.ASSERTION_TIME_SKEW_DEFAULT; 2842 SAML2Utils.debug.message("timeskew = " + timeskew); 2850 + timeskew * 1000); 2860 long ret = notOnOrAfter.getTime() + timeskew * 1000;
|
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/common/ |
H A D | SAML2Utils.java | 694 int timeskew = SAML2Constants.ASSERTION_TIME_SKEW_DEFAULT; 699 timeskew = Integer.parseInt(timeskewStr); 700 if (timeskew < 0) { 701 timeskew = SAML2Constants.ASSERTION_TIME_SKEW_DEFAULT; 705 debug.message(method + "timeskew = " + timeskew); 710 ((notOnOrAfter.getTime() + timeskew * 1000) < 728 if ((notBefore.getTime() + timeskew * 1000) >
|
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/ |
H A D | IDPSSOUtil.java | 2863 int timeskew = SAML2Constants.ASSERTION_TIME_SKEW_DEFAULT; 2869 timeskew = Integer.parseInt(timeskewStr); 2870 if (timeskew < 0) { 2871 timeskew = SAML2Constants.ASSERTION_TIME_SKEW_DEFAULT; 2875 SAML2Utils.debug.message("timeskew = " + timeskew); 2883 + timeskew * 1000); 2893 long ret = notOnOrAfter.getTime() + timeskew * 1000;
|
Completed in 849 milliseconds