Recently I was storing my field of database in base 64 encoded format. So that my plain text can not be stolen. But I have doubt that will base 64 decoding lead to duplication of data?
I have crores of rows in my 1 tb database. And I am scared if it makes some mistake, the whole database will be affected.
Please help. All that I want to know is
Does base 64 handles duplication or not?
EDIT :
I have a requirement in my project not to store a database field as plain text. So I am encoding it and decoding it when needed. Fetching data is rarely done. But data hiding is main thing.