Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a secure random string generator for par URN generator #258

Open
wants to merge 1 commit into
base: 3.0.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import org.wso2.carbon.identity.oauth2.bean.OAuthClientAuthnContext;
import org.wso2.carbon.identity.oauth2.model.OAuth2Parameters;

import java.security.SecureRandom;
import java.time.Instant;
import java.util.List;
import java.util.Map;
Expand Down Expand Up @@ -122,8 +123,9 @@ public Response parPost(@Context HttpServletRequest request, @Context HttpServle
requestJWT = paramMap.get(REQUEST).toString();
}

// Generate a urn with cryptographically strong pseudo random algorithm
String urn = RandomStringUtils.randomAlphanumeric(32);
// Generates a "secure" random string with 32 characters only using alphanumeric characters.
String urn = RandomStringUtils.random(32, 0, 0, true, true, null,
new SecureRandom());

OpenBankingConfigurationService openBankingConfigurationService = getOBConfigService();

Expand Down
Loading