Skip to content

Commit fb18c27

Browse files
authored
Add wiki link for DES (TheAlgorithms#4173)
1 parent 19bd240 commit fb18c27

File tree

1 file changed

+2
-2
lines changed
  • src/main/java/com/thealgorithms/ciphers

1 file changed

+2
-2
lines changed

src/main/java/com/thealgorithms/ciphers/DES.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.thealgorithms.ciphers;
22

33
/**
4-
* This class is build to demonstrate the application of the DES-algorithm on a
4+
* This class is build to demonstrate the application of the DES-algorithm (https://en.wikipedia.org/wiki/Data_Encryption_Standard) on a
55
* plain English message. The supplied key must be in form of a 64 bit binary String.
66
*/
77
public class DES {
@@ -341,4 +341,4 @@ public String decrypt(String message) {
341341
return decryptedMessage.toString().replace("\0", ""); // Get rid of the null bytes used for padding
342342
}
343343

344-
}
344+
}

0 commit comments

Comments
 (0)