Commit e3713c36 authored by Rich Salz's avatar Rich Salz
Browse files

Remove email addresses from source code.



Names were not removed.
Some comments were updated.
Replace Andy's address with openssl.org

Reviewed-by: default avatarAndy Polyakov <appro@openssl.org>
Reviewed-by: default avatarPaul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/4516)
parent 0e598a3d
Loading
Loading
Loading
Loading
+3 −12
Original line number Diff line number Diff line
@@ -208,7 +208,7 @@ sub vms_info {
        # gcc shared build with Sun C. Given that gcc generates faster
        # code [thanks to inline assembler], I would actually recommend
        # to consider using gcc shared build even with vendor compiler:-)
        #					<appro@fy.chalmers.se>
        #                        -- <appro@openssl.org>
        inherit_from     => [ "solaris-common", asm("x86_64_asm") ],
        cc               => "gcc",
        cflags           => add_before(picker(default => "-m64 -Wall -DL_ENDIAN",
@@ -416,7 +416,6 @@ sub vms_info {
#   targets; b) performance-critical 32-bit assembly modules implement
#   even PA-RISC 2.0-specific code paths, which are chosen at run-time,
#   thus adequate performance is provided even with PA-RISC 1.1 build.
#					<appro@fy.chalmers.se>
    "hpux-parisc-gcc" => {
        inherit_from     => [ "BASE_unix" ],
        cc               => "gcc",
@@ -456,9 +455,6 @@ sub vms_info {
    },

    # More attempts at unified 10.X and 11.X targets for HP C compiler.
    #
    # Chris Ruemmler <ruemmler@cup.hp.com>
    # Kevin Steves <ks@hp.se>
    "hpux-parisc-cc" => {
        inherit_from     => [ "BASE_unix" ],
        cc               => "cc",
@@ -516,8 +512,6 @@ sub vms_info {
        shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
        multilib         => "/hpux32",
    },
    # Frank Geurts <frank.geurts@nl.abnamro.com> has patiently assisted
    # with debugging of the following config.
    "hpux64-ia64-cc" => {
        inherit_from     => [ "BASE_unix", asm("ia64_asm") ],
        cc               => "cc",
@@ -826,8 +820,6 @@ sub vms_info {
    },

    #### SPARC Linux setups
    # Ray Miller <ray.miller@computing-services.oxford.ac.uk> has
    # patiently assisted with debugging of following two configs.
    "linux-sparcv8" => {
        inherit_from     => [ "linux-generic32", asm("sparcv8_asm") ],
        cflags           => add("-mcpu=v8 -DB_ENDIAN -DBN_DIV2W"),
@@ -1101,8 +1093,7 @@ sub vms_info {
# and './Configure unixware-7 -Kpentium_pro' or whatever appropriate.
# Note that not all targets include assembler support. Mostly because of
# lack of motivation to support out-of-date platforms with out-of-date
# compiler drivers and assemblers. Tim Rice <tim@multitalents.net> has
# patiently assisted to debug most of it.
# compiler drivers and assemblers.
#
# UnixWare 2.0x fails destest with -O.
    "unixware-2.0" => {
@@ -1149,7 +1140,7 @@ sub vms_info {
        shared_cflag     => "-fPIC",
        shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)",
    },
# SCO 5 - Ben Laurie <ben@algroup.co.uk> says the -O breaks the SCO cc.
# SCO 5 - Ben Laurie says the -O breaks the SCO cc.
    "sco5-cc" => {
        inherit_from     => [ "BASE_unix", asm("x86_elf_asm") ],
        cc               => "cc",
+0 −5
Original line number Diff line number Diff line
@@ -7,11 +7,6 @@
 * https://www.openssl.org/source/license.html
 */

/*
 * A nice addition from Dr Stephen Henson <steve@openssl.org> to add the
 * -strparse option which parses nested binary structures
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+0 −3
Original line number Diff line number Diff line
@@ -6,9 +6,6 @@
 * in the file LICENSE in the source distribution or at
 * https://www.openssl.org/source/license.html
 */

/* The PPKI stuff has been donated by Jeff Barber <jeffb@issl.atl.hp.com> */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+1 −1
Original line number Diff line number Diff line
@@ -450,7 +450,7 @@ int enc_main(int argc, char **argv)
            }
            /*
             * zero the complete buffer or the string passed from the command
             * line bug picked up by Larry J. Hughes Jr. <hughes@indiana.edu>
             * line.
             */
            if (str == strbuf)
                OPENSSL_cleanse(str, SIZE);
+3 −3
Original line number Diff line number Diff line
@@ -14,9 +14,9 @@
 *
 * Optimised ANSI C code for the Rijndael cipher (now AES)
 *
 * @author Vincent Rijmen <vincent.rijmen@esat.kuleuven.ac.be>
 * @author Antoon Bosselaers <antoon.bosselaers@esat.kuleuven.ac.be>
 * @author Paulo Barreto <paulo.barreto@terra.com.br>
 * @author Vincent Rijmen
 * @author Antoon Bosselaers
 * @author Paulo Barreto
 *
 * This code is hereby placed in the public domain.
 *
Loading