Add wiki link for DES (#4173)

This commit is contained in:
Aditya Pal 2023-05-01 00:52:19 +05:30 committed by GitHub
parent 19bd2408ff
commit fb18c27905
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,7 @@
package com.thealgorithms.ciphers;
/**
* 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
* plain English message. The supplied key must be in form of a 64 bit binary String.
*/
public class DES {
@ -341,4 +341,4 @@ public class DES {
return decryptedMessage.toString().replace("\0", ""); // Get rid of the null bytes used for padding
}
}
}