|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
public interface PGPData
W3C Recommendation for XML-Signature Syntax and Processing 中定义的 XML PGPData
元素的表示形式。PGPData
对象用于传送与 PGP 公钥对和此类密钥上的签名有关的信息。XML Schema Definition 的定义如下:
<element name="PGPData" type="ds:PGPDataType"/> <complexType name="PGPDataType"> <choice> <sequence> <element name="PGPKeyID" type="base64Binary"/> <element name="PGPKeyPacket" type="base64Binary" minOccurs="0"/> <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> </sequence> <sequence> <element name="PGPKeyPacket" type="base64Binary"/> <any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> </sequence> </choice> </complexType>通过调用
KeyInfoFactory
类的一个
newPGPData
方法,并向其传递表示 PGP 公钥标识符和/或 PGP 密钥材料包内容的
byte
数组,以及外部名称空间中的元素的可选列表,可以创建
PGPData
实例。
KeyInfoFactory.newPGPData(byte[])
,
KeyInfoFactory.newPGPData(byte[], byte[], List)
,
KeyInfoFactory.newPGPData(byte[], List)
字段摘要 | |
---|---|
static String |
TYPE 标识 PGPData KeyInfo 类型的 URI:http://www.w3.org/2000/09/xmldsig#PGPData.可以将其指定为 RetrievalMethod 类的 type 参数值,以描述远程 PGPData 结构。 |
方法摘要 | |
---|---|
List |
getExternalElements() 返回一个 不可修改列表 ,由表示外部名称空间元素中的 XMLStructure 组成。 |
byte[] |
getKeyId() 返回此 PGPData 的 PGP 公钥标识符,正如第 11.2 节的 RFC 2440 中所定义的。 |
byte[] |
getKeyPacket() 返回此 PGPData 的 PGP 密钥材料包,正如第 5.5 节的 RFC 2440 中所定义的。 |
从接口 javax.xml.crypto.XMLStructure 继承的方法 |
---|
isFeatureSupported |
字段详细信息 |
---|
static final String TYPE
RetrievalMethod
类的
type
参数值,以描述远程
PGPData
结构。
方法详细信息 |
---|
byte[] getKeyId()
PGPData
的 PGP 公钥标识符,正如第 11.2 节的
RFC 2440 中所定义的。
null
)。每次调用此方法都将返回一个新的副本,以防止随后被修改。
byte[] getKeyPacket()
PGPData
的 PGP 密钥材料包,正如第 5.5 节的
RFC 2440 中所定义的。
null
)。每次调用此方法都将返回一个新的副本,以防止随后被修改。
List getExternalElements()
不可修改列表
,由表示外部名称空间元素中的
XMLStructure
组成。
XMLStructure
列表(可以为空,但不能为
null
)
|
JavaTM Platform Standard Ed. 6 |
|||||||||
上一个类 下一个类 | 框架 无框架 | |||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
版权所有 2007 Sun Microsystems, Inc. 保留所有权利。 请遵守许可证条款。另请参阅文档重新分发政策。