Module  jdk.jartool
软件包  com.sun.jarsigner

Interface ContentSignerParameters


  • 已过时。
    此类已被弃用。

    @Deprecated(since="9")
    public interface ContentSignerParameters
    该接口封装了ContentSigner对象的参数。
    从以下版本开始:
    1.5
    • 方法详细信息

      • getCommandLine

        String[] getCommandLine​()
        已过时。
        检索传递给jarsigner工具的命令行参数。
        结果
        命令行参数。 可能为null。
      • getTimestampingAuthority

        URI getTimestampingAuthority​()
        已过时。
        检索时间戳管理机构(TSA)的标识符。
        结果
        TSA标识符。 可能为null。
      • getTimestampingAuthorityCertificate

        X509Certificate getTimestampingAuthorityCertificate​()
        已过时。
        检索时间戳管理局(TSA)的证书。
        结果
        TSA证书。 可能为null。
      • getTSAPolicyID

        default String getTSAPolicyID​()
        已过时。
        检索时间戳权限(TSA)的TSAPolicyID。
        结果
        TSAPolicyID。 可能为null。
      • getTSADigestAlg

        default String getTSADigestAlg​()
        已过时。
        检索用于生成要发送到TSA服务器的消息印记的消息摘要算法。
        结果
        消息摘要算法名称的非空字符串。
        从以下版本开始:
        9
      • getSignature

        byte[] getSignature​()
        已过时。
        检索JAR文件的签名。
        结果
        签名字节的非空数组。
      • getSignatureAlgorithm

        String getSignatureAlgorithm​()
        已过时。
        检索签名算法的名称。
        结果
        签名算法的非空字符串名称。
      • getSignerCertificateChain

        X509Certificate[] getSignerCertificateChain​()
        已过时。
        检索签名人的X.509证书链。
        结果
        X.509公钥证书的非空数组。
      • getContent

        byte[] getContent​()
        已过时。
        检索已签名的内容。 内容是JAR文件的签名文件。
        结果
        内容字节。 可能为null。
      • getSource

        ZipFile getSource​()
        已过时。
        在签署之前检索原始的ZIP文件。
        结果
        The original ZIP file. May be null.