Skip to content
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
*
* https://www.internationaljournalcorner.com/index.php/ijird_ojs/article/view/134688
*/
public final class AESCrypt extends SymmetricCipher {
public final class AES_Crypt extends SymmetricCipher {

// Number of words in a block
private static final int WB = 4;
Expand Down Expand Up @@ -1404,7 +1404,7 @@ private void implDecryptBlock(byte[] c, int co, byte[] p, int po) {
* @param cipher [out] the encrypted ciphertext output.
* @param cOff [in] the ciphertext offset in the array of bytes.
*/
public void encryptBlock(byte[] plain, int pOff, byte[] cipher, int cOff) {
void encryptBlock(byte[] plain, int pOff, byte[] cipher, int cOff) {
implEncryptBlock(plain, pOff, cipher, cOff);
}

Expand All @@ -1416,7 +1416,7 @@ public void encryptBlock(byte[] plain, int pOff, byte[] cipher, int cOff) {
* @param plain [out] the decrypted plaintext output.
* @param pOff [in] the plaintext offset in the array of bytes.
*/
public void decryptBlock(byte[] cipher, int cOff, byte[] plain, int pOff) {
void decryptBlock(byte[] cipher, int cOff, byte[] plain, int pOff) {
implDecryptBlock(cipher, cOff, plain, pOff);
}
}