Skip to content

Commit

Permalink
feat: support of sending signed emails has been added;
Browse files Browse the repository at this point in the history
  • Loading branch information
smansoft committed Jun 24, 2022
1 parent 0dda64a commit 6bd2860
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* @author Yuriy Movchan Date: 05/13/2015
*/
@IgnoreMediaTypes("application/*+json")
@JsonPropertyOrder({ "version", "issuer", "registration_start", "authentication_start" })
@JsonPropertyOrder({ "version", "issuer", "registration_endpoint", "authentication_endpoint" })
public class U2fConfiguration {

@JsonProperty(value = "version")
Expand Down
9 changes: 9 additions & 0 deletions Server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,11 @@
<artifactId>bcpkix-jdk15on</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcmail-jdk15on</artifactId>
<scope>provided</scope>
</dependency>

<!-- OmniFaces -->
<dependency>
Expand Down Expand Up @@ -1016,6 +1021,10 @@
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcmail-jdk15on</artifactId>
</dependency>
</dependencies>
</profile>

Expand Down

0 comments on commit 6bd2860

Please sign in to comment.