java.security.cert.CertificateException: Certificates does not conform to algorithm constraints

后端 未结 9 1576
难免孤独
难免孤独 2020-11-30 02:59

I have a mapping application that can add ArcGIS 9.3+ base maps given a URL. One of the URLs that I would like to add is from a customer\'s URL and is secured. My

9条回答
  •  时光取名叫无心
    2020-11-30 03:38

    this is more likely happening because somewhere along your certificate chain you have a certificate, more likely an old root, which is still signed with the MD2RSA algorythm.

    You need to locate it into your certificate store and delete it.

    Then get back to your certification authority and ask them for then new root.

    It will more likely be the same root with the same validity period but it has been recertified with SHA1RSA.

    Hope this help.

提交回复
热议问题