We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71fee59 commit c529b5dCopy full SHA for c529b5d
1 file changed
src/main/java/org/apache/commons/codec/digest/UnixCrypt.java
@@ -22,7 +22,7 @@
22
import java.util.regex.Pattern;
23
24
/**
25
- * Unix crypt(3) algorithm implementation.
+ * Unix <a href="https://man7.org/linux/man-pages/man3/crypt.3.html">crypt(3)</a> algorithm implementation.
26
* <p>
27
* This class only implements the traditional 56 bit DES based algorithm. Please use Crypt.crypt() for a method
28
* that distinguishes between all the algorithms supported in the current glibc's crypt().
@@ -33,7 +33,7 @@
33
* </p>
34
35
* This class is slightly incompatible if the given salt contains characters that are not part of the allowed range
36
- * [a-zA-Z0-9./].
+ * {@code [a-zA-Z0-9./]}.
37
38
39
* This class is immutable and thread-safe.
0 commit comments