Skip to content

Commit

Permalink
release fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
max402 committed Nov 28, 2023
1 parent 9dad621 commit 2be11ec
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
/**
* Cryptographic message syntax document encoder/decoder - see
*
* @see <a href=https://en.wikipedia.org/wiki/Cryptographic_Message_Syntax">CMS
* @see <a href="https://en.wikipedia.org/wiki/Cryptographic_Message_Syntax">CMS
* wiki</a>
*/
@Slf4j
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* It means that path/to/file is encrypted to cipher(path)/cipher(to)/cipher(file) and each invocation of example:
* cipher(path) will yield same string, but cipher(path)/cipher(path) will not yield same segments -
* it will be more like abc/cde and not like abc/abc.
* Additionally each segment is authenticated against its parent path hash, so attacker can't
* Additionally, each segment is authenticated against its parent path hash, so attacker can't
* move a/file to b/file without being detected.
*/
@Slf4j
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<version>3.1.0</version>
<configuration>
<keyname>[email protected]</keyname>
<gpgArguments>
Expand All @@ -627,8 +627,9 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.0</version>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<additionalOptions>-Xdoclint:none</additionalOptions>
</configuration>
<executions>
<execution>
Expand Down

0 comments on commit 2be11ec

Please sign in to comment.