Can anyone help me with this...I m a beginner
Kabir (2021) develops a data encryption algorithm recently, with the following features: A data to be sent along across a network is taken as a single string. However, the minimum number of characters in a string has to be three (3) The string is then divided into two roughly equal substrings, A and B. Each of the substrings A and B are then encoded in a reverse order. To further encrypt the string data, vowels in the substrings are encoded as follows: Vowel Encoding Number a 1 e 5 i 3 o 2 u 4 To send the original string data from its source, the encrypted substrings A and B are concatenated with A coming after B. At the receiving end, Steps (ii) and (iii) are repeated on the sent encrypted string, in order to decrypt it. All the encoding numbers in Step (iv) are converted to their respective characters in the received string. Task: Implement a java / C# Program named Encrypt for the PQRâs encrypting algorithm.