]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/conf/keysets.pl
Update copyright year
[thirdparty/openssl.git] / crypto / conf / keysets.pl
CommitLineData
e0a65194 1#! /usr/bin/env perl
33388b44 2# Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
e0a65194 3#
2044d382 4# Licensed under the Apache License 2.0 (the "License"). You may not use
e0a65194
RS
5# this file except in compliance with the License. You can obtain a copy
6# in the file LICENSE in the source distribution or at
7# https://www.openssl.org/source/license.html
d02b48c6 8
69e2b8d6
RS
9use strict;
10use warnings;
11
12my $NUMBER = 0x0001;
13my $UPPER = 0x0002;
14my $LOWER = 0x0004;
15my $UNDER = 0x0100;
16my $PUNCTUATION = 0x0200;
17my $WS = 0x0010;
18my $ESC = 0x0020;
19my $QUOTE = 0x0040;
20my $DQUOTE = 0x0400;
21my $COMMENT = 0x0080;
22my $FCOMMENT = 0x0800;
0255c174 23my $DOLLAR = 0x1000;
69e2b8d6 24my $EOF = 0x0008;
69e2b8d6
RS
25my @V_def;
26my @V_w32;
27
28my $v;
29my $c;
92565101 30foreach (0 .. 127) {
69e2b8d6
RS
31 $c = sprintf("%c", $_);
32 $v = 0;
33 $v |= $NUMBER if $c =~ /[0-9]/;
34 $v |= $UPPER if $c =~ /[A-Z]/;
35 $v |= $LOWER if $c =~ /[a-z]/;
36 $v |= $UNDER if $c =~ /_/;
37 $v |= $PUNCTUATION if $c =~ /[!\.%&\*\+,\/;\?\@\^\~\|-]/;
38 $v |= $WS if $c =~ /[ \t\r\n]/;
39 $v |= $ESC if $c =~ /\\/;
40 $v |= $QUOTE if $c =~ /['`"]/; # for emacs: "`'
41 $v |= $COMMENT if $c =~ /\#/;
0255c174 42 $v |= $DOLLAR if $c eq '$';
69e2b8d6 43 $v |= $EOF if $c =~ /\0/;
69e2b8d6
RS
44 push(@V_def, $v);
45
46 $v = 0;
47 $v |= $NUMBER if $c =~ /[0-9]/;
48 $v |= $UPPER if $c =~ /[A-Z]/;
49 $v |= $LOWER if $c =~ /[a-z]/;
50 $v |= $UNDER if $c =~ /_/;
51 $v |= $PUNCTUATION if $c =~ /[!\.%&\*\+,\/;\?\@\^\~\|-]/;
52 $v |= $WS if $c =~ /[ \t\r\n]/;
53 $v |= $DQUOTE if $c =~ /["]/; # for emacs: "
54 $v |= $FCOMMENT if $c =~ /;/;
0255c174 55 $v |= $DOLLAR if $c eq '$';
69e2b8d6 56 $v |= $EOF if $c =~ /\0/;
69e2b8d6
RS
57 push(@V_w32, $v);
58}
d02b48c6 59
339638b5
RS
60# The year the output file is generated.
61my $YEAR = [localtime()]->[5] + 1900;
d02b48c6 62print <<"EOF";
4f59fd4d 63/*
e0a65194
RS
64 * WARNING: do not edit!
65 * Generated by crypto/conf/keysets.pl
66 *
97d37b85 67 * Copyright 1995-$YEAR The OpenSSL Project Authors. All Rights Reserved.
2044d382 68 * Licensed under the Apache License 2.0 (the "License"). You may not use
e0a65194
RS
69 * this file except in compliance with the License. You can obtain a copy
70 * in the file LICENSE in the source distribution or at
71 * https://www.openssl.org/source/license.html
4f59fd4d
DSH
72 */
73
69e2b8d6
RS
74#define CONF_NUMBER $NUMBER
75#define CONF_UPPER $UPPER
76#define CONF_LOWER $LOWER
77#define CONF_UNDER $UNDER
78#define CONF_PUNCT $PUNCTUATION
79#define CONF_WS $WS
80#define CONF_ESC $ESC
81#define CONF_QUOTE $QUOTE
82#define CONF_DQUOTE $DQUOTE
83#define CONF_COMMENT $COMMENT
84#define CONF_FCOMMENT $FCOMMENT
0255c174 85#define CONF_DOLLAR $DOLLAR
69e2b8d6 86#define CONF_EOF $EOF
69e2b8d6
RS
87#define CONF_ALPHA (CONF_UPPER|CONF_LOWER)
88#define CONF_ALNUM (CONF_ALPHA|CONF_NUMBER|CONF_UNDER)
89#define CONF_ALNUM_PUNCT (CONF_ALPHA|CONF_NUMBER|CONF_UNDER|CONF_PUNCT)
90
d86b6915 91
a9b7a06e
DMSP
92#define IS_COMMENT(conf,c) is_keytype(conf, c, CONF_COMMENT)
93#define IS_FCOMMENT(conf,c) is_keytype(conf, c, CONF_FCOMMENT)
94#define IS_EOF(conf,c) is_keytype(conf, c, CONF_EOF)
95#define IS_ESC(conf,c) is_keytype(conf, c, CONF_ESC)
96#define IS_NUMBER(conf,c) is_keytype(conf, c, CONF_NUMBER)
97#define IS_WS(conf,c) is_keytype(conf, c, CONF_WS)
98#define IS_ALNUM(conf,c) is_keytype(conf, c, CONF_ALNUM)
99#define IS_ALNUM_PUNCT(conf,c) is_keytype(conf, c, CONF_ALNUM_PUNCT)
100#define IS_QUOTE(conf,c) is_keytype(conf, c, CONF_QUOTE)
101#define IS_DQUOTE(conf,c) is_keytype(conf, c, CONF_DQUOTE)
0255c174 102#define IS_DOLLAR(conf,c) is_keytype(conf, c, CONF_DOLLAR)
d02b48c6
RE
103
104EOF
105
69e2b8d6 106my $i;
d86b6915 107
92565101
MC
108print "static const unsigned short CONF_type_default[128] = {";
109for ($i = 0; $i < 128; $i++) {
69e2b8d6
RS
110 print "\n " if ($i % 8) == 0;
111 printf " 0x%04X,", $V_def[$i];
112}
4f59fd4d 113print "\n};\n\n";
d86b6915 114
936c2b9e 115print "#ifndef OPENSSL_NO_DEPRECATED_3_0\n";
92565101
MC
116print "static const unsigned short CONF_type_win32[128] = {";
117for ($i = 0; $i < 128; $i++) {
69e2b8d6
RS
118 print "\n " if ($i % 8) == 0;
119 printf " 0x%04X,", $V_w32[$i];
120}
4f59fd4d 121print "\n};\n";
7cfc0a55 122print "#endif\n";