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
{{ message }}
This repository was archived by the owner on Feb 22, 2026. It is now read-only.
The function acme_common::crypto::openssl_certificate::gen_certificate() uses X509Extension::new which is deprecated by the openssl crate since version 0.10.51.
Currently, the extensions module does not provide the structure for the acmeIdentifier extension introduced by RFC 8737, leaving no other choice than using X509Extension::new_from_der.
The use of deprecated function warning has been silenced, however it is not a long-term solution. The call to X509Extension::new should be replaced by something else.
The function
acme_common::crypto::openssl_certificate::gen_certificate()usesX509Extension::newwhich is deprecated by theopensslcrate since version 0.10.51.Currently, the
extensionsmodule does not provide the structure for theacmeIdentifierextension introduced by RFC 8737, leaving no other choice than usingX509Extension::new_from_der.The use of deprecated function warning has been silenced, however it is not a long-term solution. The call to
X509Extension::newshould be replaced by something else.