1 '\" t
   2 .\" Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
   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
   7 .\" published by the Free Software Foundation.
   8 .\"
   9 .\" This code is distributed in the hope that it will be useful, but WITHOUT
  10 .\" ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11 .\" FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12 .\" version 2 for more details (a copy is included in the LICENSE file that
  13 .\" accompanied this code).
  14 .\"
  15 .\" You should have received a copy of the GNU General Public License version
  16 .\" 2 along with this work; if not, write to the Free Software Foundation,
  17 .\" Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18 .\"
  19 .\" Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20 .\" or visit www.oracle.com if you need additional information or have any
  21 .\" questions.
  22 .\"
  23 .\"     Arch: generic
  24 .\"     Software: JDK 8
  25 .\"     Date: 21 November 2013
  26 .\"     SectDesc: Security Tools
  27 .\"     Title: jarsigner.1
  28 .\"
  29 .if n .pl 99999
  30 .TH jarsigner 1 "21 November 2013" "JDK 8" "Security Tools"
  31 .\" -----------------------------------------------------------------
  32 .\" * Define some portability stuff
  33 .\" -----------------------------------------------------------------
  34 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  35 .\" http://bugs.debian.org/507673
  36 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
  37 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  38 .ie \n(.g .ds Aq \(aq
  39 .el       .ds Aq '
  40 .\" -----------------------------------------------------------------
  41 .\" * set default formatting
  42 .\" -----------------------------------------------------------------
  43 .\" disable hyphenation
  44 .nh
  45 .\" disable justification (adjust text to left margin only)
  46 .ad l
  47 .\" -----------------------------------------------------------------
  48 .\" * MAIN CONTENT STARTS HERE *
  49 .\" -----------------------------------------------------------------
  50 
  51 .SH NAME    
  52 jarsigner \- Signs and verifies Java Archive (JAR) files\&.
  53 .SH SYNOPSIS    
  54 .sp     
  55 .nf     
  56 
  57 \fBjarsigner\fR [ \fIoptions\fR ] \fIjar\-file\fR \fIalias\fR
  58 .fi     
  59 .nf     
  60 
  61 \fBjarsigner\fR \fB\-verify\fR [ \fIoptions\fR ] \fIjar\-file\fR [\fIalias \&.\&.\&.\fR]
  62 .fi     
  63 .sp     
  64 .TP     
  65 \fIoptions\fR
  66 The command-line options\&. See Options\&.
  67 .TP
  68 -verify
  69 .br
  70 The \f3-verify\fR option can take zero or more keystore alias names after the JAR file name\&. When the \f3-verify\fR option is specified, the \f3jarsigner\fR command checks that the certificate used to verify each signed entry in the JAR file matches one of the keystore aliases\&. The aliases are defined in the keystore specified by \f3-keystore\fR or the default keystore\&.
  71 
  72 If you also specified the \f3-strict\fR option, and the \f3jarsigner\fR command detected severe warnings, the message, "jar verified, with signer errors" is displayed\&.
  73 .TP     
  74 \fIjar-file\fR
  75 The JAR file to be signed\&.
  76 
  77 If you also specified the \f3-strict\fR option, and the \f3jarsigner\fR command detected severe warnings, the message, "jar signed, with signer errors" is displayed\&.
  78 .TP     
  79 \fIalias\fR
  80 The aliases are defined in the keystore specified by \f3-keystore\fR or the default keystore\&.
  81 .SH DESCRIPTION    
  82 The \f3jarsigner\fR tool has two purposes:
  83 .TP 0.2i    
  84 \(bu
  85 To sign Java Archive (JAR) files\&.
  86 .TP 0.2i    
  87 \(bu
  88 To verify the signatures and integrity of signed JAR files\&.
  89 .PP
  90 The JAR feature enables the packaging of class files, images, sounds, and other digital data in a single file for faster and easier distribution\&. A tool named \f3jar\fR enables developers to produce JAR files\&. (Technically, any zip file can also be considered a JAR file, although when created by the \f3jar\fR command or processed by the \f3jarsigner\fR command, JAR files also contain a \f3META-INF/MANIFEST\&.MF\fR file\&.)
  91 .PP
  92 A digital signature is a string of bits that is computed from some data (the data being signed) and the private key of an entity (a person, company, and so on)\&. Similar to a handwritten signature, a digital signature has many useful characteristics:
  93 .TP 0.2i    
  94 \(bu
  95 Its authenticity can be verified by a computation that uses the public key corresponding to the private key used to generate the signature\&.
  96 .TP 0.2i    
  97 \(bu
  98 It cannot be forged, assuming the private key is kept secret\&.
  99 .TP 0.2i    
 100 \(bu
 101 It is a function of the data signed and thus cannot be claimed to be the signature for other data as well\&.
 102 .TP 0.2i    
 103 \(bu
 104 The signed data cannot be changed\&. If the data is changed, then the signature cannot be verified as authentic\&.
 105 .PP
 106 To generate an entity\&'s signature for a file, the entity must first have a public/private key pair associated with it and one or more certificates that authenticate its public key\&. A certificate is a digitally signed statement from one entity that says that the public key of another entity has a particular value\&.
 107 .PP
 108 The \f3jarsigner\fR command uses key and certificate information from a keystore to generate digital signatures for JAR files\&. A keystore is a database of private keys and their associated X\&.509 certificate chains that authenticate the corresponding public keys\&. The \f3keytool\fR command is used to create and administer keystores\&.
 109 .PP
 110 The \f3jarsigner\fR command uses an entity\&'s private key to generate a signature\&. The signed JAR file contains, among other things, a copy of the certificate from the keystore for the public key corresponding to the private key used to sign the file\&. The \f3jarsigner\fR command can verify the digital signature of the signed JAR file using the certificate inside it (in its signature block file)\&.
 111 .PP
 112 The \f3jarsigner\fR command can generate signatures that include a time stamp that lets a systems or deployer (including Java Plug-in) to check whether the JAR file was signed while the signing certificate was still valid\&. In addition, APIs allow applications to obtain the timestamp information\&.
 113 .PP
 114 At this time, the \f3jarsigner\fR command can only sign JAR files created by the \f3jar\fR command or zip files\&. JAR files are the same as zip files, except they also have a \f3META-INF/MANIFEST\&.MF\fR file\&. A \f3META-INF/MANIFEST\&.MF\fR file is created when the \f3jarsigner\fR command signs a zip file\&.
 115 .PP
 116 The default \f3jarsigner\fR command behavior is to sign a JAR or zip file\&. Use the \f3-verify\fR option to verify a signed JAR file\&.
 117 .PP
 118 The \f3jarsigner\fR command also attempts to validate the signer\&'s certificate after signing or verifying\&. If there is a validation error or any other problem, the command generates warning messages\&. If you specify the \f3-strict\fR option, then the command treats severe warnings as errors\&. See Errors and Warnings\&.
 119 .SS KEYSTORE\ ALIASES    
 120 All keystore entities are accessed with unique aliases\&.
 121 .PP
 122 When you use the \f3jarsigner\fR command to sign a JAR file, you must specify the alias for the keystore entry that contains the private key needed to generate the signature\&. For example, the following command signs the JAR file named \f3MyJARFile\&.jar\fR with the private key associated with the alias \f3duke\fR in the keystore named \f3mystore\fR in the \f3working\fR directory\&. Because no output file is specified, it overwrites \f3MyJARFile\&.jar\fR with the signed JAR file\&.
 123 .sp     
 124 .nf     
 125 \f3jarsigner \-keystore /working/mystore \-storepass <keystore password>\fP
 126 .fi     
 127 .nf     
 128 \f3      \-keypass <private key password> MyJARFile\&.jar duke\fP
 129 .fi     
 130 .nf     
 131 \f3\fR
 132 .fi     
 133 .sp     
 134 Keystores are protected with a password, so the store password must be specified\&. You are prompted for it when you do not specify it on the command line\&. Similarly, private keys are protected in a keystore with a password, so the private key\&'s password must be specified, and you are prompted for the password when you do not specify it on the command line and it is not the same as the store password\&.
 135 .SS KEYSTORE\ LOCATION    
 136 The \f3jarsigner\fR command has a \f3-keystore\fR option for specifying the URL of the keystore to be used\&. The keystore is by default stored in a file named \f3\&.keystore\fR in the user\&'s home directory, as determined by the \f3user\&.home\fR system property\&.
 137 .PP
 138 On Oracle Solaris systems, \f3user\&.home\fR defaults to the user\&'s home directory\&.
 139 .PP
 140 The input stream from the \f3-keystore\fR option is passed to the \f3KeyStore\&.load\fR method\&. If \f3NONE\fR is specified as the URL, then a null stream is passed to the \f3KeyStore\&.load\fR method\&. \f3NONE\fR should be specified when the \f3KeyStore\fR class is not file based, for example, when it resides on a hardware token device\&.
 141 .SS KEYSTORE\ IMPLEMENTATION    
 142 The \f3KeyStore\fR class provided in the \f3java\&.security\fR package supplies a number of well-defined interfaces to access and modify the information in a keystore\&. You can have multiple different concrete implementations, where each implementation is for a particular type of keystore\&.
 143 .PP
 144 Currently, there are two command-line tools that use keystore implementations (\f3keytool\fR and \f3jarsigner\fR), and a GUI-based tool named Policy Tool\&. Because the \f3KeyStore\fR class is publicly available, JDK users can write additional security applications that use it\&.
 145 .PP
 146 There is a built-in default implementation provided by Oracle that implements the keystore as a file, that uses a proprietary keystore type (format) named JKS\&. The built-in implementation protects each private key with its individual password and protects the integrity of the entire keystore with a (possibly different) password\&.
 147 .PP
 148 Keystore implementations are provider-based, which means the application interfaces supplied by the \f3KeyStore\fR class are implemented in terms of a Service Provider Interface (SPI)\&. There is a corresponding abstract \f3KeystoreSpi\fR class, also in the \f3java\&.security package\fR, that defines the Service Provider Interface methods that providers must implement\&. The term provider refers to a package or a set of packages that supply a concrete implementation of a subset of services that can be accessed by the Java Security API\&. To provide a keystore implementation, clients must implement a provider and supply a \f3KeystoreSpi\fR subclass implementation, as described in How to Implement a Provider in the Java Cryptography Architecture at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/security/crypto/HowToImplAProvider\&.html
 149 .PP
 150 Applications can choose different types of keystore implementations from different providers, with the \f3getInstance\fR factory method in the \f3KeyStore\fR class\&. A keystore type defines the storage and data format of the keystore information and the algorithms used to protect private keys in the keystore and the integrity of the keystore itself\&. Keystore implementations of different types are not compatible\&.
 151 .PP
 152 The \f3jarsigner\fR command can read file-based keystores from any location that can be specified using a URL\&. In addition, the command can read non-file-based keystores such as those provided by MSCAPI on Windows and PKCS11 on all platforms\&.
 153 .PP
 154 For the \f3jarsigner\fR and \f3keytool\fR commands, you can specify a keystore type at the command line with the \f3-storetype\fR option\&. For Policy Tool, you can specify a keystore type with the \fIEdit\fR command in the \fIKeyStore\fR menu\&.
 155 .PP
 156 If you do not explicitly specify a keystore type, then the tools choose a keystore implementation based on the value of the \f3keystore\&.type\fR property specified in the security properties file\&. The security properties file is called \f3java\&.security\fR, and it resides in the JDK security properties directory, \f3java\&.home/lib/security\fR, where \f3java\&.home\fR is the runtime environment\&'s directory\&. The \f3jre\fR directory in the JDK or the top-level directory of the Java Runtime Environment (JRE)\&.
 157 .PP
 158 Each tool gets the \f3keystore\&.type\fR value and then examines all the installed providers until it finds one that implements keystores of that type\&. It then uses the keystore implementation from that provider\&.
 159 .PP
 160 The \f3KeyStore\fR class defines a static method named \f3getDefaultType\fR that lets applications and applets retrieve the value of the \f3keystore\&.type\fR property\&. The following line of code creates an instance of the default keystore type as specified in the \f3keystore\&.type property\fR:
 161 .sp     
 162 .nf     
 163 \f3KeyStore keyStore = KeyStore\&.getInstance(KeyStore\&.getDefaultType());\fP
 164 .fi     
 165 .nf     
 166 \f3\fR
 167 .fi     
 168 .sp     
 169 The default keystore type is \f3jks\fR (the proprietary type of the keystore implementation provided by Oracle)\&. This is specified by the following line in the security properties file:
 170 .sp     
 171 .nf     
 172 \f3keystore\&.type=jks\fP
 173 .fi     
 174 .nf     
 175 \f3\fR
 176 .fi     
 177 .sp     
 178 Case does not matter in keystore type designations\&. For example, \f3JKS\fR is the same as \f3jks\fR\&.
 179 .PP
 180 To have the tools use a keystore implementation other than the default, change that line to specify a different keystore type\&. For example, if you have a provider package that supplies a keystore implementation for a keystore type called \f3pkcs12\fR, then change the line to the following:
 181 .sp     
 182 .nf     
 183 \f3keystore\&.type=pkcs12\fP
 184 .fi     
 185 .nf     
 186 \f3\fR
 187 .fi     
 188 .sp     
 189 \fINote:\fR If you use the PKCS 11 provider package, then see "KeyTool" and "JarSigner" in Java PKCS #11 Reference Guide at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/security/p11guide\&.html
 190 .SS SUPPORTED\ ALGORITHMS    
 191 By default, the \f3jarsigner\fR command signs a JAR file using one of the following algorithms:
 192 .TP 0.2i    
 193 \(bu
 194 Digital Signature Algorithm (DSA) with the SHA1 digest algorithm
 195 .TP 0.2i    
 196 \(bu
 197 RSA algorithm with the SHA256 digest algorithm
 198 .TP 0.2i    
 199 \(bu
 200 Elliptic Curve (EC) cryptography algorithm with the SHA256 with Elliptic Curve Digital Signature Algorithm (ECDSA)\&.
 201 .PP
 202 If the signer\&'s public and private keys are DSA keys, then \f3jarsigner\fR signs the JAR file with the \f3SHA1withDSA\fR algorithm\&. If the signer\&'s keys are RSA keys, then \f3jarsigner\fR attempts to sign the JAR file with the \f3SHA256withRSA\fR algorithm\&. If the signer\&'s keys are EC keys, then \f3jarsigner\fR signs the JAR file with the \f3SHA256withECDSA\fR algorithm\&.
 203 .PP
 204 These default signature algorithms can be overridden using the \f3-sigalg\fR option\&.
 205 .SS THE\ SIGNED\ JAR\ FILE    
 206 When the \f3jarsigner\fR command is used to sign a JAR file, the output signed JAR file is exactly the same as the input JAR file, except that it has two additional files placed in the META-INF directory:
 207 .TP 0.2i    
 208 \(bu
 209 A signature file with an \f3\&.SF\fR extension
 210 .TP 0.2i    
 211 \(bu
 212 A signature block file with a \f3\&.DSA\fR, \f3\&.RSA\fR, or \f3\&.EC\fR extension
 213 .PP
 214 The base file names for these two files come from the value of the \f3-sigFile\fR option\&. For example, when the option is \f3-sigFile MKSIGN\fR, the files are named \f3MKSIGN\&.SF\fR and \f3MKSIGN\&.DSA\fR
 215 .PP
 216 If no \f3-sigfile\fR option appears on the command line, then the base file name for the \f3\&.SF\fR and \f3\&.DSA\fR files is the first 8 characters of the alias name specified on the command line, all converted to uppercase\&. If the alias name has fewer than 8 characters, then the full alias name is used\&. If the alias name contains any characters that are not allowed in a signature file name, then each such character is converted to an underscore (_) character in forming the file name\&. Valid characters include letters, digits, underscores, and hyphens\&.
 217 .PP
 218 Signature File
 219 
 220 A signature file (\f3\&.SF\fR file) looks similar to the manifest file that is always included in a JAR file when the \f3jarsigner\fR command is used to sign the file\&. For each source file included in the JAR file, the \f3\&.SF\fR file has three lines, such as in the manifest file, that list the following:
 221 .TP 0.2i    
 222 \(bu
 223 File name
 224 .TP 0.2i    
 225 \(bu
 226 Name of the digest algorithm (SHA)
 227 .TP 0.2i    
 228 \(bu
 229 SHA digest value
 230 .PP
 231 In the manifest file, the SHA digest value for each source file is the digest (hash) of the binary data in the source file\&. In the \f3\&.SF\fR file, the digest value for a specified source file is the hash of the three lines in the manifest file for the source file\&.
 232 .PP
 233 The signature file, by default, includes a header with a hash of the whole manifest file\&. The header also contains a hash of the manifest header\&. The presence of the header enables verification optimization\&. See JAR File Verification\&.
 234 .PP
 235 Signature Block File
 236 
 237 The \f3\&.SF\fR file is signed and the signature is placed in the signature block file\&. This file also contains, encoded inside it, the certificate or certificate chain from the keystore that authenticates the public key corresponding to the private key used for signing\&. The file has the extension \f3\&.DSA\fR, \f3\&.RSA\fR, or \f3\&.EC\fR, depending on the digest algorithm used\&.
 238 .SS SIGNATURE\ TIME\ STAMP    
 239 The \f3jarsigner\fR command can generate and store a signature time stamp when signing a JAR file\&. In addition, \f3jarsigner\fR supports alternative signing mechanisms\&. This behavior is optional and is controlled by the user at the time of signing through these options\&. See Options\&.
 240 .sp     
 241 .nf     
 242 \f3\-tsa \fIurl\fR\fP
 243 .fi     
 244 .nf     
 245 \f3\-tsacert \fIalias\fR\fP
 246 .fi     
 247 .nf     
 248 \f3\-altsigner \fIclass\fR\fP
 249 .fi     
 250 .nf     
 251 \f3\-altsignerpath \fIclasspathlist\fR\fP
 252 .fi     
 253 .nf     
 254 \f3\-tsapolicyid \fIpolicyid\fR\fP
 255 .fi     
 256 .nf     
 257 \f3\fR
 258 .fi     
 259 .sp     
 260 .SS JAR\ FILE\ VERIFICATION    
 261 A successful JAR file verification occurs when the signatures are valid, and none of the files that were in the JAR file when the signatures were generated have changed since then\&. JAR file verification involves the following steps:
 262 .TP 0.4i    
 263 1\&.
 264 Verify the signature of the \f3\&.SF\fR file\&.
 265 
 266 The verification ensures that the signature stored in each signature block (\f3\&.DSA\fR) file was generated using the private key corresponding to the public key whose certificate (or certificate chain) also appears in the \f3\&.DSA\fR file\&. It also ensures that the signature is a valid signature of the corresponding signature (\f3\&.SF\fR) file, and thus the \f3\&.SF\fR file was not tampered with\&.
 267 .TP 0.4i    
 268 2\&.
 269 Verify the digest listed in each entry in the \f3\&.SF\fR file with each corresponding section in the manifest\&.
 270 
 271 The \f3\&.SF\fR file by default includes a header that contains a hash of the entire manifest file\&. When the header is present, the verification can check to see whether or not the hash in the header matches the hash of the manifest file\&. If there is a match, then verification proceeds to the next step\&.
 272 
 273 If there is no match, then a less optimized verification is required to ensure that the hash in each source file information section in the \f3\&.SF\fR file equals the hash of its corresponding section in the manifest file\&. See Signature File\&.
 274 
 275 One reason the hash of the manifest file that is stored in the \f3\&.SF\fR file header might not equal the hash of the current manifest file is that one or more files were added to the JAR file (with the \f3jar\fR tool) after the signature and \f3\&.SF\fR file were generated\&. When the \f3jar\fR tool is used to add files, the manifest file is changed by adding sections to it for the new files, but the \f3\&.SF\fR file is not changed\&. A verification is still considered successful when none of the files that were in the JAR file when the signature was generated have been changed since then\&. This happens when the hashes in the non-header sections of the \f3\&.SF\fR file equal the hashes of the corresponding sections in the manifest file\&.
 276 .TP 0.4i    
 277 3\&.
 278 Read each file in the JAR file that has an entry in the \f3\&.SF\fR file\&. While reading, compute the file\&'s digest and compare the result with the digest for this file in the manifest section\&. The digests should be the same or verification fails\&.
 279 
 280 If any serious verification failures occur during the verification process, then the process is stopped and a security exception is thrown\&. The \f3jarsigner\fR command catches and displays the exception\&.
 281 .PP
 282 \fINote:\fR You should read any addition warnings (or errors if you specified the \f3-strict\fR option), as well as the content of the certificate (by specifying the \f3-verbose\fR and \f3-certs\fR options) to determine if the signature can be trusted\&.
 283 .SS MULTIPLE\ SIGNATURES\ FOR\ A\ JAR\ FILE    
 284 A JAR file can be signed by multiple people by running the \f3jarsigner\fR command on the file multiple times and specifying the alias for a different person each time, as follows:
 285 .sp     
 286 .nf     
 287 \f3jarsigner myBundle\&.jar susan\fP
 288 .fi     
 289 .nf     
 290 \f3jarsigner myBundle\&.jar kevin\fP
 291 .fi     
 292 .nf     
 293 \f3\fR
 294 .fi     
 295 .sp     
 296 When a JAR file is signed multiple times, there are multiple \f3\&.SF\fR and \f3\&.DSA\fR files in the resulting JAR file, one pair for each signature\&. In the previous example, the output JAR file includes files with the following names:
 297 .sp     
 298 .nf     
 299 \f3SUSAN\&.SF\fP
 300 .fi     
 301 .nf     
 302 \f3SUSAN\&.DSA\fP
 303 .fi     
 304 .nf     
 305 \f3KEVIN\&.SF\fP
 306 .fi     
 307 .nf     
 308 \f3KEVIN\&.DSA\fP
 309 .fi     
 310 .sp     
 311 .SH OPTIONS    
 312 The following sections describe the various \f3jarsigner\fR options\&. Be aware of the following standards:
 313 .TP 0.2i    
 314 \(bu
 315 All option names are preceded by a minus sign (-)\&.
 316 .TP 0.2i    
 317 \(bu
 318 The options can be provided in any order\&.
 319 .TP 0.2i    
 320 \(bu
 321 Items that are in italics or underlined (option values) represent the actual values that must be supplied\&.
 322 .TP 0.2i    
 323 \(bu
 324 The \f3-storepass\fR, \f3-keypass\fR, \f3-sigfile\fR, \f3-sigalg\fR, \f3-digestalg\fR, \f3-signedjar\fR, and TSA-related options are only relevant when signing a JAR file; they are not relevant when verifying a signed JAR file\&. The \f3-keystore\fR option is relevant for signing and verifying a JAR file\&. In addition, aliases are specified when signing and verifying a JAR file\&.
 325 .TP
 326 -keystore \fIurl\fR
 327 .br
 328 Specifies the URL that tells the keystore location\&. This defaults to the file \f3\&.keystore\fR in the user\&'s home directory, as determined by the \f3user\&.home\fR system property\&.
 329 
 330 A keystore is required when signing\&. You must explicitly specify a keystore when the default keystore does not exist or if you want to use one other than the default\&.
 331 
 332 A keystore is not required when verifying, but if one is specified or the default exists and the \f3-verbose\fR option was also specified, then additional information is output regarding whether or not any of the certificates used to verify the JAR file are contained in that keystore\&.
 333 
 334 The \f3-keystore\fR argument can be a file name and path specification rather than a URL, in which case it is treated the same as a file: URL, for example, the following are equivalent:
 335 .sp     
 336 .nf     
 337 \f3\-keystore \fIfilePathAndName\fR\fP
 338 .fi     
 339 .nf     
 340 \f3\-keystore file:\fIfilePathAndName\fR\fP
 341 .fi     
 342 .nf     
 343 \f3\fR
 344 .fi     
 345 .sp     
 346 
 347 
 348 If the Sun PKCS #11 provider was configured in the \f3java\&.security\fR security properties file (located in the JRE\&'s \f3$JAVA_HOME/lib/security directory\fR), then the \f3keytool\fR and \f3jarsigner\fR tools can operate on the PKCS #11 token by specifying these options:
 349 .sp     
 350 .nf     
 351 \f3\-keystore NONE\fP
 352 .fi     
 353 .nf     
 354 \f3\-storetype PKCS11\fP
 355 .fi     
 356 .nf     
 357 \f3\fR
 358 .fi     
 359 .sp     
 360 
 361 
 362 For example, the following command lists the contents of the configured PKCS#11 token:
 363 .sp     
 364 .nf     
 365 \f3keytool \-keystore NONE \-storetype PKCS11 \-list\fP
 366 .fi     
 367 .nf     
 368 \f3\fR
 369 .fi     
 370 .sp     
 371 
 372 .TP
 373 -storetype \fIstoretype\fR
 374 .br
 375 Specifies the type of keystore to be instantiated\&. The default keystore type is the one that is specified as the value of the \f3keystore\&.type\fR property in the security properties file, which is returned by the static \f3getDefaultType\fR method in \f3java\&.security\&.KeyStore\fR\&.
 376 
 377 The PIN for a PCKS #11 token can also be specified with the \f3-storepass\fR option\&. If none is specified, then the \f3keytool\fR and \f3jarsigner\fR commands prompt for the token PIN\&. If the token has a protected authentication path (such as a dedicated PIN-pad or a biometric reader), then the \f3-protected\fR option must be specified and no password options can be specified\&.
 378 .TP
 379 -storepass[:env | :file] \fIargument\fR
 380 .br
 381 Specifies the password that is required to access the keystore\&. This is only needed when signing (not verifying) a JAR file\&. In that case, if a \f3-storepass\fR option is not provided at the command line, then the user is prompted for the password\&.
 382 
 383 If the modifier \f3env\fR or \f3file\fR is not specified, then the password has the value \fIargument\fR\&. Otherwise, the password is retrieved as follows:
 384 .RS     
 385 .TP 0.2i    
 386 \(bu
 387 \f3env\fR: Retrieve the password from the environment variable named \f3argument\fR\&.
 388 .TP 0.2i    
 389 \(bu
 390 \f3file\fR: Retrieve the password from the file named \f3argument\fR\&.
 391 .RE     
 392 
 393 
 394 \fINote:\fR The password should not be specified on the command line or in a script unless it is for testing purposes, or you are on a secure system\&.
 395 .TP
 396 -keypass [:env | :file] \fIargument\fR
 397 .br
 398 Specifies the password used to protect the private key of the keystore entry addressed by the alias specified on the command line\&. The password is required when using \f3jarsigner\fR to sign a JAR file\&. If no password is provided on the command line, and the required password is different from the store password, then the user is prompted for it\&.
 399 
 400 If the modifier \f3env\fR or \f3file\fR is not specified, then the password has the value \f3argument\fR\&. Otherwise, the password is retrieved as follows:
 401 .RS     
 402 .TP 0.2i    
 403 \(bu
 404 \f3env\fR: Retrieve the password from the environment variable named \f3argument\fR\&.
 405 .TP 0.2i    
 406 \(bu
 407 \f3file\fR: Retrieve the password from the file named \f3argument\fR\&.
 408 .RE     
 409 
 410 
 411 \fINote:\fR The password should not be specified on the command line or in a script unless it is for testing purposes, or you are on a secure system\&.
 412 .TP
 413 -sigfile \fIfile\fR
 414 .br
 415 Specifies the base file name to be used for the generated \f3\&.SF\fR and \f3\&.DSA\fR files\&. For example, if file is \f3DUKESIGN\fR, then the generated \f3\&.SF\fR and \f3\&.DSA\fR files are named \f3DUKESIGN\&.SF\fR and \f3DUKESIGN\&.DSA\fR, and placed in the \f3META-INF\fR directory of the signed JAR file\&.
 416 
 417 The characters in the file must come from the set \f3a-zA-Z0-9_-\fR\&. Only letters, numbers, underscore, and hyphen characters are allowed\&. All lowercase characters are converted to uppercase for the \f3\&.SF\fR and \f3\&.DSA\fR file names\&.
 418 
 419 If no \f3-sigfile\fR option appears on the command line, then the base file name for the \f3\&.SF\fR and \f3\&.DSA\fR files is the first 8 characters of the alias name specified on the command line, all converted to upper case\&. If the alias name has fewer than 8 characters, then the full alias name is used\&. If the alias name contains any characters that are not valid in a signature file name, then each such character is converted to an underscore (_) character to form the file name\&.
 420 .TP
 421 -sigalg \fIalgorithm\fR
 422 .br
 423 Specifies the name of the signature algorithm to use to sign the JAR file\&.
 424 
 425 For a list of standard signature algorithm names, see "Appendix A: Standard Names" in the Java Cryptography Architecture (JCA) Reference Guide at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/security/crypto/CryptoSpec\&.html#AppA
 426 
 427 This algorithm must be compatible with the private key used to sign the JAR file\&. If this option is not specified, then \f3SHA1withDSA\fR, \f3SHA256withRSA\fR, or \f3SHA256withECDSA\fR are used depending on the type of private key\&. There must either be a statically installed provider supplying an implementation of the specified algorithm or the user must specify one with the \f3-providerClass\fR option; otherwise, the command will not succeed\&.
 428 .TP
 429 -digestalg \fIalgorithm\fR
 430 .br
 431 Specifies the name of the message digest algorithm to use when digesting the entries of a JAR file\&.
 432 
 433 For a list of standard message digest algorithm names, see "Appendix A: Standard Names" in the Java Cryptography Architecture (JCA) Reference Guide at http://docs\&.oracle\&.com/javase/8/docs/technotes/guides/security/crypto/CryptoSpec\&.html#AppA
 434 
 435 If this option is not specified, then \f3SHA256\fR is used\&. There must either be a statically installed provider supplying an implementation of the specified algorithm or the user must specify one with the \f3-providerClass\fR option; otherwise, the command will not succeed\&.
 436 .TP
 437 -certs
 438 .br
 439 If the \f3-certs\fR option appears on the command line with the \f3-verify\fR and \f3-verbose\fR options, then the output includes certificate information for each signer of the JAR file\&. This information includes the name of the type of certificate (stored in the \f3\&.DSA\fR file) that certifies the signer\&'s public key, and if the certificate is an X\&.509 certificate (an instance of the \f3java\&.security\&.cert\&.X509Certificate\fR), then the distinguished name of the signer\&.
 440 
 441 The keystore is also examined\&. If no keystore value is specified on the command line, then the default keystore file (if any) is checked\&. If the public key certificate for a signer matches an entry in the keystore, then the alias name for the keystore entry for that signer is displayed in parentheses\&.
 442 .TP
 443 -certchain \fIfile\fR
 444 .br
 445 Specifies the certificate chain to be used when the certificate chain associated with the private key of the keystore entry that is addressed by the alias specified on the command line is not complete\&. This can happen when the keystore is located on a hardware token where there is not enough capacity to hold a complete certificate chain\&. The file can be a sequence of concatenated X\&.509 certificates, or a single PKCS#7 formatted data block, either in binary encoding format or in printable encoding format (also known as Base64 encoding) as defined by the Internet RFC 1421 standard\&. See Internet RFC 1421 Certificate Encoding Standard and http://tools\&.ietf\&.org/html/rfc1421\&.
 446 .TP
 447 -verbose
 448 .br
 449 When the \f3-verbose\fR option appears on the command line, it indicates verbose mode, which causes \f3jarsigner\fR to output extra information about the progress of the JAR signing or verification\&.
 450 .TP
 451 -internalsf
 452 .br
 453 In the past, the \f3\&.DSA\fR (signature block) file generated when a JAR file was signed included a complete encoded copy of the \f3\&.SF\fR file (signature file) also generated\&. This behavior has been changed\&. To reduce the overall size of the output JAR file, the \f3\&.DSA\fR file by default does not contain a copy of the \f3\&.SF\fR file anymore\&. If \f3-internalsf\fR appears on the command line, then the old behavior is utilized\&. This option is useful for testing\&. In practice, do not use the \f3-internalsf\fR option because it incurs higher overhead\&.
 454 .TP
 455 -sectionsonly
 456 .br
 457 If the \f3-sectionsonly\fR option appears on the command line, then the \f3\&.SF\fR file (signature file) generated when a JAR file is signed does not include a header that contains a hash of the whole manifest file\&. It contains only the information and hashes related to each individual source file included in the JAR file\&. See Signature File\&.
 458 
 459 By default, this header is added, as an optimization\&. When the header is present, whenever the JAR file is verified, the verification can first check to see whether the hash in the header matches the hash of the whole manifest file\&. When there is a match, verification proceeds to the next step\&. When there is no match, it is necessary to do a less optimized verification that the hash in each source file information section in the \f3\&.SF\fR file equals the hash of its corresponding section in the manifest file\&. See JAR File Verification\&.
 460 
 461 The \f3-sectionsonly\fR option is primarily used for testing\&. It should not be used other than for testing because using it incurs higher overhead\&.
 462 .TP
 463 -protected
 464 .br
 465 Values can be either \f3true\fR or \f3false\fR\&. Specify \f3true\fR when a password must be specified through a protected authentication path such as a dedicated PIN reader\&.
 466 .TP
 467 -providerClass \fIprovider-class-name\fR
 468 .br
 469 Used to specify the name of cryptographic service provider\&'s master class file when the service provider is not listed in the \f3java\&.security\fR security properties file\&.
 470 
 471 Used with the \f3-providerArg ConfigFilePath\fR option, the \f3keytool\fR and \f3jarsigner\fR tools install the provider dynamically and use \fIConfigFilePath\fR for the path to the token configuration file\&. The following example shows a command to list a \f3PKCS #11\fR keystore when the Oracle PKCS #11 provider was not configured in the security properties file\&.
 472 .sp     
 473 .nf     
 474 \f3jarsigner \-keystore NONE \-storetype PKCS11 \e\fP
 475 .fi     
 476 .nf     
 477 \f3          \-providerClass sun\&.security\&.pkcs11\&.SunPKCS11 \e\fP
 478 .fi     
 479 .nf     
 480 \f3          \-providerArg /mydir1/mydir2/token\&.config \e\fP
 481 .fi     
 482 .nf     
 483 \f3          \-list\fP
 484 .fi     
 485 .nf     
 486 \f3\fR
 487 .fi     
 488 .sp     
 489 
 490 .TP
 491 -providerName \fIproviderName\fR
 492 .br
 493 If more than one provider was configured in the \f3java\&.security\fR security properties file, then you can use the \f3-providerName\fR option to target a specific provider instance\&. The argument to this option is the name of the provider\&.
 494 
 495 For the Oracle PKCS #11 provider, \fIproviderName\fR is of the form \f3SunPKCS11-\fR\fITokenName\fR, where \fITokenName\fR is the name suffix that the provider instance has been configured with, as detailed in the configuration attributes table\&. For example, the following command lists the contents of the \f3PKCS #11\fR keystore provider instance with name suffix \f3SmartCard\fR:
 496 .sp     
 497 .nf     
 498 \f3jarsigner \-keystore NONE \-storetype PKCS11 \e\fP
 499 .fi     
 500 .nf     
 501 \f3        \-providerName SunPKCS11\-SmartCard \e\fP
 502 .fi     
 503 .nf     
 504 \f3        \-list\fP
 505 .fi     
 506 .nf     
 507 \f3\fR
 508 .fi     
 509 .sp     
 510 
 511 .TP
 512 -J\fIjavaoption\fR
 513 .br
 514 Passes through the specified \fIjavaoption\fR string directly to the Java interpreter\&. The \f3jarsigner\fR command is a wrapper around the interpreter\&. This option should not contain any spaces\&. It is useful for adjusting the execution environment or memory usage\&. For a list of possible interpreter options, type \f3java -h\fR or \f3java -X\fR at the command line\&.
 515 .TP
 516 -tsa \fIurl\fR
 517 .br
 518 If \f3-tsa http://example\&.tsa\&.url\fR appears on the command line when signing a JAR file then a time stamp is generated for the signature\&. The URL, \f3http://example\&.tsa\&.url\fR, identifies the location of the Time Stamping Authority (TSA) and overrides any URL found with the \f3-tsacert\fR option\&. The \f3-tsa\fR option does not require the TSA public key certificate to be present in the keystore\&.
 519 
 520 To generate the time stamp, \f3jarsigner\fR communicates with the TSA with the Time-Stamp Protocol (TSP) defined in RFC 3161\&. When successful, the time stamp token returned by the TSA is stored with the signature in the signature block file\&.
 521 .TP
 522 -tsacert \fIalias\fR
 523 .br
 524 When \f3-tsacert alias\fR appears on the command line when signing a JAR file, a time stamp is generated for the signature\&. The alias identifies the TSA public key certificate in the keystore that is in effect\&. The entry\&'s certificate is examined for a Subject Information Access extension that contains a URL identifying the location of the TSA\&.
 525 
 526 The TSA public key certificate must be present in the keystore when using the \f3-tsacert\fR option\&.
 527 .TP
 528 -tsapolicyid \fIpolicyid\fR
 529 .br
 530 Specifies the object identifier (OID) that identifies the policy ID to be sent to the TSA server\&. If this option is not specified, no policy ID is sent and the TSA server will choose a default policy ID\&.
 531 
 532 Object identifiers are defined by X\&.696, which is an ITU Telecommunication Standardization Sector (ITU-T) standard\&. These identifiers are typically period-separated sets of non-negative digits like \f31\&.2\&.3\&.4\fR, for example\&.
 533 .TP
 534 -altsigner \fIclass\fR
 535 .br
 536 This option specifies an alternative signing mechanism\&. The fully qualified class name identifies a class file that extends the \f3com\&.sun\&.jarsigner\&.ContentSigner\fR abstract class\&. The path to this class file is defined by the \f3-altsignerpath\fR option\&. If the \f3-altsigner\fR option is used, then the \f3jarsigner\fR command uses the signing mechanism provided by the specified class\&. Otherwise, the \f3jarsigner\fR command uses its default signing mechanism\&.
 537 
 538 For example, to use the signing mechanism provided by a class named \f3com\&.sun\&.sun\&.jarsigner\&.AuthSigner\fR, use the jarsigner option \f3-altsigner com\&.sun\&.jarsigner\&.AuthSigner\fR\&.
 539 .TP
 540 -altsignerpath \fIclasspathlist\fR
 541 .br
 542 Specifies the path to the class file and any JAR file it depends on\&. The class file name is specified with the \f3-altsigner\fR option\&. If the class file is in a JAR file, then this option specifies the path to that JAR file\&.
 543 
 544 An absolute path or a path relative to the current directory can be specified\&. If \fIclasspathlist\fR contains multiple paths or JAR files, then they should be separated with a colon (:) on Oracle Solaris and a semicolon (;) on Windows\&. This option is not necessary when the class is already in the search path\&.
 545 
 546 The following example shows how to specify the path to a JAR file that contains the class file\&. The JAR file name is included\&.
 547 .sp     
 548 .nf     
 549 \f3\-altsignerpath /home/user/lib/authsigner\&.jar\fP
 550 .fi     
 551 .nf     
 552 \f3\fR
 553 .fi     
 554 .sp     
 555 
 556 
 557 The following example shows how to specify the path to the JAR file that contains the class file\&. The JAR file name is omitted\&.
 558 .sp     
 559 .nf     
 560 \f3\-altsignerpath /home/user/classes/com/sun/tools/jarsigner/\fP
 561 .fi     
 562 .nf     
 563 \f3\fR
 564 .fi     
 565 .sp     
 566 
 567 .TP
 568 -strict
 569 .br
 570 During the signing or verifying process, the command may issue warning messages\&. If you specify this option, the exit code of the tool reflects the severe warning messages that this command found\&. See Errors and Warnings\&.
 571 .TP
 572 -verbose \fIsuboptions\fR
 573 .br
 574 For the verifying process, the \f3-verbose\fR option takes suboptions to determine how much information is shown\&. If the \f3-certs\fR option is also specified, then the default mode (or suboption \f3all\fR) displays each entry as it is being processed, and after that, the certificate information for each signer of the JAR file\&. If the \f3-certs\fR and the \f3-verbose:grouped\fR suboptions are specified, then entries with the same signer info are grouped and displayed together with their certificate information\&. If \f3-certs\fR and the \f3-verbose:summary\fR suboptions are specified, then entries with the same signer information are grouped and displayed together with their certificate information\&. Details about each entry are summarized and displayed as \fIone entry (and more)\fR\&. See Examples\&.
 575 .SH ERRORS\ AND\ WARNINGS    
 576 During the signing or verifying process, the \f3jarsigner\fR command may issue various errors or warnings\&.
 577 .PP
 578 If there is a failure, the \f3jarsigner\fR command exits with code 1\&. If there is no failure, but there are one or more severe warnings, the \f3jarsigner\fR command exits with code 0 when the \f3-strict\fR option is \fInot\fR specified, or exits with the OR-value of the warning codes when the \f3-strict\fR is specified\&. If there is only informational warnings or no warning at all, the command always exits with code 0\&.
 579 .PP
 580 For example, if a certificate used to sign an entry is expired and has a KeyUsage extension that does not allow it to sign a file, the \f3jarsigner\fR command exits with code 12 (=4+8) when the \f3-strict\fR option is specified\&.
 581 .PP
 582 \fINote:\fR Exit codes are reused because only the values from 0 to 255 are legal on Unix-based operating systems\&.
 583 .PP
 584 The following sections describes the names, codes, and descriptions of the errors and warnings that the \f3jarsigner\fR command can issue\&.
 585 .SS FAILURE    
 586 Reasons why the \f3jarsigner\fR command fails include (but are not limited to) a command line parsing error, the inability to find a keypair to sign the JAR file, or the verification of a signed JAR fails\&.
 587 .TP     
 588 failure
 589 Code 1\&. The signing or verifying fails\&.
 590 .SS SEVERE\ WARNINGS    
 591 \fINote:\fR Severe warnings are reported as errors if you specify the \f3-strict\fR option\&.
 592 .PP
 593 Reasons why the \f3jarsigner\fR command issues a severe warning include the certificate used to sign the JAR file has an error or the signed JAR file has other problems\&.
 594 .TP     
 595 hasExpiredCert
 596 Code 4\&. This jar contains entries whose signer certificate has expired\&.
 597 .TP     
 598 notYetValidCert
 599 Code 4\&. This jar contains entries whose signer certificate is not yet valid\&.
 600 .TP     
 601 chainNotValidated
 602 Code 4\&. This jar contains entries whose certificate chain cannot be correctly validated\&.
 603 .TP     
 604 badKeyUsage
 605 Code 8\&. This jar contains entries whose signer certificate\&'s KeyUsage extension doesn\&'t allow code signing\&.
 606 .TP     
 607 badExtendedKeyUsage
 608 Code 8\&. This jar contains entries whose signer certificate\&'s ExtendedKeyUsage extension doesn\&'t allow code signing\&.
 609 .TP     
 610 badNetscapeCertType
 611 Code 8\&. This jar contains entries whose signer certificate\&'s NetscapeCertType extension doesn\&'t allow code signing\&.
 612 .TP     
 613 hasUnsignedEntry
 614 Code 16\&. This jar contains unsigned entries which have not been integrity-checked\&.
 615 .TP     
 616 notSignedByAlias
 617 Code 32\&. This jar contains signed entries which are not signed by the specified alias(es)\&.
 618 .TP     
 619 aliasNotInStore
 620 Code 32\&. This jar contains signed entries that are not signed by alias in this keystore\&.
 621 .SS INFORMATIONAL\ WARNINGS    
 622 Informational warnings include those that are not errors but regarded as bad practice\&. They do not have a code\&.
 623 .TP     
 624 hasExpiringCert
 625 This jar contains entries whose signer certificate will expire within six months\&.
 626 .TP     
 627 noTimestamp
 628 This jar contains signatures that does not include a timestamp\&. Without a timestamp, users may not be able to validate this JAR file after the signer certificate\&'s expiration date (\f3YYYY-MM-DD\fR) or after any future revocation date\&.
 629 .SH EXAMPLES    
 630 .SS SIGN\ A\ JAR\ FILE    
 631 Use the following command to sign bundle\&.jar with the private key of a user whose keystore alias is \f3jane\fR in a keystore named \f3mystore\fR in the \f3working\fR directory and name the signed JAR file \f3sbundle\&.jar\fR:
 632 .sp     
 633 .nf     
 634 \f3jarsigner \-keystore /working/mystore\fP
 635 .fi     
 636 .nf     
 637 \f3    \-storepass <keystore password>\fP
 638 .fi     
 639 .nf     
 640 \f3    \-keypass <private key password>\fP
 641 .fi     
 642 .nf     
 643 \f3    \-signedjar sbundle\&.jar bundle\&.jar jane\fP
 644 .fi     
 645 .nf     
 646 \f3\fR
 647 .fi     
 648 .sp     
 649 There is no \f3-sigfile\fR specified in the previous command so the generated \f3\&.SF\fR and \f3\&.DSA\fR files to be placed in the signed JAR file have default names based on the alias name\&. They are named \f3JANE\&.SF\fR and \f3JANE\&.DSA\fR\&.
 650 .PP
 651 If you want to be prompted for the store password and the private key password, then you could shorten the previous command to the following:
 652 .sp     
 653 .nf     
 654 \f3jarsigner \-keystore /working/mystore\fP
 655 .fi     
 656 .nf     
 657 \f3    \-signedjar sbundle\&.jar bundle\&.jar jane\fP
 658 .fi     
 659 .nf     
 660 \f3\fR
 661 .fi     
 662 .sp     
 663 If the keystore is the default keystore (\&.keystore in your home directory), then you do not need to specify a keystore, as follows:
 664 .sp     
 665 .nf     
 666 \f3jarsigner \-signedjar sbundle\&.jar bundle\&.jar jane\fP
 667 .fi     
 668 .nf     
 669 \f3\fR
 670 .fi     
 671 .sp     
 672 If you want the signed JAR file to overwrite the input JAR file (bundle\&.jar), then you do not need to specify a \f3-signedjar\fR option, as follows:
 673 .sp     
 674 .nf     
 675 \f3jarsigner bundle\&.jar jane\fP
 676 .fi     
 677 .nf     
 678 \f3\fR
 679 .fi     
 680 .sp     
 681 .SS VERIFY\ A\ SIGNED\ JAR\ FILE    
 682 To verify a signed JAR file to ensure that the signature is valid and the JAR file was not been tampered with, use a command such as the following:
 683 .sp     
 684 .nf     
 685 \f3jarsigner \-verify sbundle\&.jar\fP
 686 .fi     
 687 .nf     
 688 \f3\fR
 689 .fi     
 690 .sp     
 691 When the verification is successful, \f3jar verified\fR is displayed\&. Otherwise, an error message is displayed\&. You can get more information when you use the \f3-verbose\fR option\&. A sample use of \f3jarsigner\fR with the\f3-verbose\fR option follows:
 692 .sp     
 693 .nf     
 694 \f3jarsigner \-verify \-verbose sbundle\&.jar\fP
 695 .fi     
 696 .nf     
 697 \f3\fR
 698 .fi     
 699 .nf     
 700 \f3           198 Fri Sep 26 16:14:06 PDT 1997 META\-INF/MANIFEST\&.MF\fP
 701 .fi     
 702 .nf     
 703 \f3           199 Fri Sep 26 16:22:10 PDT 1997 META\-INF/JANE\&.SF\fP
 704 .fi     
 705 .nf     
 706 \f3          1013 Fri Sep 26 16:22:10 PDT 1997 META\-INF/JANE\&.DSA\fP
 707 .fi     
 708 .nf     
 709 \f3    smk   2752 Fri Sep 26 16:12:30 PDT 1997 AclEx\&.class\fP
 710 .fi     
 711 .nf     
 712 \f3    smk    849 Fri Sep 26 16:12:46 PDT 1997 test\&.class\fP
 713 .fi     
 714 .nf     
 715 \f3\fR
 716 .fi     
 717 .nf     
 718 \f3      s = signature was verified\fP
 719 .fi     
 720 .nf     
 721 \f3      m = entry is listed in manifest\fP
 722 .fi     
 723 .nf     
 724 \f3      k = at least one certificate was found in keystore\fP
 725 .fi     
 726 .nf     
 727 \f3\fR
 728 .fi     
 729 .nf     
 730 \f3    jar verified\&.\fP
 731 .fi     
 732 .nf     
 733 \f3\fR
 734 .fi     
 735 .sp     
 736 .SS VERIFICATION\ WITH\ CERTIFICATE\ INFORMATION    
 737 If you specify the \f3-certs\fR option with the \f3-verify\fR and \f3-verbose\fR options, then the output includes certificate information for each signer of the JAR file\&. The information includes the certificate type, the signer distinguished name information (when it is an X\&.509 certificate), and in parentheses, the keystore alias for the signer when the public key certificate in the JAR file matches the one in a keystore entry, for example:
 738 .sp     
 739 .nf     
 740 \f3jarsigner \-keystore /working/mystore \-verify \-verbose \-certs myTest\&.jar\fP
 741 .fi     
 742 .nf     
 743 \f3\fR
 744 .fi     
 745 .nf     
 746 \f3           198 Fri Sep 26 16:14:06 PDT 1997 META\-INF/MANIFEST\&.MF\fP
 747 .fi     
 748 .nf     
 749 \f3           199 Fri Sep 26 16:22:10 PDT 1997 META\-INF/JANE\&.SF\fP
 750 .fi     
 751 .nf     
 752 \f3          1013 Fri Sep 26 16:22:10 PDT 1997 META\-INF/JANE\&.DSA\fP
 753 .fi     
 754 .nf     
 755 \f3           208 Fri Sep 26 16:23:30 PDT 1997 META\-INF/JAVATEST\&.SF\fP
 756 .fi     
 757 .nf     
 758 \f3          1087 Fri Sep 26 16:23:30 PDT 1997 META\-INF/JAVATEST\&.DSA\fP
 759 .fi     
 760 .nf     
 761 \f3    smk   2752 Fri Sep 26 16:12:30 PDT 1997 Tst\&.class\fP
 762 .fi     
 763 .nf     
 764 \f3\fR
 765 .fi     
 766 .nf     
 767 \f3      X\&.509, CN=Test Group, OU=Java Software, O=Oracle, L=CUP, S=CA, C=US (javatest)\fP
 768 .fi     
 769 .nf     
 770 \f3      X\&.509, CN=Jane Smith, OU=Java Software, O=Oracle, L=cup, S=ca, C=us (jane)\fP
 771 .fi     
 772 .nf     
 773 \f3\fR
 774 .fi     
 775 .nf     
 776 \f3      s = signature was verified\fP
 777 .fi     
 778 .nf     
 779 \f3      m = entry is listed in manifest\fP
 780 .fi     
 781 .nf     
 782 \f3      k = at least one certificate was found in keystore\fP
 783 .fi     
 784 .nf     
 785 \f3\fR
 786 .fi     
 787 .nf     
 788 \f3    jar verified\&.\fP
 789 .fi     
 790 .nf     
 791 \f3\fR
 792 .fi     
 793 .sp     
 794 If the certificate for a signer is not an X\&.509 certificate, then there is no distinguished name information\&. In that case, just the certificate type and the alias are shown\&. For example, if the certificate is a PGP certificate, and the alias is \f3bob\fR, then you would get: \f3PGP, (bob)\fR\&.
 795 .SH SEE\ ALSO    
 796 .TP 0.2i    
 797 \(bu
 798 jar(1)
 799 .TP 0.2i    
 800 \(bu
 801 keytool(1)
 802 .TP 0.2i    
 803 \(bu
 804 Trail: Security Features in Java SE at http://docs\&.oracle\&.com/javase/tutorial/security/index\&.html
 805 .RE
 806 .br
 807 'pl 8.5i
 808 'bp