]> git.ipfire.org Git - thirdparty/openssl.git/blame - fuzz/mkfuzzoids.pl
Implement EVP_MAC_do_all_ex()
[thirdparty/openssl.git] / fuzz / mkfuzzoids.pl
CommitLineData
8e32e1ab 1#! /usr/bin/env perl
0d664759 2# Copyright 1995-2018 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
97d37b85
RS
11# Output year depends on the date on the input file and the script.
12my $YEAR = [localtime([stat($0)]->[9])]->[5] + 1900;
13my $iYEAR = [localtime([stat($obj_dat_h)]->[9])]->[5] + 1900;
14$YEAR = $iYEAR if $iYEAR > $YEAR;
15
8e32e1ab
RL
16open IN, '<', $obj_dat_h
17 || die "Couldn't open $obj_dat_h : $!\n";
18
19while(<IN>) {
20 s|\R$||; # Better chomp
21
22 next unless m|^\s+((0x[0-9A-F][0-9A-F],)*)\s+/\*\s\[\s*\d+\]\s(OBJ_\w+)\s\*/$|;
23
24 my $OID = $1;
25 my $OBJname = $3;
26
27 $OID =~ s|0x|\\x|g;
28 $OID =~ s|,||g;
29
30 print "$OBJname=\"$OID\"\n";
31}
32close IN;