-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for getAggregateTorusKey
- Loading branch information
1 parent
c83e775
commit e1642dc
Showing
3 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
torusdirect/src/main/java/org/torusresearch/torusdirect/types/TorusSubVerifierInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package org.torusresearch.torusdirect.types; | ||
|
||
public class TorusSubVerifierInfo { | ||
String verifier; | ||
String idToken; | ||
|
||
public TorusSubVerifierInfo(String verifier, String idToken) { | ||
this.verifier = verifier; | ||
this.idToken = idToken; | ||
} | ||
|
||
public String getVerifier() { | ||
return verifier; | ||
} | ||
|
||
public String getIdToken() { | ||
return idToken; | ||
} | ||
} |