From fb18c27905ce136967da707cf014a1f07ba64ab9 Mon Sep 17 00:00:00 2001 From: Aditya Pal Date: Mon, 1 May 2023 00:52:19 +0530 Subject: [PATCH] Add wiki link for DES (#4173) --- src/main/java/com/thealgorithms/ciphers/DES.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/thealgorithms/ciphers/DES.java b/src/main/java/com/thealgorithms/ciphers/DES.java index 8b226e284..aae8282ea 100644 --- a/src/main/java/com/thealgorithms/ciphers/DES.java +++ b/src/main/java/com/thealgorithms/ciphers/DES.java @@ -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 } -} \ No newline at end of file +}