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've seen key IDs used in several places and would like to use them in my program, but I haven't been able to find a description of them. How are they generated?

share|improve this question

3 Answers

up vote 1 down vote accepted

In different formats (PGP, SSH, X.509 certificates) key ID has different meaning. Neither SSH nor X.509 have a "dedicated" concept of key ID, but some people use this term (including their software) - in this case it's usually a hash of the public key or of the certificate in whole.

Update: the comments reminded me that "key identifier" extensions exist in X.509 certifiactes, and they sometimes are being referred to as key IDs. Yet, this is not common - usually the hash (also sometimes called the fingerprint) is referenced as key ID.

share|improve this answer
1  
Actually, there is a concept of "key identifier" for X.509: it is a sequence of opaque bytes which you can include in a certificate extension ("Subject Key Identifier"); you can also include the key identifier from the CA ("Authority Key Identifier") and the point is to help in path building. X.509 does not mandate any specific way to generate a key identifier, it could be just random bytes (but it suggests using a hash value computed over the public key). Key identifiers are optional. – Thomas Pornin Apr 25 '11 at 14:51
@Thomas Excellent, thank you for the reminder! Indeed key identifier extensions exist. Yet in practice what is shown by software and referenced to by people is usually the SHA1 hash of the key. Fingerprint is another synonym. – Eugene Mayevski 'EldoS Corp Apr 25 '11 at 15:46

The "key ID" used for RSA key in GPG/PGP is the last 8 hex digits of the modulus of the key.

share|improve this answer
Other ways to word: 'last 8 hex digits' -> 'the last 4 bytes' and 'modulus of the key' -> 'fingerprint (MD5 or SHA-1 hash) of the key' (two-spaces for linebreaks not working in comments?) – Rondo Oct 6 '11 at 1:45

If you're talking about RSA keys specifically, they are little key-chain-fob-sized key generators that generate a new SecureID every 30 seconds or so. They are used with and synced to authentication services for things like VPN to provide a harder-to-hack way of authenticating a remote user. In my experience, anyway.

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.