Searched refs:nonce (Results 51 - 75 of 96) sorted by relevance

1234

/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/restlet/ext/oauth2/flow/responseTypes/
H A DIDTokenResponseType.java68 final String nonce = (String) data.get(OAuth2Constants.Custom.NONCE);
74 null, nonce, request, codeChallenge, codeChallengeMethod);
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/legacy/
H A DCoreToken.java60 String nonce, String grantType){
68 setNonce(nonce);
115 protected void setNonce(String nonce){ argument
116 this.put(OAuth2Constants.Custom.NONCE, stringToSet(nonce));
59 CoreToken(String id, String userName, String realm, long expireTime, String tokenType, String tokenName, String nonce, String grantType) argument
H A DLegacyJwtTokenAdapter.java63 protected void setNonce(String nonce) { argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/
H A DEncryptableNameIdentifier.java94 * @param nonce
99 String nonce ) throws FSException {
102 format == null || nonce == null) {
108 _nonce = nonce;
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/common/
H A DEncryptableNameIdentifier.java97 * @param nonce
102 String nonce ) throws FSException {
105 format == null || nonce == null) {
111 _nonce = nonce;
/forgerock/openam-v13/openam-oauth/samples/StockService/lib/
H A Doauth-filter-0.1-SNAPSHOT.jar ... util.Iterator i$ String key String timestamp String nonce long now long stamp com.sun.identity. ...
/forgerock/openam-v13/openam-sts/openam-common-sts/src/test/java/org/forgerock/openam/sts/service/invocation/
H A DOpenIdConnectTokenGenerationStateTest.java94 builder.nonce(NONCE);
H A DTokenGenerationServiceInvocationStateTest.java118 .nonce(NONCE)
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openidconnect/
H A DOpenIdConnectToken.java91 * @param nonce The nonce.
103 long authTime, String nonce, String ops, String atHash, String cHash, String acr, List<String> amr,
122 setNonce(nonce);
246 * Sets the nonce.
248 * @param nonce The nonce.
250 private void setNonce(String nonce) { argument
251 set(OAuth2Constants.JWTTokenParams.NONCE, nonce);
100 OpenIdConnectToken(String signingKeyId, String encryptionKeyId, byte[] clientSecret, KeyPair signingKeyPair, Key encryptionKey, String signingAlgorithm, String encryptionAlgorithm, String encryptionMethod, boolean isIDTokenEncryptionEnabled, String iss, String sub, String aud, String azp, long exp, long iat, long authTime, String nonce, String ops, String atHash, String cHash, String acr, List<String> amr, String auditTrackingId, String realm) argument
/forgerock/openam/openam-sts/openam-common-sts/src/test/java/org/forgerock/openam/sts/service/invocation/
H A DOpenIdConnectTokenGenerationStateTest.java94 builder.nonce(NONCE);
H A DTokenGenerationServiceInvocationStateTest.java118 .nonce(NONCE)
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DAuthorizationCodeGrantTypeHandler.java152 final String nonce = authorizationCode.getNonce();
153 accessToken.addExtraData(OAuth2Constants.Custom.NONCE, nonce);
H A DAuthorizationTokenIssuer.java86 final String nonce = request.getParameter(OAuth2Constants.Custom.NONCE);
106 resourceOwner, clientId, redirectUri, nonce, request, codeChallenge, codeChallengeMethod);
H A DDeviceCode.java54 public DeviceCode(String deviceCode, String userCode, String resourceOwnerId, String clientId, String nonce, argument
64 setStringProperty(OAuth2Constants.JWTTokenParams.NONCE, nonce);
122 * @return The nonce.
/forgerock/openam-v13/openam-sts/openam-soap-sts/openam-soap-sts-server/src/main/java/org/forgerock/openam/sts/soap/token/provider/oidc/
H A DSoapOpenIdConnectTokenProvider.java52 OpenIdConnect defines a nonce claim, which must be sent by the client in the Authentication Request, and which will
56 consumable across soap-toolkits may be problematic. For the moment, the nonce will simply be set to null, as it is
228 String nonce) throws TokenCreationException {
232 authTimeInSeconds, nonce, getTokenGenerationServiceConsumptionToken());
226 getAssertion(ValidationInvocationContext validationInvocationContext, String authNContextClassRef, Set<String> authenticationMethodReferences, long authTimeInSeconds, String nonce) argument
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DAuthorizationCode.java73 * @param nonce The nonce.
76 String claims, long expiryTime, String nonce, String realm, String authModules, String acr,
87 setStringProperty(NONCE, nonce);
211 * Gets the nonce.
213 * @return The nonce.
75 AuthorizationCode(String code, String resourceOwnerId, String clientId, String redirectUri, Set<String> scope, String claims, long expiryTime, String nonce, String realm, String authModules, String acr, String ssoTokenId, String codeChallenge, String codeChallengeMethod, String authGrantId, String auditId) argument
H A DAuthorizationCodeGrantTypeHandler.java157 final String nonce = authorizationCode.getNonce();
158 accessToken.addExtraData(OAuth2Constants.Custom.NONCE, nonce);
H A DAuthorizationTokenIssuer.java97 final String nonce = request.getParameter(OAuth2Constants.Custom.NONCE);
117 resourceOwner, clientId, redirectUri, nonce, request, codeChallenge, codeChallengeMethod);
H A DDeviceCode.java56 public DeviceCode(String deviceCode, String userCode, String resourceOwnerId, String clientId, String nonce, argument
66 setStringProperty(OAuth2Constants.JWTTokenParams.NONCE, nonce);
125 * @return The nonce.
/forgerock/openam/openam-sts/openam-soap-sts/openam-soap-sts-server/src/main/java/org/forgerock/openam/sts/soap/token/provider/oidc/
H A DSoapOpenIdConnectTokenProvider.java54 OpenIdConnect defines a nonce claim, which must be sent by the client in the Authentication Request, and which will
58 consumable across soap-toolkits may be problematic. For the moment, the nonce will simply be set to null, as it is
230 String nonce) throws TokenCreationException {
237 authTimeInSeconds, nonce, consumptionToken);
228 getAssertion(ValidationInvocationContext validationInvocationContext, String authNContextClassRef, Set<String> authenticationMethodReferences, long authTimeInSeconds, String nonce) argument
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DStatefulTokenStore.java157 String redirectUri, String nonce, OAuth2Request request, String codeChallenge, String codeChallengeMethod)
185 redirectUri, scope, getClaimsFromRequest(request), expiryTime, nonce, realm,
251 String authorizationParty, String nonce, String ops, OAuth2Request request)
315 nonce, opsId, atHash, cHash, acr, amr, IdGenerator.DEFAULT.generate(), realm);
512 RefreshToken refreshToken, String nonce, String claims, OAuth2Request request)
515 redirectUri, scope, refreshToken, nonce, claims, request,
524 RefreshToken refreshToken, String nonce, String claims, OAuth2Request request, long authTime)
550 grantType, nonce, realm, claims, auditId, authTime, confirmationJwk);
894 public DeviceCode createDeviceCode(Set<String> scope, ResourceOwner resourceOwner, String clientId, String nonce, argument
936 final DeviceCode code = new DeviceCode(deviceCode, userCode, resourceOwnerId, clientId, nonce,
156 createAuthorizationCode(Set<String> scope, ResourceOwner resourceOwner, String clientId, String redirectUri, String nonce, OAuth2Request request, String codeChallenge, String codeChallengeMethod) argument
250 createOpenIDToken(ResourceOwner resourceOwner, String clientId, String authorizationParty, String nonce, String ops, OAuth2Request request) argument
510 createAccessToken(String grantType, String accessTokenType, String authorizationCode, String resourceOwnerId, String clientId, String redirectUri, Set<String> scope, RefreshToken refreshToken, String nonce, String claims, OAuth2Request request) argument
522 createAccessToken(String grantType, String accessTokenType, String authorizationCode, String resourceOwnerId, String clientId, String redirectUri, Set<String> scope, RefreshToken refreshToken, String nonce, String claims, OAuth2Request request, long authTime) argument
[all...]
H A DStatelessTokenStore.java141 String redirectUri, String nonce, OAuth2Request request, String codeChallenge, String codeChallengeMethod)
143 return statefulTokenStore.createAuthorizationCode(scope, resourceOwner, clientId, redirectUri, nonce, request,
150 String nonce, String claims, OAuth2Request request) throws ServerException, NotFoundException {
152 redirectUri, scope, refreshToken, nonce, claims, request,
159 String nonce, String claims, OAuth2Request request, long authTime)
605 public DeviceCode createDeviceCode(Set<String> scope, ResourceOwner resourceOwner, String clientId, String nonce, argument
609 return statefulTokenStore.createDeviceCode(scope, resourceOwner, clientId, nonce, responseType, state,
140 createAuthorizationCode(Set<String> scope, ResourceOwner resourceOwner, String clientId, String redirectUri, String nonce, OAuth2Request request, String codeChallenge, String codeChallengeMethod) argument
148 createAccessToken(String grantType, String accessTokenType, String authorizationCode, String resourceOwnerId, String clientId, String redirectUri, Set<String> scope, RefreshToken refreshToken, String nonce, String claims, OAuth2Request request) argument
157 createAccessToken(String grantType, String accessTokenType, String authorizationCode, String resourceOwnerId, String clientId, String redirectUri, Set<String> scope, RefreshToken refreshToken, String nonce, String claims, OAuth2Request request, long authTime) argument
/forgerock/openam-v13/openam-oauth2/src/main/java/org/forgerock/openam/oauth2/
H A DOpenAMTokenStore.java147 String redirectUri, String nonce, OAuth2Request request, String codeChallenge, String codeChallengeMethod)
167 redirectUri, scope, getClaimsFromRequest(request), expiryTime, nonce, realmNormaliser.normalise(request.<String>getParameter(REALM)),
233 String authorizationParty, String nonce, String ops, OAuth2Request request)
281 authTime, nonce, opsId, atHash, cHash, acr, amr, realm);
474 RefreshToken refreshToken, String nonce, String claims, OAuth2Request request)
495 scope, expiryTime, null, OAuth2Constants.Token.OAUTH_ACCESS_TOKEN, grantType, nonce,
500 nonce, realm, claims, auditId);
822 public DeviceCode createDeviceCode(Set<String> scope, ResourceOwner resourceOwner, String clientId, String nonce, argument
859 final DeviceCode code = new DeviceCode(deviceCode, userCode, resourceOwnerId, clientId, nonce,
146 createAuthorizationCode(Set<String> scope, ResourceOwner resourceOwner, String clientId, String redirectUri, String nonce, OAuth2Request request, String codeChallenge, String codeChallengeMethod) argument
232 createOpenIDToken(ResourceOwner resourceOwner, String clientId, String authorizationParty, String nonce, String ops, OAuth2Request request) argument
472 createAccessToken(String grantType, String accessTokenType, String authorizationCode, String resourceOwnerId, String clientId, String redirectUri, Set<String> scope, RefreshToken refreshToken, String nonce, String claims, OAuth2Request request) argument
/forgerock/opendj-b2.6/src/server/org/opends/server/tools/
H A DLDAPAuthenticationHandler.java1599 // particular, look at the realm, the nonce, the QoP modes, and the charset.
1604 String nonce = null;
1663 else if (tokenName.equals("nonce"))
1665 nonce = tokenValue;
1697 // Make sure that the nonce was included in the response from the server.
1698 if (nonce == null)
1718 nonce, cnonce, nonceCount,
1747 credBuffer.append(",nonce=\"");
1748 credBuffer.append(nonce);
1940 realm, nonce, cnonc
2161 generateDigestMD5Response(String authID, String authzID, ByteSequence password, String realm, String nonce, String cnonce, String nonceCount, String digestURI, String qop, String charset) argument
2274 generateDigestMD5RspAuth(String authID, String authzID, ByteSequence password, String realm, String nonce, String cnonce, String nonceCount, String digestURI, String qop, String charset) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/tools/
H A DLDAPAuthenticationHandler.java1598 // particular, look at the realm, the nonce, the QoP modes, and the charset.
1603 String nonce = null;
1662 else if (tokenName.equals("nonce"))
1664 nonce = tokenValue;
1696 // Make sure that the nonce was included in the response from the server.
1697 if (nonce == null)
1717 nonce, cnonce, nonceCount,
1746 credBuffer.append(",nonce=\"");
1747 credBuffer.append(nonce);
1939 realm, nonce, cnonc
2160 generateDigestMD5Response(String authID, String authzID, ByteSequence password, String realm, String nonce, String cnonce, String nonceCount, String digestURI, String qop, String charset) argument
2273 generateDigestMD5RspAuth(String authID, String authzID, ByteSequence password, String realm, String nonce, String cnonce, String nonceCount, String digestURI, String qop, String charset) argument
[all...]

Completed in 156 milliseconds

1234