言語

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

属性

注釈

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

指定した password は、新しい PasswordProtection オブジェクトに格納される前に複製されます。

Javaドキュメント。

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

適用対象

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

Java ネイティブ インターフェイス (JNI) オブジェクト参照を含む IntPtr

transfer
JniHandleOwnership

JniHandleOwnership処理方法を示すjavaReference

注釈

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

適用対象

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

属性

注釈

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

指定した password は、新しい PasswordProtection オブジェクトに格納される前に複製されます。

1.8 で追加されました。

Javaドキュメント。

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

適用対象