Padding In Aes Algorithm
WHY WE NEED PADDING
as aes algo works with fixed size of block , input string which is not multiple of block size can give you error.
for eg
block size of 5
input1 = '12345' -> valid
input2 = '1234567890' -> invalid
input3 = '1234' -> valid
HO...
booleanbug.hashnode.dev2 min read