]> git.ipfire.org Git - thirdparty/openssl.git/blame - fuzz/mkfuzzoids.pl
Update copyright year
[thirdparty/openssl.git] / fuzz / mkfuzzoids.pl
CommitLineData
8e32e1ab 1#! /usr/bin/env perl
33388b44 2# Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
8e32e1ab 3#
0642931f 4# Licensed under the Apache License 2.0 (the "License"). You may not use
8e32e1ab
RL
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
8
9my $obj_dat_h = $ARGV[0];
10
339638b5
RS
11# The year the output file is generated.
12my $YEAR = [localtime()]->[5] + 1900;
97d37b85 13
8e32e1ab
RL
14open IN, '<', $obj_dat_h
15 || die "Couldn't open $obj_dat_h : $!\n";
16
17while(<IN>) {
18 s|\R$||; # Better chomp
19
20 next unless m|^\s+((0x[0-9A-F][0-9A-F],)*)\s+/\*\s\[\s*\d+\]\s(OBJ_\w+)\s\*/$|;
21
22 my $OID = $1;
23 my $OBJname = $3;
24
25 $OID =~ s|0x|\\x|g;
26 $OID =~ s|,||g;
27
28 print "$OBJname=\"$OID\"\n";
29}
30close IN;