KeyStore.PasswordProtection コンストラクター

定義

オーバーロード

KeyStore.PasswordProtection(Char[])

パスワード パラメーターを作成します。

KeyStore.PasswordProtection(IntPtr, JniHandleOwnership)

JNI オブジェクトのマネージド表現を作成するときに使用されるコンストラクター。ランタイムによって呼び出されます。

KeyStore.PasswordProtection(Char[], String, IAlgorithmParameterSpec)

パスワード パラメーターを作成し、キーストア エントリを暗号化するときに使用する保護アルゴリズムと関連付けられたパラメーターを指定します。

KeyStore.PasswordProtection(Char[])

パスワード パラメーターを作成します。

[Android.Runtime.Register(".ctor", "([C)V", "")]
public PasswordProtection (char[] password);
[<Android.Runtime.Register(".ctor", "([C)V", "")>]
new Java.Security.KeyStore.PasswordProtection : char[] -> Java.Security.KeyStore.PasswordProtection

パラメーター

password
Char[]

パスワードを指定します。 null

属性

注釈

の Java ドキュメント java.security.KeyStore.PasswordProtection.KeyStore$PasswordProtection(char[])

このページの一部は、によって作成および共有された作業に基づく変更であり、に記載されている条件に従って使用されます。

適用対象

KeyStore.PasswordProtection(IntPtr, JniHandleOwnership)

JNI オブジェクトのマネージド表現を作成するときに使用されるコンストラクター。ランタイムによって呼び出されます。

protected PasswordProtection (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Security.KeyStore.PasswordProtection : nativeint * Android.Runtime.JniHandleOwnership -> Java.Security.KeyStore.PasswordProtection

パラメーター

javaReference
IntPtr

nativeint

IntPtrJava Native Interface (JNI) オブジェクト参照を含む 。

transfer
JniHandleOwnership

処理方法を示す 。JniHandleOwnershipjavaReference

注釈

このページの一部は、によって作成および共有された作業に基づく変更であり、に記載されている条件に従って使用されます。

適用対象

KeyStore.PasswordProtection(Char[], String, IAlgorithmParameterSpec)

パスワード パラメーターを作成し、キーストア エントリを暗号化するときに使用する保護アルゴリズムと関連付けられたパラメーターを指定します。

[Android.Runtime.Register(".ctor", "([CLjava/lang/String;Ljava/security/spec/AlgorithmParameterSpec;)V", "", ApiSince=26)]
public PasswordProtection (char[] password, string protectionAlgorithm, Java.Security.Spec.IAlgorithmParameterSpec protectionParameters);
[<Android.Runtime.Register(".ctor", "([CLjava/lang/String;Ljava/security/spec/AlgorithmParameterSpec;)V", "", ApiSince=26)>]
new Java.Security.KeyStore.PasswordProtection : char[] * string * Java.Security.Spec.IAlgorithmParameterSpec -> Java.Security.KeyStore.PasswordProtection

パラメーター

password
Char[]

パスワードを指定します。 null

protectionAlgorithm
String

暗号化アルゴリズム名 (例: PBEWithHmacSHA256AndAES_256)。 標準暗号化アルゴリズム名の詳細については、「 Java セキュリティ標準アルゴリズム名の仕様 」の「暗号」セクションを参照してください。

protectionParameters
IAlgorithmParameterSpec

暗号化アルゴリズムパラメーターの仕様(可能性があります) null

属性

注釈

の Java ドキュメント java.security.KeyStore.PasswordProtection.KeyStore$PasswordProtection(char[], java.lang.String, java.security.spec.AlgorithmParameterSpec)

このページの一部は、によって作成および共有された作業に基づく変更であり、に記載されている条件に従って使用されます。

適用対象