public
nobgit
read
NobMail
Based on mailcow: dockerized
Languages
Repository composition by tracked source files.
PHP
49%
JavaScript
35%
HTML
9%
CSS
4%
Shell
2%
Python
1%
Lua
0%
Perl
0%
Ruby
0%
SCSS
0%
Create file
Wiki Documentation
Clone
https://nobgit.com/orgs/nobgit/nobmail.git
ssh://[email protected]:2222/orgs/nobgit/nobmail.git
Trace
data/web/inc/lib/WebAuthn/WebAuthnException.php
Trace helps you understand code history line by line. See who changed each line, when it changed, and which commit introduced it.
Author
Date
Commit
Line
Code
1
<?php
2
namespace lbuchs\WebAuthn;
4
/**
5
* @author Lukas Buchs
6
* @license https://github.com/lbuchs/WebAuthn/blob/master/LICENSE MIT
7
*/
8
class WebAuthnException extends \Exception {
9
const INVALID_DATA = 1;
10
const INVALID_TYPE = 2;
11
const INVALID_CHALLENGE = 3;
12
const INVALID_ORIGIN = 4;
13
const INVALID_RELYING_PARTY = 5;
14
const INVALID_SIGNATURE = 6;
15
const INVALID_PUBLIC_KEY = 7;
16
const CERTIFICATE_NOT_TRUSTED = 8;
17
const USER_PRESENT = 9;
18
const USER_VERIFICATED = 10;
19
const SIGNATURE_COUNTER = 11;
20
const CRYPTO_STRONG = 13;
21
const BYTEBUFFER = 14;
22
const CBOR = 15;
24
public function __construct($message = "", $code = 0, $previous = null) {
25
parent::__construct($message, $code, $previous);
26
}
27
}