Skip to content

Commit 7f72b48

Browse files
joostfaassenrobertdimarco
authored andcommitted
Support RS384 and RS512 (#117)
1 parent 3aa3d97 commit 7f72b48

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/JWT.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ class JWT
4242
'HS512' => array('hash_hmac', 'SHA512'),
4343
'HS384' => array('hash_hmac', 'SHA384'),
4444
'RS256' => array('openssl', 'SHA256'),
45+
'RS384' => array('openssl', 'SHA384'),
46+
'RS512' => array('openssl', 'SHA512'),
4547
);
4648

4749
/**

0 commit comments

Comments
 (0)