2016-04-20 02:10:43 +00:00
|
|
|
#! /usr/bin/env perl
|
2019-01-02 00:19:43 +00:00
|
|
|
# Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved.
|
2016-04-20 02:10:43 +00:00
|
|
|
#
|
2018-12-06 12:34:05 +00:00
|
|
|
# Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-04-20 02:10:43 +00:00
|
|
|
# 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
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2018-03-19 14:23:28 +00:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
my $NUMBER = 0x0001;
|
|
|
|
my $UPPER = 0x0002;
|
|
|
|
my $LOWER = 0x0004;
|
|
|
|
my $UNDER = 0x0100;
|
|
|
|
my $PUNCTUATION = 0x0200;
|
|
|
|
my $WS = 0x0010;
|
|
|
|
my $ESC = 0x0020;
|
|
|
|
my $QUOTE = 0x0040;
|
|
|
|
my $DQUOTE = 0x0400;
|
|
|
|
my $COMMENT = 0x0080;
|
|
|
|
my $FCOMMENT = 0x0800;
|
|
|
|
my $EOF = 0x0008;
|
|
|
|
my @V_def;
|
|
|
|
my @V_w32;
|
|
|
|
|
|
|
|
my $v;
|
|
|
|
my $c;
|
2018-03-27 16:31:56 +00:00
|
|
|
foreach (0 .. 127) {
|
2018-03-19 14:23:28 +00:00
|
|
|
$c = sprintf("%c", $_);
|
|
|
|
$v = 0;
|
|
|
|
$v |= $NUMBER if $c =~ /[0-9]/;
|
|
|
|
$v |= $UPPER if $c =~ /[A-Z]/;
|
|
|
|
$v |= $LOWER if $c =~ /[a-z]/;
|
|
|
|
$v |= $UNDER if $c =~ /_/;
|
|
|
|
$v |= $PUNCTUATION if $c =~ /[!\.%&\*\+,\/;\?\@\^\~\|-]/;
|
|
|
|
$v |= $WS if $c =~ /[ \t\r\n]/;
|
|
|
|
$v |= $ESC if $c =~ /\\/;
|
|
|
|
$v |= $QUOTE if $c =~ /['`"]/; # for emacs: "`'
|
|
|
|
$v |= $COMMENT if $c =~ /\#/;
|
|
|
|
$v |= $EOF if $c =~ /\0/;
|
|
|
|
push(@V_def, $v);
|
|
|
|
|
|
|
|
$v = 0;
|
|
|
|
$v |= $NUMBER if $c =~ /[0-9]/;
|
|
|
|
$v |= $UPPER if $c =~ /[A-Z]/;
|
|
|
|
$v |= $LOWER if $c =~ /[a-z]/;
|
|
|
|
$v |= $UNDER if $c =~ /_/;
|
|
|
|
$v |= $PUNCTUATION if $c =~ /[!\.%&\*\+,\/;\?\@\^\~\|-]/;
|
|
|
|
$v |= $WS if $c =~ /[ \t\r\n]/;
|
|
|
|
$v |= $DQUOTE if $c =~ /["]/; # for emacs: "
|
|
|
|
$v |= $FCOMMENT if $c =~ /;/;
|
|
|
|
$v |= $EOF if $c =~ /\0/;
|
|
|
|
push(@V_w32, $v);
|
|
|
|
}
|
1998-12-21 10:52:47 +00:00
|
|
|
|
2018-02-13 18:09:02 +00:00
|
|
|
# Output year depends on the year of the script.
|
|
|
|
my $YEAR = [localtime([stat($0)]->[9])]->[5] + 1900;
|
2018-03-19 14:23:28 +00:00
|
|
|
|
1998-12-21 10:52:47 +00:00
|
|
|
print <<"EOF";
|
2016-03-17 18:16:09 +00:00
|
|
|
/*
|
2016-04-20 02:10:43 +00:00
|
|
|
* WARNING: do not edit!
|
|
|
|
* Generated by crypto/conf/keysets.pl
|
|
|
|
*
|
2018-02-13 18:09:02 +00:00
|
|
|
* Copyright 1995-$YEAR The OpenSSL Project Authors. All Rights Reserved.
|
2018-12-06 12:34:05 +00:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-04-20 02:10:43 +00:00
|
|
|
* 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
|
2016-03-17 18:16:09 +00:00
|
|
|
*/
|
|
|
|
|
2018-03-19 14:23:28 +00:00
|
|
|
#define CONF_NUMBER $NUMBER
|
|
|
|
#define CONF_UPPER $UPPER
|
|
|
|
#define CONF_LOWER $LOWER
|
|
|
|
#define CONF_UNDER $UNDER
|
|
|
|
#define CONF_PUNCT $PUNCTUATION
|
|
|
|
#define CONF_WS $WS
|
|
|
|
#define CONF_ESC $ESC
|
|
|
|
#define CONF_QUOTE $QUOTE
|
|
|
|
#define CONF_DQUOTE $DQUOTE
|
|
|
|
#define CONF_COMMENT $COMMENT
|
|
|
|
#define CONF_FCOMMENT $FCOMMENT
|
|
|
|
#define CONF_EOF $EOF
|
|
|
|
#define CONF_ALPHA (CONF_UPPER|CONF_LOWER)
|
|
|
|
#define CONF_ALNUM (CONF_ALPHA|CONF_NUMBER|CONF_UNDER)
|
|
|
|
#define CONF_ALNUM_PUNCT (CONF_ALPHA|CONF_NUMBER|CONF_UNDER|CONF_PUNCT)
|
|
|
|
|
I've always wanted to make the CONF library more adaptable. Here's
the result.
I have retained the old behavior of the CONF_* functions, and have
added a more "object oriented" interface through NCONF_* functions
(New CONF, you see :-)), working the same way as, for example, the
BIO interface. Really, the CONF_* are rewritten so they use the
NCONF_* functions internally.
In addition to that, I've split the old conf.c code into two files,
conf_def.c and conf_api.c. conf_def.c contains the default config
object that reads a configuration file the standard OpenSSL way, as
well as configuration file with Win32 registry file syntax (I'm not
sure I got that one right). conf_api.c provides an API to build other
configuration file readers around (can you see a configuraion file in
XML? I can :-)).
Finally, I've changed the name conf_lcl.h to conf_def.h, since it's
made specifically for that "class" and none others.
2000-04-09 12:04:35 +00:00
|
|
|
|
2018-04-02 20:37:30 +00:00
|
|
|
#define IS_COMMENT(conf,c) is_keytype(conf, c, CONF_COMMENT)
|
|
|
|
#define IS_FCOMMENT(conf,c) is_keytype(conf, c, CONF_FCOMMENT)
|
|
|
|
#define IS_EOF(conf,c) is_keytype(conf, c, CONF_EOF)
|
|
|
|
#define IS_ESC(conf,c) is_keytype(conf, c, CONF_ESC)
|
|
|
|
#define IS_NUMBER(conf,c) is_keytype(conf, c, CONF_NUMBER)
|
|
|
|
#define IS_WS(conf,c) is_keytype(conf, c, CONF_WS)
|
|
|
|
#define IS_ALNUM(conf,c) is_keytype(conf, c, CONF_ALNUM)
|
|
|
|
#define IS_ALNUM_PUNCT(conf,c) is_keytype(conf, c, CONF_ALNUM_PUNCT)
|
|
|
|
#define IS_QUOTE(conf,c) is_keytype(conf, c, CONF_QUOTE)
|
|
|
|
#define IS_DQUOTE(conf,c) is_keytype(conf, c, CONF_DQUOTE)
|
1998-12-21 10:52:47 +00:00
|
|
|
|
|
|
|
EOF
|
|
|
|
|
2018-03-19 14:23:28 +00:00
|
|
|
my $i;
|
I've always wanted to make the CONF library more adaptable. Here's
the result.
I have retained the old behavior of the CONF_* functions, and have
added a more "object oriented" interface through NCONF_* functions
(New CONF, you see :-)), working the same way as, for example, the
BIO interface. Really, the CONF_* are rewritten so they use the
NCONF_* functions internally.
In addition to that, I've split the old conf.c code into two files,
conf_def.c and conf_api.c. conf_def.c contains the default config
object that reads a configuration file the standard OpenSSL way, as
well as configuration file with Win32 registry file syntax (I'm not
sure I got that one right). conf_api.c provides an API to build other
configuration file readers around (can you see a configuraion file in
XML? I can :-)).
Finally, I've changed the name conf_lcl.h to conf_def.h, since it's
made specifically for that "class" and none others.
2000-04-09 12:04:35 +00:00
|
|
|
|
2018-03-27 16:31:56 +00:00
|
|
|
print "static const unsigned short CONF_type_default[128] = {";
|
|
|
|
for ($i = 0; $i < 128; $i++) {
|
2018-03-19 14:23:28 +00:00
|
|
|
print "\n " if ($i % 8) == 0;
|
|
|
|
printf " 0x%04X,", $V_def[$i];
|
|
|
|
}
|
2016-03-17 18:16:09 +00:00
|
|
|
print "\n};\n\n";
|
I've always wanted to make the CONF library more adaptable. Here's
the result.
I have retained the old behavior of the CONF_* functions, and have
added a more "object oriented" interface through NCONF_* functions
(New CONF, you see :-)), working the same way as, for example, the
BIO interface. Really, the CONF_* are rewritten so they use the
NCONF_* functions internally.
In addition to that, I've split the old conf.c code into two files,
conf_def.c and conf_api.c. conf_def.c contains the default config
object that reads a configuration file the standard OpenSSL way, as
well as configuration file with Win32 registry file syntax (I'm not
sure I got that one right). conf_api.c provides an API to build other
configuration file readers around (can you see a configuraion file in
XML? I can :-)).
Finally, I've changed the name conf_lcl.h to conf_def.h, since it's
made specifically for that "class" and none others.
2000-04-09 12:04:35 +00:00
|
|
|
|
2018-03-27 16:31:56 +00:00
|
|
|
print "static const unsigned short CONF_type_win32[128] = {";
|
|
|
|
for ($i = 0; $i < 128; $i++) {
|
2018-03-19 14:23:28 +00:00
|
|
|
print "\n " if ($i % 8) == 0;
|
|
|
|
printf " 0x%04X,", $V_w32[$i];
|
|
|
|
}
|
2016-03-17 18:16:09 +00:00
|
|
|
print "\n};\n";
|