Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit 9591a30

Browse files
replacing the <br> elements by<p> elements for javadoc
1 parent 50357c4 commit 9591a30

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

src/main/java/com/venafi/vcert/sdk/connectors/cloud/SealedBoxUtility.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,19 @@
1313

1414

1515
/**
16+
* <p>
1617
* The following utility is based on the SealBoxUtility code shared in the stackoverflow question
1718
* <a href="https://stackoverflow.com/questions/42456624/how-can-i-create-or-open-a-libsodium-compatible-sealed-box-in-pure-java">
1819
* How can I create or open a libsodium compatible sealed box in pure Java</a>.
19-
* <br></br>
20+
* </p>
21+
* <p>
2022
* The main difference is on this version is being used the <a href="https://github.com/bcgit/bc-java/blob/master/core/src/main/java/org/bouncycastle/crypto/digests/Blake2bDigest.java">
2123
* org.bouncycastle.crypto.digests.Blake2bDigest</a> from <a href="https://github.com/bcgit/bc-java">The Bouncy Castle Crypto Package For Java</a>
2224
* instead of <a href="https://github.com/alphazero/Blake2b">Blake2b</a> to get the Blake2b hash.
23-
* <br></br>
24-
*
25+
* <p/>
26+
* <p>
2527
* Has also a dependency on TweetNaclFast from <a href="https://github.com/InstantWebP2P/tweetnacl-java">https://github.com/InstantWebP2P/tweetnacl-java</a>.
26-
*
28+
* </p>
2729
*
2830
*/
2931
public class SealedBoxUtility {

0 commit comments

Comments
 (0)