Skip to content

Commit

Permalink
Support RS384 and RS512 (firebase#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
joostfaassen authored and robertdimarco committed Jun 19, 2017
1 parent 3aa3d97 commit 7f72b48
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/JWT.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ class JWT
'HS512' => array('hash_hmac', 'SHA512'),
'HS384' => array('hash_hmac', 'SHA384'),
'RS256' => array('openssl', 'SHA256'),
'RS384' => array('openssl', 'SHA384'),
'RS512' => array('openssl', 'SHA512'),
);

/**
Expand Down

0 comments on commit 7f72b48

Please sign in to comment.