public static final class KeyStore.SecretKeyEntry extends Object implements KeyStore.Entry
SecretKey
が格納されたKeyStore
エントリです。KeyStore.Entry.Attribute
コンストラクタと説明 |
---|
SecretKeyEntry(SecretKey secretKey)
特定の
SecretKey を使ってSecretKeyEntry を構築します。 |
SecretKeyEntry(SecretKey secretKey, Set<KeyStore.Entry.Attribute> attributes)
SecretKey と関連するエントリ属性を使用してSecretKeyEntry を構築します。 |
修飾子と型 | メソッドと説明 |
---|---|
Set<KeyStore.Entry.Attribute> |
getAttributes()
エントリに関連付けられている属性を取得します。
|
SecretKey |
getSecretKey()
このエントリ内の
SecretKey を取得します。 |
String |
toString()
このSecretKeyEntryの文字列表現を返します。
|
public SecretKeyEntry(SecretKey secretKey)
SecretKey
を使ってSecretKeyEntry
を構築します。secretKey
- SecretKey
NullPointerException
- secretKey
がnull
である場合public SecretKeyEntry(SecretKey secretKey, Set<KeyStore.Entry.Attribute> attributes)
SecretKey
と関連するエントリ属性を使用してSecretKeyEntry
を構築します。
指定されたattributes
は、クローニングされてから新しいSecretKeyEntry
オブジェクトに格納されます。
secretKey
- SecretKey
attributes
- 属性NullPointerException
- secretKey
またはattributes
がnull
の場合public SecretKey getSecretKey()
SecretKey
を取得します。SecretKey
public Set<KeyStore.Entry.Attribute> getAttributes()
getAttributes
、インタフェース: KeyStore.Entry
Set
(空の場合もある) バグまたは機能を送信
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.