java - Base64 encrypted Allowed Characters -


i'm using base64 encryption encryping user id field in java.

string abc = new string(base64.encodebase64("actualuseridfield")); 

i want know whether string abc above contain character " , : or not?

when base64 encrypted string returned in abc, ever contain below characters?

" <double quote>  , <comma>  : <colon> 

can 1 shed light?

you not see commas, colons, or double quotes in base64 encoded string. see equals signs since they're used pad ending content.


Comments

Popular posts from this blog

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -