Registration.php
1.4 KB
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
76
77
78
79
80
81
<?php
/**
* Created by IntelliJ IDEA.
* User: samuel
* Date: 09/12/2016
* Time: 14:59
*/
namespace Samyoul\U2F\U2FServer;
class Registration
{
/** The key handle of the registered authenticator */
protected $keyHandle;
/** The public key of the registered authenticator */
protected $publicKey;
/** The attestation certificate of the registered authenticator */
protected $certificate;
/** The counter associated with this registration */
protected $counter = -1;
/**
* @param string $keyHandle
*/
public function setKeyHandle($keyHandle)
{
$this->keyHandle = $keyHandle;
}
/**
* @param string $publicKey
*/
public function setPublicKey($publicKey)
{
$this->publicKey = $publicKey;
}
/**
* @param string $certificate
*/
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 string
*/
public function getCounter()
{
return $this->counter;
}
}