JavaTM 2 Platform
Standard Ed. 6

java.security
類別 KeyStore.PasswordProtection

java.lang.Object
  繼承者 java.security.KeyStore.PasswordProtection
所有已實作的介面:
KeyStore.ProtectionParameter, Destroyable
正在封閉類別:
KeyStore

public static class KeyStore.PasswordProtection
extends Object
implements KeyStore.ProtectionParameter, Destroyable

ProtectionParameter 的一個基於密碼的實作。

從以下版本開始:
1.5

建構子摘要
KeyStore.PasswordProtection(char[] password)
          創建一個 password 參數。
 
方法摘要
 void destroy()
          清除密碼。
 char[] getPassword()
          獲取密碼。
 boolean isDestroyed()
          確定密碼是否已被清除。
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

建構子詳細資訊

KeyStore.PasswordProtection

public KeyStore.PasswordProtection(char[] password)
創建一個 password 參數。

在將指定的 password 存儲進新的 PasswordProtection 物件前將其複製。

方法詳細資訊

getPassword

public char[] getPassword()
獲取密碼。

注意,此方法返回一個對密碼的參考。如果創建了陣列的一個副本,調用方負責在不再需要密碼後清空密碼資訊。

返回:
密碼,它可以為 null
拋出:
IllegalStateException - 如果密碼已經被清除(銷毀)
另請參見:
destroy()

destroy

public void destroy()
             throws DestroyFailedException
清除密碼。

指定者:
介面 Destroyable 中的 destroy
拋出:
DestroyFailedException - 如果此方法不能清除密碼。

isDestroyed

public boolean isDestroyed()
確定密碼是否已被清除。

指定者:
介面 Destroyable 中的 isDestroyed
返回:
如果密碼已經被清除,則返回 true;否則,返回 false。

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only