共用方式為


KeyStore.PasswordProtection 建構函式

定義

多載

KeyStore.PasswordProtection(Char[])

建立密碼參數。

KeyStore.PasswordProtection(IntPtr, JniHandleOwnership)

建立 JNI 物件的 Managed 表示法時使用的建構函式;由運行時間呼叫。

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.security.KeyStore.PasswordProtection.KeyStore$PasswordProtection(char[])Java 檔。

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

適用於

KeyStore.PasswordProtection(IntPtr, JniHandleOwnership)

建立 JNI 物件的 Managed 表示法時使用的建構函式;由運行時間呼叫。

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

參數

javaReference
IntPtr

nativeint

IntPtr,包含 Java Native Interface (JNI) 對象參考。

transfer
JniHandleOwnership

JniHandleOwnership,指出如何處理javaReference

備註

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

適用於

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.security.KeyStore.PasswordProtection.KeyStore$PasswordProtection(char[], java.lang.String, java.security.spec.AlgorithmParameterSpec)Java 檔。

此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。

適用於