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
Add a Issuer::from_ca_cert_der alternative that takes a KeyPair reference, instead of requireing an owned instance of KeyPair.
My current workarround:
fnclone_keypair(keypair:&KeyPair) -> KeyPair{let der = PrivateKeyDer::try_from(keypair.serialize_der()).expect("Unable to clone keypair");KeyPair::from_der_and_sign_algo(&der, keypair.algorithm()).expect("Unable to clone keypair")}