1
0
Fork 0
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:
Atul Shimpi 2017-11-25 16:13:17 +05:30 committed by Matthew Draper
parent 3313912de1
commit eb6d7d5aa0

View file

@ -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