author | avstepan |
Thu, 28 Apr 2016 19:35:09 +0300 | |
changeset 38386 | d7e7d592d396 |
parent 35302 | e4d2275861c3 |
child 43735 | 83505546dec3 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
31060 | 2 |
* Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
package com.sun.jarsigner; |
|
27 |
||
28 |
import java.net.URI; |
|
29 |
import java.security.cert.X509Certificate; |
|
30 |
import java.util.zip.ZipFile; |
|
31 |
||
32 |
/** |
|
33 |
* This interface encapsulates the parameters for a ContentSigner object. |
|
34 |
* |
|
35 |
* @since 1.5 |
|
36 |
* @author Vincent Ryan |
|
34541
7f475f6f0d56
8144784: Remove @Deprecated annotation from java.security.acl, javax.security.cert and com.sun.jarsigner packages
mullan
parents:
31060
diff
changeset
|
37 |
* @deprecated This class has been deprecated. |
2 | 38 |
*/ |
31060 | 39 |
@Deprecated |
2 | 40 |
public interface ContentSignerParameters { |
41 |
||
42 |
/** |
|
43 |
* Retrieves the command-line arguments passed to the jarsigner tool. |
|
44 |
* |
|
45 |
* @return The command-line arguments. May be null. |
|
46 |
*/ |
|
47 |
public String[] getCommandLine(); |
|
48 |
||
49 |
/** |
|
50 |
* Retrieves the identifier for a Timestamping Authority (TSA). |
|
51 |
* |
|
52 |
* @return The TSA identifier. May be null. |
|
53 |
*/ |
|
54 |
public URI getTimestampingAuthority(); |
|
55 |
||
56 |
/** |
|
57 |
* Retrieves the certificate for a Timestamping Authority (TSA). |
|
58 |
* |
|
59 |
* @return The TSA certificate. May be null. |
|
60 |
*/ |
|
61 |
public X509Certificate getTimestampingAuthorityCertificate(); |
|
62 |
||
63 |
/** |
|
17161
df1ec0e2f0e7
8009636: JARSigner including TimeStamp PolicyID (TSAPolicyID) as defined in RFC3161
weijun
parents:
8556
diff
changeset
|
64 |
* Retrieves the TSAPolicyID for a Timestamping Authority (TSA). |
df1ec0e2f0e7
8009636: JARSigner including TimeStamp PolicyID (TSAPolicyID) as defined in RFC3161
weijun
parents:
8556
diff
changeset
|
65 |
* |
df1ec0e2f0e7
8009636: JARSigner including TimeStamp PolicyID (TSAPolicyID) as defined in RFC3161
weijun
parents:
8556
diff
changeset
|
66 |
* @return The TSAPolicyID. May be null. |
df1ec0e2f0e7
8009636: JARSigner including TimeStamp PolicyID (TSAPolicyID) as defined in RFC3161
weijun
parents:
8556
diff
changeset
|
67 |
*/ |
24033
fed71c27dd2a
8039358: com.sun.jarsigner.ContentSignerParameters.getTSAPolicyID() should be a default method
weijun
parents:
23010
diff
changeset
|
68 |
public default String getTSAPolicyID() { |
fed71c27dd2a
8039358: com.sun.jarsigner.ContentSignerParameters.getTSAPolicyID() should be a default method
weijun
parents:
23010
diff
changeset
|
69 |
return null; |
fed71c27dd2a
8039358: com.sun.jarsigner.ContentSignerParameters.getTSAPolicyID() should be a default method
weijun
parents:
23010
diff
changeset
|
70 |
} |
17161
df1ec0e2f0e7
8009636: JARSigner including TimeStamp PolicyID (TSAPolicyID) as defined in RFC3161
weijun
parents:
8556
diff
changeset
|
71 |
|
df1ec0e2f0e7
8009636: JARSigner including TimeStamp PolicyID (TSAPolicyID) as defined in RFC3161
weijun
parents:
8556
diff
changeset
|
72 |
/** |
24034
31fe17eef94a
8038837: Add support to jarsigner for specifying timestamp hash algorithm
weijun
parents:
24033
diff
changeset
|
73 |
* Retreives the message digest algorithm that is used to generate |
31fe17eef94a
8038837: Add support to jarsigner for specifying timestamp hash algorithm
weijun
parents:
24033
diff
changeset
|
74 |
* the message imprint to be sent to the TSA server. |
31fe17eef94a
8038837: Add support to jarsigner for specifying timestamp hash algorithm
weijun
parents:
24033
diff
changeset
|
75 |
* |
35302
e4d2275861c3
8136494: Update "@since 1.9" to "@since 9" to match java.version.specification
iris
parents:
34894
diff
changeset
|
76 |
* @since 9 |
24034
31fe17eef94a
8038837: Add support to jarsigner for specifying timestamp hash algorithm
weijun
parents:
24033
diff
changeset
|
77 |
* @return The non-null string of the message digest algorithm name. |
31fe17eef94a
8038837: Add support to jarsigner for specifying timestamp hash algorithm
weijun
parents:
24033
diff
changeset
|
78 |
*/ |
31fe17eef94a
8038837: Add support to jarsigner for specifying timestamp hash algorithm
weijun
parents:
24033
diff
changeset
|
79 |
public default String getTSADigestAlg() { |
31fe17eef94a
8038837: Add support to jarsigner for specifying timestamp hash algorithm
weijun
parents:
24033
diff
changeset
|
80 |
return "SHA-256"; |
31fe17eef94a
8038837: Add support to jarsigner for specifying timestamp hash algorithm
weijun
parents:
24033
diff
changeset
|
81 |
} |
31fe17eef94a
8038837: Add support to jarsigner for specifying timestamp hash algorithm
weijun
parents:
24033
diff
changeset
|
82 |
|
31fe17eef94a
8038837: Add support to jarsigner for specifying timestamp hash algorithm
weijun
parents:
24033
diff
changeset
|
83 |
/** |
2 | 84 |
* Retrieves the JAR file's signature. |
85 |
* |
|
86 |
* @return The non-null array of signature bytes. |
|
87 |
*/ |
|
88 |
public byte[] getSignature(); |
|
89 |
||
90 |
/** |
|
91 |
* Retrieves the name of the signature algorithm. |
|
92 |
* |
|
93 |
* @return The non-null string name of the signature algorithm. |
|
94 |
*/ |
|
95 |
public String getSignatureAlgorithm(); |
|
96 |
||
97 |
/** |
|
98 |
* Retrieves the signer's X.509 certificate chain. |
|
99 |
* |
|
100 |
* @return The non-null array of X.509 public-key certificates. |
|
101 |
*/ |
|
102 |
public X509Certificate[] getSignerCertificateChain(); |
|
103 |
||
104 |
/** |
|
105 |
* Retrieves the content that was signed. |
|
106 |
* The content is the JAR file's signature file. |
|
107 |
* |
|
108 |
* @return The content bytes. May be null. |
|
109 |
*/ |
|
110 |
public byte[] getContent(); |
|
111 |
||
112 |
/** |
|
113 |
* Retrieves the original source ZIP file before it was signed. |
|
114 |
* |
|
115 |
* @return The original ZIP file. May be null. |
|
116 |
*/ |
|
117 |
public ZipFile getSource(); |
|
118 |
} |