How Google,yahoo and other top level mail services securing passwords ?
What technology they are using for securing and storing ?
How they managing mail passwords ?
From serverfault
Kumar P
-
Well I don't believe that any of us can say definitively what any of those companies are using, but it is highly likely that all of them are using some form of one-way hash to store the passwords. Using any other type of password storage would be highly irresponsible. SHA-1 and MD5 are frequently used for this type of hashing.
As far as what they're using to manage passwords, it's probably safe to say that they're all using a custom-built account system that interfaces with their back-end mail delivery and transport systems.
Zoredache : You can probably get a pretty good idea how Google works by looking at their [provisioning API](http://code.google.com/googleapps/domain/gdata_provisioning_api_v2.0_reference.html). GoogleApps passwords set via the API can be stored as an unsalted SHA1 or MD5.From ErikA
0 comments:
Post a Comment