diff options
author | tailor <cygnus@janrain.com> | 2008-02-07 21:19:08 +0000 |
---|---|---|
committer | tailor <cygnus@janrain.com> | 2008-02-07 21:19:08 +0000 |
commit | 1af2d62be0011b1a5de659de280b811bfbcf0ff7 (patch) | |
tree | 9cab4f40856c55642e9b2eb352f1037662bdaf70 /Auth | |
parent | e6c09bdc9e75d74d456cb5deba8134cd7f36bb44 (diff) | |
download | php-openid-1af2d62be0011b1a5de659de280b811bfbcf0ff7.zip php-openid-1af2d62be0011b1a5de659de280b811bfbcf0ff7.tar.gz php-openid-1af2d62be0011b1a5de659de280b811bfbcf0ff7.tar.bz2 |
[project @ Add HMAC-SHA256 to plaintext consumer session assoc types]
Diffstat (limited to 'Auth')
-rw-r--r-- | Auth/OpenID/Consumer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/OpenID/Consumer.php b/Auth/OpenID/Consumer.php index 7c1e6d5..d5fd53f 100644 --- a/Auth/OpenID/Consumer.php +++ b/Auth/OpenID/Consumer.php @@ -518,7 +518,7 @@ class Auth_OpenID_DiffieHellmanSHA256ConsumerSession extends */ class Auth_OpenID_PlainTextConsumerSession { var $session_type = 'no-encryption'; - var $allowed_assoc_types = array('HMAC-SHA1'); + var $allowed_assoc_types = array('HMAC-SHA1', 'HMAC-SHA256'); function getRequest() { |