OAuth 2.0 authorization and token exchange
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix fuzz lint issues: rename fuzz_github_oauth, add cose fuzz.ml runner

- Rename fuzz_github_oauth.ml to fuzz_oauth.ml to match library (E710)
- Convert ocaml-cose fuzz from raw Crowbar to Alcobar with fuzz.ml
runner (E718)
- Fix odoc warnings in sgp4, tomlt, blob_ref

+3 -3
+1 -1
fuzz/dune
··· 5 5 6 6 (executable 7 7 (name fuzz) 8 - (modules fuzz fuzz_github_oauth) 8 + (modules fuzz fuzz_oauth) 9 9 (libraries oauth alcobar crypto-rng.unix)) 10 10 11 11 (rule
+1 -1
fuzz/fuzz.ml
··· 1 - let () = Alcobar.run "oauth" [ Fuzz_github_oauth.suite ] 1 + let () = Alcobar.run "oauth" [ Fuzz_oauth.suite ]
+1 -1
fuzz/fuzz_github_oauth.ml fuzz/fuzz_oauth.ml
··· 83 83 check (c1 = c2) 84 84 85 85 let suite = 86 - ( "github_oauth", 86 + ( "oauth", 87 87 [ 88 88 test_case "authorization_url valid" 89 89 [ bytes; bytes; list bytes ]
fuzz/fuzz_github_oauth.mli fuzz/fuzz_oauth.mli