blob: 448aed12b8d2c308a561d7062e3a2ccc86f170a2 (
plain)
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
|
SUMMARY
-------
This contains a basic OAuth2 authorization and token server:
cynagoauth-server.
It currently only implments the client credential flow, checking
the client identity using the Smack label. A tiny launcher,
cynagoauth-launch, is provided to negociate the token and run
the final client, setting CYNAGOAUTH_TOKEN environment
variable and substi
LICENSE
-------
This is released under the terms of APLv2 as explained
in file LICENSE.txt
DEPENDENCIES
------------
It depends of:
- json-c
- libmicrohttpd
- openssl
- libcurl
COMPILING
---------
To compile and install it:
```
mkdir build
cd build
cmake ..
make
```
RFCs
----
OAuth 2.0 Authorization Server Metadata: https://tools.ietf.org/html/rfc8414
OAuth 2.0 Dynamic Client Registration Protocol: https://tools.ietf.org/html/rfc7591
OpenID Connect Discovery 1.0: https://openid.net/specs/openid-connect-discovery-1_0.html
|