KeyStoreSpi.EngineStore Method

Definition

Overloads

EngineStore(KeyStore+ILoadStoreParameter)

Stores this keystore to the given output stream, and protects its integrity with the given password.

EngineStore(Stream, Char[])

Stores this keystore to the given output stream, and protects its integrity with the given password.

EngineStore(KeyStore+ILoadStoreParameter)

Stores this keystore to the given output stream, and protects its integrity with the given password.

[Android.Runtime.Register("engineStore", "(Ljava/security/KeyStore$LoadStoreParameter;)V", "GetEngineStore_Ljava_security_KeyStore_LoadStoreParameter_Handler")]
public virtual void EngineStore (Java.Security.KeyStore.ILoadStoreParameter? param);
[<Android.Runtime.Register("engineStore", "(Ljava/security/KeyStore$LoadStoreParameter;)V", "GetEngineStore_Ljava_security_KeyStore_LoadStoreParameter_Handler")>]
abstract member EngineStore : Java.Security.KeyStore.ILoadStoreParameter -> unit
override this.EngineStore : Java.Security.KeyStore.ILoadStoreParameter -> unit

Parameters

param
KeyStore.ILoadStoreParameter

the LoadStoreParameter that specifies how to store this KeyStoreSpi, maybe null.

Attributes

Exceptions

if a problem occurred while writing to the stream.

if the required algorithm is not available.

if the an exception occurred while storing the certificates of this code KeyStoreSpi.

if the given KeyStore.ILoadStoreParameter is not recognized.

Remarks

Java documentation for java.security.KeyStoreSpi.engineStore(java.io.OutputStream, char[]).

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.

Applies to

EngineStore(Stream, Char[])

Stores this keystore to the given output stream, and protects its integrity with the given password.

[Android.Runtime.Register("engineStore", "(Ljava/io/OutputStream;[C)V", "GetEngineStore_Ljava_io_OutputStream_arrayCHandler")]
public abstract void EngineStore (System.IO.Stream? stream, char[]? password);
[<Android.Runtime.Register("engineStore", "(Ljava/io/OutputStream;[C)V", "GetEngineStore_Ljava_io_OutputStream_arrayCHandler")>]
abstract member EngineStore : System.IO.Stream * char[] -> unit

Parameters

stream
Stream

the output stream to which this keystore is written.

password
Char[]

the password to generate the keystore integrity check

Attributes

Exceptions

if a problem occurred while writing to the stream.

if the required algorithm is not available.

if the an exception occurred while storing the certificates of this code KeyStoreSpi.

Remarks

Stores this keystore to the given output stream, and protects its integrity with the given password.

Java documentation for java.security.KeyStoreSpi.engineStore(java.io.OutputStream, char[]).

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.

Applies to