mkfuzzoids.pl 940 B

1234567891011121314151617181920212223242526272829303132
  1. #! /usr/bin/env perl
  2. # Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
  3. #
  4. # Licensed under the Apache License 2.0 (the "License"). You may not use
  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. my $obj_dat_h = $ARGV[0];
  9. # Output year depends on the date on the input file and the script.
  10. my $YEAR = [localtime([stat($0)]->[9])]->[5] + 1900;
  11. my $iYEAR = [localtime([stat($obj_dat_h)]->[9])]->[5] + 1900;
  12. $YEAR = $iYEAR if $iYEAR > $YEAR;
  13. open IN, '<', $obj_dat_h
  14. || die "Couldn't open $obj_dat_h : $!\n";
  15. while(<IN>) {
  16. s|\R$||; # Better chomp
  17. next unless m|^\s+((0x[0-9A-F][0-9A-F],)*)\s+/\*\s\[\s*\d+\]\s(OBJ_\w+)\s\*/$|;
  18. my $OID = $1;
  19. my $OBJname = $3;
  20. $OID =~ s|0x|\\x|g;
  21. $OID =~ s|,||g;
  22. print "$OBJname=\"$OID\"\n";
  23. }
  24. close IN;