Android平台簽名證書 keystore

2021-10-04 20:44:08 字數 1287 閱讀 7934

前言:android打包發布apk時,需要使用字尾為.keystore的數字證書進行簽名,生成時預設已安裝jdk環境

--使用keytool -genkey命令生成證書:

keytool -genkey -alias test -keyalg rsa -keysize 2048 -validity 36500 -keystore test.keystore
備註:

(1)test是證書別名

(2)test.keystore是證書檔名稱

--回車後根據提示

enter keystore password:  //輸入證書檔案密碼,輸入完成回車  

re-enter new password: //再次輸入證書檔案密碼,輸入完成回車

what is your first and last name?

[unknown]: //輸入名字和姓氏,輸入完成回車

what is the name of your organizational unit?

[unknown]: //輸入組織單位名稱,輸入完成回車

what is the name of your organization?

[unknown]: //輸入組織名稱,輸入完成回車

what is the name of your city or locality?

[unknown]: //輸入城市或區域名稱,輸入完成回車

what is the name of your state or province?

[unknown]: //輸入省/市/自治區名稱,輸入完成回車

what is the two-letter country code for this unit?

[unknown]: //輸入國家/地區代號(兩個字母),中國為cn,輸入完成回車

is cn=xx, ou=xx, o=xx, l=xx, st=xx, c=xx correct?

[no]: //確認上面輸入的內容是否正確,輸入y,回車

enter key password for (return if same as keystore password): //確認證書密碼與證書檔案密碼一樣,直接回車就可以

keytool -list -v -keystore test.keystore  

enter keystore password: //輸入密碼,回車

android證書簽名

1.生成證書android.keystore,這個android的名字可以隨便起 img 2.將生成的android.keystore檔案拷到d 盤,在d 盤下要先把你的要簽名的檔案拷過去 3.現在d 盤下面存在android.keystore檔案,及你的未簽名檔案 womobile android...

Android 系統應用平台簽名

一 先把指令列出來 如果這裡報錯的話,使用指定的庫 二 具體操作 1 新建乙個目錄signapk 2 找到platform.x509.pem和platform.pk8放到signapk中。檔案在build make target product security目錄下。3 找到signapk.jar...

簽名證書VS加密證書

從證書的用途來看,數字證書可以分為 簽名證書 主要用於對使用者資訊進行簽名,以保證資訊的不可否認性。加密證書 主要用於對使用者傳送資訊進行加密,以保證資訊的真實性和完整性。什麼是加密證書和簽名證書?數字證書可分為簽名證書和加密證書。簽名證書主要用於對使用者資訊進行簽名,以保證資訊的有效性和不可否認性...