From 10900eda816a9fb0eb51fb78d518ff599d85e4ae Mon Sep 17 00:00:00 2001 From: Vladimir Panteleev Date: Sat, 21 May 2022 14:14:01 +0000 Subject: [PATCH] README: Convert to Markdown --- README => README.md | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) rename README => README.md (50%) diff --git a/README b/README.md similarity index 50% rename from README rename to README.md index 20bda83..6143152 100644 --- a/README +++ b/README.md @@ -1,18 +1,20 @@ OpenSSL D interface ------------------- -From the OpenSSL website: "The OpenSSL Project is a collaborative effort to -develop a robust, commercial-grade, full-featured, and Open Source toolkit -implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security -(TLS v1) protocols as well as a full-strength general purpose cryptography -library. The project is managed by a worldwide community of volunteers that -use the Internet to communicate, plan, and develop the OpenSSL toolkit and its -related documentation." +From the OpenSSL website: + +> The OpenSSL Project is a collaborative effort to develop a robust, +> commercial-grade, full-featured, and Open Source toolkit +> implementing the Secure Sockets Layer (SSL v2/v3) and Transport +> Layer Security (TLS v1) protocols as well as a full-strength general +> purpose cryptography library. The project is managed by a worldwide +> community of volunteers that use the Internet to communicate, plan, +> and develop the OpenSSL toolkit and its related documentation. Library version: 1.1.0h Status: (Almost) complete, typical application should build fine. Most of the -functions from are not available due to missing Kerberos +functions from `` are not available due to missing Kerberos headers. The OpenSSL headers are huge (>35k LOC) and make quite liberal use of the C @@ -20,12 +22,14 @@ preprocessor, and thus a fully automatic translation is as desirable as it is infeasible. This repository contains the result of a semi-automatic approach, and while all header files have been ported (and successfully compile), some preprocessor artifacts still need to be ported (currently -commented out and tagged with a FIXME note). +commented out and tagged with a `FIXME` note). -The OPENSSL_NO_* family of conditional compilation switches has been +The `OPENSSL_NO_*` family of conditional compilation switches has been translated to D version()s, none of which is set by default. -License: The OpenSSL toolkit is under a dual license, i.e. both the conditions +### License + +The OpenSSL toolkit is under a dual license, i.e. both the conditions of the OpenSSL License and the original SSLeay license apply to the toolkit. See the OpenSSL distribution for details. These interface files are a derived work and do not impose any additional restrictions.