1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
This directory contains a *very* small part of OpenSSL. Currently only parts
of the OpenSSL MD5 implementation.
The files that has been taken from the 3.1.4 version of OpenSSL:
./LICENSE.txt
./crypto/md5/md5_local.h
./crypto/md5/md5_dgst.c
./include/crypto/md32_common.h
./include/openssl_local/md5.h (renamed from include/openssl/md5.h)
The openssl.diff file contains the diff between the original files and the ones
included in OTP.
Ignoring LICENSE.txt (which contains the full Apache 2.0 license) the
copyright and license notice of the above OpenSSL files are as follows
(copyright years differ a bit):
/*
* Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
*
* Licensed under the Apache License 2.0 (the "License"). You may not use
* this file except in compliance with the License. You can obtain a copy
* in the file LICENSE in the source distribution or at
* https://www.openssl.org/source/license.html
*/
|