Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I look at ENG_ATOM 128 BIT and I did not find any explanation about this encryption. Simple question: is there anyone who knows about this encryption?

share|improve this question
Off-topic, please read the FAQ. – GregS Jan 7 '12 at 16:56
It's not really encryption, since you don't need a key. It's probably more like Base 64 (using 128 characters instead of 64???). – owlstead Jan 7 '12 at 18:26
Warning to users: the JavaScript in that page is hidden and uses JavaScript eval. Don't enter any confidential information in the page pointed to. Actually, don't click on the link at all. – owlstead Jan 7 '12 at 18:59
OK, that eval() simply "decompresses" the Java Script code. You can look at the source of "atom-128" by showing the JavaScript in e.g. the firefox browser. I used the "Web Developer" plugin to do that. It basically encodes base 64, but with a static, randomized lookup table. It seems undocumented and not fit for encryption/decryption. – owlstead Jan 7 '12 at 19:22
Why do you care? That website screams "Don't use me". – CodesInChaos Jan 7 '12 at 20:05
show 2 more comments

closed as off topic by GregS, Anna Lear Jan 8 '12 at 4:33

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

It's base 64, but with a different order of the characters. It's not encryption/decryption but encoding, basically some kind of fixed key substitution cipher scheme for base 64 that results in the same character set.

"/128GhIoPQROSTeU" +
"bADfgHijKLM+n0pF" +
"WXY456xyzB7=39Va" +
"qrstJklmNuZvwcdE" + "C"

Posted this because the algorithm is not written anywhere on the web (fortunately).

share|improve this answer
Don't you love the "bAD" part of the second string :) – owlstead Jan 7 '12 at 19:28

Not the answer you're looking for? Browse other questions tagged or ask your own question.