Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know of any API key generator script/class for PHP? The class should have method generate, that would generate a key and isValid() method, to check if the key is valid.

share|improve this question
1  
If you can provide more information on the intended use, answering might be a little simpler... are the keys stored somewhere - like a DB? is there any client/server communication? – J.C. Inacio Sep 19 '09 at 13:28
Would a GUID work? – nilamo Sep 19 '09 at 15:34
GUID is the same as #1 in my answer. We tried UUID. 34-char is too big for our taste. It looks like "3B90E4C1-C4D4-D204-ECB3-0CDB0F0A2E50". If you can accept that, go for it. – ZZ Coder Sep 19 '09 at 15:39

4 Answers

There are multiple ways to generate API keys. I've used following 3 methods depending on the applications,

  1. Base62(random). Generate a large secure random number and Base-62 encode it. The key looks like "w5vt2bjzf8ryp63t". This is good for self-provisioned system. You don't have to worry about collision and inappropriate keys. You have to check database to know if the key is valid.

  2. Base62(MD5-HMAC(key, Normalize(referer))). This works great if the API is only allowed from one site. Just check the HMAC of the normalized referer and you know if the key is valid, no database access. You need to keep the HMAC key secret to do this.

  3. Human assigned friendly names like "example.com". This works great if API users are required to own a domain or they are your corporate partners.

Please keep in mind that there is no security in API keys. It's just a name assigned to your API application. More and more people are using terms like "App ID" or "Dev ID" to reflect what it really is. You have to assign another secret key if you want secure your protocol, like consumer_key/consumer_secret in OAuth.

share|improve this answer
Curiosity: Why specifically base62? Why not base64 for example? – Chris Harrison Nov 28 '11 at 7:57
5  
Base 62 restricts the resulting charset to (A-Za-z0-9). (26+26+10=62) This means you may be able to make certain convenient assumptions in your app about the makeup of keys. They also appear more consistent (since they are just alphanumeric) than Base64. – rinogo Jan 11 '12 at 22:26

just use something like this (pseudo code) sha1(salt + time + mac-addr + another salt + some other random data) crc32 or md5 would also work inestead of sha1 and store it in a database and then isValid() checks the db if the key exists?

share|improve this answer
That was my first thought :). – xpepermint Sep 19 '09 at 13:14
Dont forget that you can't just take the SHA1 (or any other hash) checksum and check if it's "valid", unless you provide all the other data as well... – J.C. Inacio Sep 19 '09 at 13:32
you can't find mac address of the target computer if not on your local network. don't forget! – dusoft Sep 19 '09 at 15:30
8  
Why would you add multiple salts? That adds only in possibly confusing yourself, not in making anything more 'secure'. – nilamo Sep 19 '09 at 15:32
@nimalo: You're 100% correct, I think I ment to type "other random data" or something there to. – thr Sep 19 '09 at 17:54

Well as it has been mentioned, it is all dependant on the situation. One method that I needed to use was to authenticate a referer url with a specifically assigned API key. So with the API key all that was really needed was (pseudo) key = md5(referer url + name + salt) which you then can have a checksum for. I know it has been mentioned similar to this before, but it is just that way. As for the isValid() function, all you need to do with this is compare it against the checksum and URL.

Edit: Just realised the age of the original question :S

share|improve this answer

Depending on what you want, you can also use something like 3scale to create keys and manage access to the API. It generates keys, but also tracks rate limits, analytics etc. and allows devs on the API to create new keys.

There's a PHP library as one of the connectors: https://support.3scale.net/libraries

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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