You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our testing, we discovered that the plugin is incompatible with OpenSSL versions earlier than v1.1.1h. This is due to our usage of X509Chain.Build(), which requires interfacing with the system's cryptography library. Older versions of OpenSSL do not support certificates generated by Azure Key Vault, leading to compatibility issues.
To resolve this, we've decided to eliminate the OpenSSL dependency. We will build the certificate chain by directly concatenating the leaf certificate and the certificate bundle, bypassing the need to validate the chain's integrity.
The text was updated successfully, but these errors were encountered:
After the PR, the plugin will not check the certificate chain integrity.
Resolves#116
Signed-off-by: Junjie Gao <[email protected]>
---------
Signed-off-by: Junjie Gao <[email protected]>
Update:
- With the removal of the automatic certificate chain arrangement
feature in update #116, you'll now need to manually create a valid
certificate bundle by following the guide.
Signed-off-by: Junjie Gao <[email protected]>
---------
Signed-off-by: Junjie Gao <[email protected]>
In our testing, we discovered that the plugin is incompatible with OpenSSL versions earlier than v1.1.1h. This is due to our usage of X509Chain.Build(), which requires interfacing with the system's cryptography library. Older versions of OpenSSL do not support certificates generated by Azure Key Vault, leading to compatibility issues.
To resolve this, we've decided to eliminate the OpenSSL dependency. We will build the certificate chain by directly concatenating the leaf certificate and the certificate bundle, bypassing the need to validate the chain's integrity.
The text was updated successfully, but these errors were encountered: