-
@Deprecated(since="9") public interface ContentSignerParameters
Deprecated.This class has been deprecated.此接口封装了ContentSigner对象的参数。- 从以下版本开始:
- 1.5
-
-
方法摘要
所有方法 实例方法 抽象方法 Default Methods 弃用的方法 变量和类型 方法 描述 String[]
getCommandLine()
已过时。检索传递给jarsigner工具的命令行参数。byte[]
getContent()
已过时。检索已签名的内容。byte[]
getSignature()
已过时。检索JAR文件的签名。String
getSignatureAlgorithm()
已过时。检索签名算法的名称。X509Certificate[]
getSignerCertificateChain()
已过时。检索签名者的X.509证书链。ZipFile
getSource()
已过时。在签名之前检索原始源ZIP文件。URI
getTimestampingAuthority()
已过时。检索时间戳授权(TSA)的标识符。X509Certificate
getTimestampingAuthorityCertificate()
已过时。检索时间戳授权(TSA)的证书。default String
getTSADigestAlg()
已过时。检索用于生成要发送到TSA服务器的消息印记的消息摘要算法。default String
getTSAPolicyID()
已过时。检索时间戳授权(TSA)的TSAPolicyID。
-
-
-
方法详细信息
-
getCommandLine
String[] getCommandLine()
Deprecated.检索传递给jarsigner工具的命令行参数。- 结果
- 命令行参数。 可能为空。
-
getTimestampingAuthority
URI getTimestampingAuthority()
Deprecated.检索时间戳授权(TSA)的标识符。- 结果
- TSA标识符。 可能为空。
-
getTimestampingAuthorityCertificate
X509Certificate getTimestampingAuthorityCertificate()
Deprecated.检索时间戳授权(TSA)的证书。- 结果
- TSA证书。 可能为空。
-
getTSAPolicyID
default String getTSAPolicyID()
Deprecated.检索时间戳授权(TSA)的TSAPolicyID。- 结果
- TSAPolicyID。 可能为空。
-
getTSADigestAlg
default String getTSADigestAlg()
Deprecated.检索用于生成要发送到TSA服务器的消息印记的消息摘要算法。- 结果
- 消息摘要算法名称的非空字符串。
- 从以下版本开始:
- 9
-
getSignature
byte[] getSignature()
Deprecated.检索JAR文件的签名。- 结果
- 签名字节的非null数组。
-
getSignatureAlgorithm
String getSignatureAlgorithm()
Deprecated.检索签名算法的名称。- 结果
- 签名算法的非空字符串名称。
-
getSignerCertificateChain
X509Certificate[] getSignerCertificateChain()
Deprecated.检索签名者的X.509证书链。- 结果
- X.509公钥证书的非null数组。
-
getContent
byte[] getContent()
Deprecated.检索已签名的内容。 内容是JAR文件的签名文件。- 结果
- 内容字节。 可能为空。
-
getSource
ZipFile getSource()
Deprecated.在签名之前检索原始源ZIP文件。- 结果
- The original ZIP file. May be null.
-
-