Skip to content
This repository was archived by the owner on Jun 23, 2023. It is now read-only.

Commit 06228af

Browse files
committed
chore: Documentation session_params and sub_funcs
1 parent 454f894 commit 06228af

1 file changed

Lines changed: 35 additions & 4 deletions

File tree

doc/source/contents/conf.rst

Lines changed: 35 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,50 @@ seed
1515
Used in dynamic client registration endpoint when creating a new client_secret.
1616
If unset it will be random.
1717

18-
--------
18+
--------------
19+
session params
20+
--------------
21+
22+
Configuration parameters used by session manager
23+
24+
"session_params": {
25+
"password": "__password_used_to_encrypt_access_token_sid_value",
26+
"salt": "salt involved in session sub hash ",
27+
"sub_func": {
28+
"public": {
29+
"class": "oidcop.session.manager.PublicID",
30+
"kwargs": {
31+
"salt": "sdfsdfdsf"
32+
}
33+
},
34+
"pairwise": {
35+
"class": "oidcop.session.manager.PairWiseID",
36+
"kwargs": {
37+
"salt": "sdfsdfsdf"
38+
}
39+
}
40+
}
41+
},
42+
1943
password
20-
--------
44+
########
2145

2246
Encryption key used to encrypt the SessionID (sid) in access_token.
2347
If unset it will be random.
2448

25-
----
49+
2650
salt
27-
----
51+
####
2852

2953
Salt, value or filename, used in sub_funcs (pairwise, public) for creating the opaque hash of *sub* claim.
3054

55+
56+
sub_funcs
57+
#########
58+
59+
Functions involved in subject creation (jwt token sub claim).
60+
61+
3162
-----------
3263
session_key
3364
-----------

0 commit comments

Comments
 (0)