You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
forgejo/models/auth
Gusted aa23f477b7
Use `CryptoRandomBytes` instead of `CryptoRandomString` (#18439)
- Switch to use `CryptoRandomBytes` instead of `CryptoRandomString`, OAuth's secrets are copied pasted and don't need to avoid dubious characters etc.
- `CryptoRandomBytes` gives ![2^256 = 1.15 * 10^77](https://render.githubusercontent.com/render/math?math=2^256%20=%201.15%20\cdot%2010^77) `CryptoRandomString` gives ![62^44 = 7.33 * 10^78](https://render.githubusercontent.com/render/math?math=62^44%20=%207.33%20\cdot%2010^78) possible states.
- Add a prefix, such that code scanners can easily grep these in source code.
- 32 Bytes + prefix
2 years ago
..
main_test.go Support webauthn (#17957) 2 years ago
oauth2.go Use `CryptoRandomBytes` instead of `CryptoRandomString` (#18439) 2 years ago
oauth2_test.go Refactor auth package (#17962) 3 years ago
session.go Refactor auth package (#17962) 3 years ago
source.go Refactor auth package (#17962) 3 years ago
source_test.go Refactor auth package (#17962) 3 years ago
twofactor.go Use base32 for 2FA scratch token (#18384) 2 years ago
webauthn.go format with gofumpt (#18184) 2 years ago
webauthn_test.go Webauthn nits (#18284) 2 years ago