File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -7,25 +7,25 @@ use crate::bail;
7
7
#[ derive( Debug , PartialEq , Eq ) ]
8
8
#[ non_exhaustive]
9
9
pub enum AuthenticationScheme {
10
- /// Basic auth
10
+ /// [RFC7617](https://tools.ietf.org/html/rfc7617) Basic auth
11
11
Basic ,
12
- /// Bearer auth
12
+ /// [RFC6750](https://tools.ietf.org/html/rfc6750) Bearer auth
13
13
Bearer ,
14
- /// Digest auth
14
+ /// [RFC7616](https://tools.ietf.org/html/rfc7616) Digest auth
15
15
Digest ,
16
- /// HOBA
16
+ /// [RFC7486](https://tools.ietf.org/html/rfc7486) HTTP Origin-Bound Authentication
17
17
Hoba ,
18
- /// Mutual auth
18
+ /// [RFC8120](https://tools.ietf.org/html/rfc8120) Mutual auth
19
19
Mutual ,
20
- /// Negotiate auth
20
+ /// [RFC4559](https://tools.ietf.org/html/rfc4559) Negotiate auth
21
21
Negotiate ,
22
- /// Oauth
22
+ /// [RFC5849](https://tools.ietf.org/html/rfc5849) Oauth
23
23
OAuth ,
24
- /// SCRAM SHA1 auth
24
+ /// [RFC7804](https://tools.ietf.org/html/rfc7804) SCRAM SHA1 auth
25
25
ScramSha1 ,
26
- /// SCRAM SHA256 auth
26
+ /// [RFC7804](https://tools.ietf.org/html/rfc7804) SCRAM SHA256 auth
27
27
ScramSha256 ,
28
- /// Vapid auth
28
+ /// [RFC8292](https://tools.ietf.org/html/rfc8292) Vapid auth
29
29
Vapid ,
30
30
}
31
31
You can’t perform that action at this time.
0 commit comments