diff --git a/tacd/src/standalone_server.rs b/tacd/src/standalone_server.rs index 9134bfc..0e429a9 100644 --- a/tacd/src/standalone_server.rs +++ b/tacd/src/standalone_server.rs @@ -1,10 +1,10 @@ -use acme_common::crypto::{PrivateKey, X509Certificate}; +use acme_common::crypto::{KeyPair, X509Certificate}; use acme_common::error::Error; pub fn start( listen_addr: &str, certificate: &X509Certificate, - private_key: &PrivateKey, + key_pair: &KeyPair, ) -> Result<(), Error> { Err("The standalone server is not implemented yet.".into()) }