views:

155

answers:

1

Hi,

Just trying to understand Flickr's API setup, and how secure it really is.

Flickr API

Why do a MD5 hash and not something like AES?

+1  A: 

The hash is strictly a signature, so a one-way hash like MD5 is good enough for their usage. If there's a collision (unlikely but possible) they'll just re-hash.

No need to make it more complicated than it has to be.

Gavin Miller