Remove expired nonces from the database.
Implements hook_cron().
function openid_cron() { db_delete('openid_nonce') ->condition('expires', REQUEST_TIME, '<') ->execute(); }