I'm creating a website on which each new user created (that's what I'm doing for now) will have a auth-key
generated which is in Base64 encoding
. The auth-key
is important as almost all actions performed will require the auth-key
of the user. The problem started when I read this article on Base64-Padding
and created a few users with more or less the same unique-name
(the encryption is done using the unique-name
and LocalDateTime
at which the user is created). I saw that the keys generated are all very similar to one-another. And then I went through a few more resources and found it is extremely easy to decode it.
Ever since I've been wondering what are the security flaws that I'm facing if I use Base64 encoding
? How bad is it? How vulnerable the website will be etc.?
Apart from the above questions I want to know when should I be using Base64 encoding and when I should not? Also what should I use if not Base64
?
Note: I'm generating auth-key
in Java and the encryption is in AES
.
Thank you.