File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
cryptography/drivers/node Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 1
- import { InvalidSignatureError } from "../../../errors/InvalidSignatureError" ;
2
1
import { AsymmetricSigner } from "../../abstract/AsymmetricSigner"
2
+ import { InvalidSignatureError } from "../../../errors/InvalidSignatureError"
3
3
4
4
// Typescript Types not available for JWT - Proceed with caution
5
5
// @ts -ignore
Original file line number Diff line number Diff line change @@ -4,9 +4,7 @@ import { StrontiumError } from "./StrontiumError"
4
4
* An InvalidSignatureError is thrown when a Cryptographic signature does not match.
5
5
*/
6
6
export class InvalidSignatureError extends StrontiumError {
7
- constructor ( ) {
8
- super (
9
- `The signature provided was not valid.`
10
- )
11
- }
7
+ constructor ( ) {
8
+ super ( `The signature provided was not valid.` )
9
+ }
12
10
}
You can’t perform that action at this time.
0 commit comments