pub fn ipc_keystore_connect<P>(
    connection_url: Url,
    passphrase: P
) -> impl Future<Output = Result<LairClient, OneErr>> + Send + 'static
where P: Into<BufRead> + 'static + Send,
Expand description

Connect to an IpcKeystoreServer instance via unix domain socket on linux/macOs or named pipe on windows. This constructor will first validate server authenticity, then unlock the connection with the supplied passphrase.