jarsigner Questions

9

Solved

I am trying to upload an Application on the Google Play store. I am building the .apk and signing it using Maven. I have used maven-jarsigner-plugin to sign the .apk file. I am using the key that I...
Nicolettenicoli asked 21/5, 2013 at 23:42

2

Solved

I know that this is unsafe, but is there any easy way to pass passphrase to the jarsigner.exe: jrsigner.exe -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore ... Enter Passphrase for key...
Tortoise asked 1/2, 2017 at 8:46

6

Solved

In Windows command prompt: >keytool -genkey -alias me >keytool -selfcert -alias me >jarsigner myJar.jar me Only one alias can be specified I have failed to find any info on this error o...
Gambell asked 5/1, 2012 at 18:54

7

Solved

I have imported a certificate into a private ~/.keystore file: keytool -list Enter keystore password: Keystore type: JKS Keystore provider: SUN Your keystore contains 1 entry mylyn-mantis, Jul ...
Sonnnie asked 15/7, 2010 at 13:17

3

Solved

My purpose is to use jarsigner to sign apk. I get the following prompt: % jarsigner The operation couldn’t be completed. Unable to locate a Java Runtime that supports jarsigner. Please visit http:...
Curling asked 10/2, 2022 at 2:57

4

Got a certificate to sign the android unsigned release apk files, So I imported the cer using command: keytool -import -alias alias_name -file cer_name.cer -storepass changeit -keystore my_keystor...
Bina asked 7/11, 2017 at 7:45

5

Solved

I have an existing unsigned apk and I want to sign it using my debug.keystore file. Here I found a tutorial how it can be done. jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my...
Louth asked 23/5, 2013 at 10:14

7

Solved

I need to sign Android application (.apk). I have .pfx file. I converted it to .cer file via Internet Explorer and then converted .cer to .keystore using keytool. Then I've tried to sign .apk with ...
Varuna asked 18/11, 2010 at 16:25

8

Solved

I am trying to sign a .wgt file(widget which is a jar file) using jarsigner of Java 6. But when I try to sign, it gives me the following error, after asking to enter the passphrase for keystore. j...
Lavernalaverne asked 4/6, 2012 at 19:28

1

I'm switching my CI process from producing APK files to App Bundles. One stage in my pipeline will, after producing the signed binary, dump the signature and validate the signature on the APK to ma...
Orator asked 21/9, 2019 at 20:22

1

Solved

Im trying to RSA-PSS-sign a JAR file with the JarSigner using PKCS#11. To specify the signature algorithm the JarSigner uses the sigalg flag. The JDK 14 Docs of the JarSigner does not specify which...
Gowk asked 2/10, 2020 at 13:11

2

anyone know how to sign .aab file using new keystore from command line? The documentation here mentions that we can use jarsigner to sign our app bundle from the command line. but I cannot find the...
Reynoso asked 28/5, 2018 at 6:4

5

Solved

ERROR MESSAGE: jarsigner: Certificate chain not found for: project_foo.<br/> project_foo must reference a valid KeyStore key entry containing a private key and corresponding public key certi...
Burrill asked 20/5, 2014 at 2:49

1

I have a Maven project that includes some test cases. Today I tried adding the jarsigner plugin and now the tests fail with: java.lang.SecurityException: class "types.AccountType"'s signer informa...
Folia asked 19/2, 2014 at 12:4

4

Solved

i'm trying to check if my signed release apk is really signed. But following some tutorials, or the single i've found . $ jarsigner -verify -verbose -certs my_application.apk I am receiving this...
Phototonus asked 14/10, 2015 at 17:53

3

Solved

Is this even possible? I have a key-pair that I already made with GPG but I just can't find a way to sign it with that key. I don't really want to make a new key with keytool or whatever just for t...
Spinneret asked 27/6, 2012 at 3:28

1

Solved

Hi I am new with java modules so this might be a dumb question. I was trying to sign my jar file with keystore and got the following error. user@Ubuntu:libs(master)$ jarsigner -keystore keyStoreF...
Sash asked 23/12, 2018 at 8:5

1

Solved

I am trying to use JarSigner to sign .jar files with XMSS Signatures. With the use of the JCA/JCE Post-Quantum Cryptography Provider from BouncyCastle it is possible to generate XMSS and XMSSMT Key...
Giacobo asked 26/11, 2018 at 13:57

0

What I Have I have an Android app with some sensitive data. I want to make sure that the client app calls the server only if it has not been tampered with in any way. Basically, I want to check th...
Kipp asked 19/3, 2018 at 19:30

1

Solved

I have a Xamarin.Forms Android application, developed using Visual Studio 2017. If I run/debug the application from Visual studio, with a USB device, it works well (both debug and release configur...
Vitals asked 16/3, 2018 at 4:44

2

I am developing a Spring Boot Application that serves REST HTTP(S) requests. (pretty common). It works as it is supposed, but after the final (and working) jar is signed (by a valid certificate) a...
Zionism asked 16/2, 2018 at 20:26

4

Solved

I had signed the APK by using keytool, jarsigner, and zipalign utlities. I have used the following commands: keytool -genkey -v -keystore myAppTransporterKey.keystore -alias myTransporter -keyal...
Wristband asked 2/7, 2017 at 19:21

3

After a while of not updating my applications in the Play Store I tried to sign one of my APK with my keystore, only to find that the keystore and alias password doesn't work anymore. The keystore ...
Dhammapada asked 24/2, 2016 at 9:29

4

Solved

It seems like Thawte root certificates in JDK 1.7.0_80 is revoked. https://www.thawte.com/roots/retired.html Using the 7u80 jarsigner no longer works and it worked fine just a few days ago. /usr/...
Phyllys asked 6/10, 2016 at 7:56

1

As I learned from https://docs.oracle.com/javase/tutorial/deployment/jar/intro.html the procedure of signing jar file with jarsigner is following: The manifest file is updated with a list of hash...
Resupine asked 27/3, 2017 at 15:56

© 2022 - 2024 — McMap. All rights reserved.