Generate signature file keystore

How to generate a signature file using keytool.exe in jdk?

1, through the command line cmd into the jdk bin directory, you will find a keytool.exe file

Excuting an order:keytool -genkey -alias test.keystore -keyalg RSA -validity 10000 -keystore e:\key\test.keystore

Parameters after -aliastest.keystoreIs the name of the file to be generated

Parameters after -validity10000Is the valid time of this keystore

Parameters after -keystoree:\key\test.keystoreIs the file path, the name is best consistent with the previous -alias parameter

 

 

If it is successful, the test.keystore file will be generated in the key folder of the E drive.

Intelligent Recommendation

Signature file. KeyStore and .jks

2019 Unicorn Enterprise Heavy Recruitment Python Engineer Standard >>> First, .jks and .keystore difference Both are used to pack, and guarantee the uniqueness of the application! The biggest...

Android generates keystore signature file

Keystore file background When we integrate a third-party platform such as a high-tech map or a Tencent SDK, we often register us to write the SHA1 code of the application, which involves the signature...

Unity's production .keystore signature file

This signature file can be created in both Unity and Android. There are also many tutorials online, Let’s share the process of using the command prompt just learned, First open a command prompt,...

Common operations of signature file keystore

prepare materials Basic information of keystore Name the keystore: test.keystore Keystore password: 111111 Effective time: 40000 Encryption algorithm: RSA Entry 1: test1 Entry 2: test2 Test1 entity in...

Android signature mechanism: generate keystore, signature, view signature information

2019 Unicorn Enterprise Heavy Gold Recruitment Python Engineer Standard >>> Android's unique security mechanism, exceptAuthority mechanismIn addition, the other one is the signature mechanism...

More Recommendation

Generate keystore and application signature (MD5) in AndroidStudio

One: Let ’s talk about how AndroidStudio generates .keystore Click "Generate Signed APK" Click "Create new ..." we go to create After the information is filled in, click &quo...

Android Platform Signature Certificate (.keyStore) Generate Guide

Android platform packages release APK applications, you need to use a digital certificate (.keyStore file) to sign the developer identity. The generation of Android certificates is self-service and fr...

Android system signature and generate keystore secret

Android 11 system signature and keystore 1. What is a system signature In the Android system, all APPs need to be signed to ensure that registration is unique in the device, avoiding the same package ...

Unity Package Apk to generate signature certificate keystore

When you want to export android app as apk during Android project development, you need to select a digital certificate, namely the keystore file (android.keystore), which is used to sign our APP and ...

[Android Tutorial Series No. 27] How to generate a KeyStore signature file using the KeyTool tool

This is the [27th of the Android tutorial series] If it feels useful, please pay attention to the column. Article catalog One: What is KeyTool? Two: Do ​​you need to install? Three: KeyTool key storag...

Copyright  DMCA © 2018-2026 - All Rights Reserved - www.programmersought.com  User Notice

Top