2023-02-20 21:30:55 -08:00
|
|
|
# keytool
|
|
|
|
|
|
|
|
> Keytool is a certificate management utility included with Java.
|
2023-06-04 07:18:54 +05:30
|
|
|
> More information: <https://docs.oracle.com/en/java/javase/20/docs/specs/man/keytool.html>.
|
2023-02-20 21:30:55 -08:00
|
|
|
|
|
|
|
- Create a keystore:
|
|
|
|
|
|
|
|
`keytool -genkeypair -v -keystore {{path/to/file.keystore}} -alias {{key_name}}`
|
|
|
|
|
|
|
|
- Change a keystore password:
|
|
|
|
|
|
|
|
`keytool -storepasswd -keystore {{path/to/file.keystore}}`
|
|
|
|
|
|
|
|
- Change a key's password inside a specific keystore:
|
|
|
|
|
2023-06-14 17:32:31 +02:00
|
|
|
`keytool -keypasswd -alias {{key_name}} -keystore {{path/to/file.keystore}}`
|