From 1c6f6d66706d3240253a970f1efd59647d2b0b2b Mon Sep 17 00:00:00 2001 From: Joshua Potts <8704475+iamjpotts@users.noreply.github.com> Date: Thu, 24 Aug 2023 13:35:47 -0500 Subject: [PATCH] Add example of generating a new CA and a new server cert signed by that CA, resolving #79 --- examples/auto-gen-ca-and-server-tls.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/examples/auto-gen-ca-and-server-tls.rs b/examples/auto-gen-ca-and-server-tls.rs index b41851ab..948b4afa 100644 --- a/examples/auto-gen-ca-and-server-tls.rs +++ b/examples/auto-gen-ca-and-server-tls.rs @@ -8,16 +8,6 @@ //! This doesn't start a network service (not even on localhost). //! Instead, it creates an in-memory TLS server and an in-memory //! TLS client in two separate threads in the same process. -//! -//! This example has the same author as a similar test in -//! https://github.com/iamjpotts/demo_docker_registry_auto_gen_tls/blob/31c85aa06a87a8dbebc457af9b5998038e2daaa2/tests/test_utils/cert_gen.rs -//! which does not have a license. -//! -//! This example auto-gen-ca-and-server-tls is contributed by -//! the same author into rcgen according to the rcgen license: -//! -//! "MIT or Apache License 2.0, at your option." -//! use std::error::Error; use std::io;