Implement some operations

This commit is contained in:
Paul Schaub 2024-12-12 13:33:17 +01:00
parent 1af2a3c121
commit cc4870219a
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
18 changed files with 802 additions and 58 deletions

View file

@ -10,6 +10,7 @@
</parent>
<artifactId>bcsop</artifactId>
<packaging>jar</packaging>
<properties>
<maven.compiler.source>21</maven.compiler.source>
@ -30,6 +31,23 @@
<groupId>org.bouncycastle</groupId>
<artifactId>bcpg-jdk18on</artifactId>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcutil-jdk18on</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>