forked from Samyoul/U2F-php-server
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRegistration.php
75 lines (65 loc) · 1.41 KB
/
Registration.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
namespace CodeLts\U2F\U2FServer;
class Registration
{
/** @var string The key handle of the registered authenticator */
protected $keyHandle;
/** @var string The public key of the registered authenticator */
protected $publicKey;
/** @var string The attestation certificate of the registered authenticator */
protected $certificate;
/** @var int The counter associated with this registration */
protected $counter = -1;
/**
* @param string $keyHandle
* @return void
*/
public function setKeyHandle($keyHandle)
{
$this->keyHandle = $keyHandle;
}
/**
* @param string $publicKey
* @return void
*/
public function setPublicKey($publicKey)
{
$this->publicKey = $publicKey;
}
/**
* @param string $certificate
* @return void
*/
public function setCertificate($certificate)
{
$this->certificate = $certificate;
}
/**
* @return string
*/
public function getKeyHandle()
{
return $this->keyHandle;
}
/**
* @return string
*/
public function getPublicKey()
{
return $this->publicKey;
}
/**
* @return string
*/
public function getCertificate()
{
return $this->certificate;
}
/**
* @return int
*/
public function getCounter()
{
return $this->counter;
}
}