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 19bd240 commit fb18c27Copy full SHA for fb18c27
src/main/java/com/thealgorithms/ciphers/DES.java
@@ -1,7 +1,7 @@
1
package com.thealgorithms.ciphers;
2
3
/**
4
- * This class is build to demonstrate the application of the DES-algorithm on a
+ * This class is build to demonstrate the application of the DES-algorithm (https://en.wikipedia.org/wiki/Data_Encryption_Standard) on a
5
* plain English message. The supplied key must be in form of a 64 bit binary String.
6
*/
7
public class DES {
@@ -341,4 +341,4 @@ public String decrypt(String message) {
341
return decryptedMessage.toString().replace("\0", ""); // Get rid of the null bytes used for padding
342
}
343
344
-}
+}
0 commit comments