SecureRandomSpi.EngineReseed(ISecureRandomParameters) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Reseeds this random object with entropy input read from its entropy source with additional parameters.
[Android.Runtime.Register("engineReseed", "(Ljava/security/SecureRandomParameters;)V", "GetEngineReseed_Ljava_security_SecureRandomParameters_Handler", ApiSince=35)]
protected virtual void EngineReseed (Java.Security.ISecureRandomParameters? params);
[<Android.Runtime.Register("engineReseed", "(Ljava/security/SecureRandomParameters;)V", "GetEngineReseed_Ljava_security_SecureRandomParameters_Handler", ApiSince=35)>]
abstract member EngineReseed : Java.Security.ISecureRandomParameters -> unit
override this.EngineReseed : Java.Security.ISecureRandomParameters -> unit
Parameters
- params
- ISecureRandomParameters
extra parameters, can be null
.
- Attributes
Remarks
Reseeds this random object with entropy input read from its entropy source with additional parameters.
If this method is called by SecureRandom#reseed()
, params
will be null
.
Do not override this method if the implementation does not support reseeding.
Added in 9.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.