File: README.md

package info (click to toggle)
libopaque 1.0.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,064 kB
  • sloc: ansic: 7,701; python: 570; javascript: 379; makefile: 269; java: 195; php: 181; erlang: 121; ruby: 61; sh: 12
file content (222 lines) | stat: -rw-r--r-- 6,891 bytes parent folder | download | duplicates (2)
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
# libopaque PHP7 bindings

These bindings provide access to libopaque which implements the
[IRTF CFRG RFC draft](https://github.com/cfrg/draft-irtf-cfrg-opaque)
or you can read the [original paper](https://eprint.iacr.org/2018/163).

## Dependencies

These bindings depend on the following:
 - php7-dev
 - libopaque: https://github.com/stef/libopaque/
 - libsodium

## Building and Installing the opaque php7 extension

```
$ phpize
$ ./configure
$ make
$ make install
```

These commands should build our shared extension “opaque.so” and copy
it into appropriate directory of our PHP installation. To load it, we
need to add a line into our custom php.ini

```
$ vi /etc/php.ini
```

Add the following line:

```
extension=opaque.so
```

Check that extension is loaded and works. `php -m` command prints the
list of loaded extensions:

```
$ php -m | grep opaque
opaque
```

## Demo and Examples

For a simple demo please check the `demo` subdirectory, for simple
examples please check the test-cases: `002.phpt`, `003.phpt,
`004.phpt`.

## API

There is one data structure which is used by libopaque:

### `Ids`

The IDs of the client (idU) and the server (idS) are passed directly
as seperate parameters to functions that need to handle IDs.

## One-key Server convenience function

For the case that a setup requires externally generated long-term
server keys the php bindings provide a convenience function
`opaque_create_server_keys()` which can be used to generate a server
key-pair. The functions returns `$pkS` and `$skS` in this order.

## 1-step registration

1-step registration is only specified in the original paper. It is not specified by the IRTF
CFRG draft. 1-step registration has the benefit that the supplied password (`pwd`) can be checked
on the server for password rules (e.g., occurrence in common password
lists). It has the drawback that the password is exposed to the server.

```php
$rec, $export_key = opaque_register($pwd, $idU, $idS, $skS);
```

The function expects these paramters:

 - `$pwd` is the user's password.
 - `$idU` is the optional client ID,
 - `$idS` is the optional server ID,
 - `$skS` is an optional explicitly specified server long-term key

This function returns:

 - `$rec` should be stored by the server associated with the ID of the user.
 - `$export_key` is an extra secret that can be used to encrypt
   additional data that you might want to store on the server next to
   your record.

## 4-step registration

Registration as specified in the IRTF CFRG draft consists of the
following 4 steps:

### Step 1: The user creates a registration request.

```php
$sec, $req = opaque_create_registration_request(pwd);
```

 - `$pwd` is the user's password.

The user should hold on to `$sec` securely until step 3 of the
registration process. `$req` needs to be passed to the server running
step 2.

### Step 2: The server responds to the registration request.

```php
$sec, $resp = opaque_create_registration_response($req, $skS);
```

 - `$req` comes from the user running the previous step.
 - `$skS` is an optional explicitly specified server long-term private-key

The server should hold onto `$sec` securely until step 4 of the registration process.
`$resp` should be passed to the user running step 3.

### Step 3: The user finalizes the registration using the response from the server.

```php
$rec, $export_key = opaque_finalize_request($sec, $resp, $idU, $idS);
```

 - `$sec` contains sensitive data and should be disposed securely after usage in this step.
 - `$resp` comes from the server running the previous step.
 - `$idU` is the clients ID,
 - `$idS` is the servers ID,

 - `$rec` should be passed to the server running step 4.
 - `$export_key` is an extra secret that can be used to encrypt
   additional data that you might want to store on the server next to
   your record.

### Step 4: The server finalizes the user's record.

```php
$rec = opaque_store_user_record($sec, $rec);
```

 - `$rec` comes from the client running the previous step.
 - `$sec` contains sensitive data and should be disposed securely after usage in this step.

 - `$rec` should be stored by the server associated with the ID of the user.

**Important Note**: Confusingly this function is called `StoreUserRecord`, yet it
does not do any storage. How you want to store the record (`$rec`) is up
to the implementor using this API.

## Establishing an opaque session

After a user has registered with a server, the user can initiate the
AKE and thus request its credentials in the following 3(+1)-step protocol:

### Step 1: The user initiates a credential request.

```php
$req, $sec = opaque_create_credential_request($pwd)
```

 - `$pwd` is the user's password.

The user should hold onto `$sec` securely until step 3 of the protocol.
`$pub` needs to be passed to the server running step 2.

### Step 2: The server responds to the credential request.

```php
$resp, $sk, $sec = opaque_create_credential_response($req, $rec, $context, $idU, $idS);
```

 - `$req` comes from the user running the previous step.
 - `$rec` is the user's record stored by the server at the end of the registration protocol.
 - `$context` is a string distinguishing this instantiation of the protocol from others, e.g. "MyApp-v0.2"
 - `$idU` is the client ID,
 - `$idS` is the server ID,

This function returns:

 - `$resp` needs to be passed to the user running step 3.
 - `$sk` is a shared secret, the result of the AKE.
 - The server should hold onto `$sec` securely until the optional step
   4 of the protocol, if needed. otherwise this value should be
   discarded securely.

### Step 3: The user recovers its credentials from the server's response.

```php
$sk, $authU, $export_key = opaque_recover_credentials($resp, $sec, $context, $idU, $idS);
```

 - `$resp` comes from the server running the previous step.
 - `$sec` contains sensitive data and should be disposed securely after usage in this step.
 - `$context` is a string distinguishing this instantiation of the protocol from others, e.g. "MyApp-v0.2"
 - `$idU` is the clients ID.
 - `$idS` is the servers ID.

This function returns:

 - `$sk` is a shared secret, the result of the AKE.
 - `$authU` is an authentication tag that can be passed in step 4 for explicit user authentication.
 - `$export_key` can be used to decrypt additional data stored by the server.

### Step 4 (Optional): The server authenticates the user.

This step is only needed if there is no encrypted channel setup
towards the server using the shared secret.

```php
opaque_user_auth($sec, $authU);
```

 - `$sec` is the `$sec` output of `opaque_create_credential_response()`, it
   contains sensitive data and should be disposed securely after usage in this
   step.
 - `$authU` comes from the user running the previous step.

The function returns a boolean `false` in case the authentication failed, otherwise `true`.