You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -47,11 +47,21 @@ public void encryptWithAssociatedData() {
47
47
<dependency>
48
48
<groupId>org.cryptomator</groupId>
49
49
<artifactId>siv-mode</artifactId>
50
-
<version>1.2.1</version>
50
+
<version>1.3.0</version>
51
51
</dependency>
52
52
</dependencies>
53
53
```
54
54
55
+
## JMPS
56
+
57
+
From version 1.3.0 onwards this library is an explicit module with the name `org.cryptomator.siv`. You can use it by adding the following line to your `module-info.java`.
58
+
59
+
```java
60
+
requires org.cryptomator.siv;
61
+
```
62
+
63
+
Because BouncyCastle classes are shaded, this library only depends on `java.base`.
64
+
55
65
## License
56
66
Distributed under the MIT X Consortium license. See the LICENSE file for more info.
0 commit comments