0

我想用新的 as3 应用更新 android html5 应用。问题是当我使用现有的证书密钥在 Flash Builder 中打包时,我得到“此证书的密码不正确”

4

1 回答 1

1

尝试使用keytool. 在mac中,可以执行以下命令生成新证书:

$ keytool -keystore cert.jks -genkeypair -alias cert -keyalg RSA -keysize 2048 \
  -validity 18250 -dname 'CN=cert,OU=org,O=org,L=location,ST=state,C=PH'

$ keytool -keystore cert.jks -exportcert -alias cert \
  | openssl x509 -inform der -text

$ keytool -importkeystore -srckeystore cert.jks -destkeystore cert.p12 \
  -srcstoretype jks -deststoretype pkcs12

以下是如何签署您的申请的流程

于 2013-10-22T01:37:45.440 回答