-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix .env issues encountered earlier. This is only for tests
Support for RSA keys Add a reset option for the token, to lock out people
- Loading branch information
Simon Erkelens
committed
Aug 13, 2017
1 parent
15bf576
commit 0eb96da
Showing
15 changed files
with
277 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
class JWTException extends Exception | ||
{ | ||
public function __construct($message = 'JWT Exception', $code = 1, Throwable $previous = null) | ||
{ | ||
parent::__construct($message, $code, $previous); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
-----BEGIN RSA PRIVATE KEY----- | ||
MIICWgIBAAKBgHMT6iL1pA9RGVK/GDy56zY1T+oWDHzKOjfl4UEfCHRwOqwWwcDD | ||
JwuIVP9Mr+SbDifjR6W5QRqZY3s5Re0nSCCTHpnvZecdK1Iof/s9yrSSfUhN/lYc | ||
oCyqXCxbuBFIgLoX1j03SSEL10A6xUnLie9fIVGSirzI24B286j8ria7AgMBAAEC | ||
gYBpsUC6GyIzbyjy9tAr9hYyE4TyWo3dj18pN9lLFlWNnAZHSB9sC9EwpmZqlOR3 | ||
8nFt8TE85IkHBRp5coDm780t307JO9L0cRkY6Pc2D533ojC/gQjpOMA3jXbJzQoH | ||
v/Kp20VediEvMvwDaKrSSXy2sTgLZIM/1OW55ruM1vXCAQJBAMaM2whLqqJRXPYb | ||
pO0bksvFeB90R2Qfqu2T5NDophv741VQetoGqUieDXErl5L4LINPMsa2FnrYt7Y6 | ||
a0vNoWMCQQCUYAifZSgvH5jp61mwRpP2LjYLHjlyx53Z+31I2sMvzxtLPG3d36Nd | ||
PQzL2oAM9EuT5gFHErEXAPO07Y4untDJAkAm+cWRdlETtgcapMiWZwBFEgmHmyrc | ||
g77pDkwvmkvpWGQC/l5vaDlY8PXQjm8dwavzRtu/2ETHbr15fzRK2B3jAkBnZXzc | ||
xvt3y0ceS7nWk3hsp8tVeByElgK0cwLdkEVQvbzBcz0EzuHjCbYvIPb3EA7S5Aej | ||
5ayu4STzwk/AwT+xAkBFDMBKlEAETwEPBQ3aVkNTFu7UHZpmWSdGuBwrwaa/x1SD | ||
4Aes4v0/Smfdv8trK2krhmU861mCV6SPED3hohoe | ||
-----END RSA PRIVATE KEY----- |
Oops, something went wrong.