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

[ES-1589] updated the authenticator plugin #55

Open
wants to merge 1 commit into
base: INJICERT-ES-1589
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
updated the authenticator plugin
Signed-off-by: Mohd Kaif Siddique <mohdkaif.siddique@ad.infosys.com>
  • Loading branch information
Mohd Kaif Siddique committed Aug 27, 2024
commit 80614d20116cecf344c49efb31c6783e84549a38
2 changes: 1 addition & 1 deletion sunbird-rc-esignet-integration-impl/pom.xml
Original file line number Diff line number Diff line change
@@ -67,7 +67,7 @@
<dependency>
<groupId>io.mosip.esignet</groupId>
<artifactId>esignet-integration-api</artifactId>
<version>1.2.0</version>
<version>1.5.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>

Original file line number Diff line number Diff line change
@@ -129,6 +129,16 @@ public List<KycSigningCertificateData> getAllKycSigningCertificates() {
return new ArrayList<>();
}

@Override
public KycAuthResult doKycAuth(String relyingPartyId, String clientId, boolean claimsMetadataRequired, KycAuthDto kycAuthDto) throws KycAuthException {
return this.doKycAuth(relyingPartyId, clientId, kycAuthDto);
}

@Override
public KycExchangeResult doVerifiedKycExchange(String relyingPartyId, String clientId, VerifiedKycExchangeDto kycExchangeDto) throws KycExchangeException {
throw new KycExchangeException(ErrorConstants.NOT_IMPLEMENTED);
}

private KycAuthResult validateKnowledgeBasedAuth(String individualId, AuthChallenge authChallenge) throws KycAuthException {

KycAuthResult kycAuthResult= new KycAuthResult();
Loading