mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
[ci skip] SecureRandom should mentioned Win32 CryptoAPI functions ins… (#31225)
* [ci skip] SecureRandom should mentioned Win32 CryptoAPI functions instead of Win32 * Remove functions word
This commit is contained in:
parent
3313912de1
commit
eb6d7d5aa0
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ User.find(session[:user_id])
|
|||
|
||||
NOTE: _The session ID is a 32-character random hex string._
|
||||
|
||||
The session ID is generated using `SecureRandom.hex` which generates a random hex string using platform specific methods (such as OpenSSL, /dev/urandom or Win32) for generating cryptographically secure random numbers. Currently it is not feasible to brute-force Rails' session IDs.
|
||||
The session ID is generated using `SecureRandom.hex` which generates a random hex string using platform specific methods (such as OpenSSL, /dev/urandom or Win32 CryptoAPI) for generating cryptographically secure random numbers. Currently it is not feasible to brute-force Rails' session IDs.
|
||||
|
||||
### Session Hijacking
|
||||
|
||||
|
|
Loading…
Reference in a new issue