3 # fixes bug in floating point emulation on sparc64 when
4 # this script produces off-by-one output on sparc64
11 $A=$obj_len{$obj{$nid{$a}}};
12 $B=$obj_len{$obj{$nid{$b}}};
15 return($r) if $r != 0;
17 $A=$obj_der{$obj{$nid{$a}}};
18 $B=$obj_der{$obj{$nid{$b}}};
33 if (($v{$k} =~ s/(OBJ_[^,]+),/$v{$1},/))
45 open (IN
,"$ARGV[0]") || die "Can't open input file $ARGV[0]";
46 open (OUT
,">$ARGV[1]") || die "Can't open output file $ARGV[1]";
50 next unless /^\#define\s+(\S+)\s+(.*)$/;
55 if ($v =~ /^SN_(.*)$/)
57 if(defined $snames{$d})
59 print "WARNING: Duplicate short name \"$d\"\n";
62 { $snames{$d} = "X"; }
65 elsif ($v =~ /^LN_(.*)$/)
67 if(defined $lnames{$d})
69 print "WARNING: Duplicate long name \"$d\"\n";
72 { $lnames{$d} = "X"; }
75 elsif ($v =~ /^NID_(.*)$/)
77 elsif ($v =~ /^OBJ_(.*)$/)
85 %ob=&expand_obj
(*objd
);
87 @a=sort { $a <=> $b } keys %nid;
93 for ($i=0; $i<$n; $i++)
95 if (!defined($nid{$i}))
97 push(@out,"{NULL,NULL,NID_undef,0,NULL,0},\n");
101 $sn=defined($sn{$nid{$i}})?
"$sn{$nid{$i}}":"NULL";
102 $ln=defined($ln{$nid{$i}})?
"$ln{$nid{$i}}":"NULL";
117 $out.=",NID_$nid{$i},";
118 if (defined($obj{$nid{$i}}) && $objd{$obj{$nid{$i}}} =~ /,/)
120 $v=$objd{$obj{$nid{$i}}};
126 foreach (unpack("C*",$r))
128 $z.=sprintf("0x%02X,",$_);
131 $obj_der{$obj{$nid{$i}}}=$z;
132 $obj_len{$obj{$nid{$i}}}=$length;
134 push(@lvalues,sprintf("%-45s/* [%3d] %s */\n",
135 $z,$lvalues,$obj{$nid{$i}}));
136 $out.="$length,&(lvalues[$lvalues]),0";
148 @a=grep(defined($sn{$nid{$_}}),0 .. $n);
149 foreach (sort { $sn{$nid{$a}} cmp $sn{$nid{$b}} } @a)
151 push(@sn,sprintf("%2d,\t/* \"$sn{$nid{$_}}\" */\n",$_));
154 @a=grep(defined($ln{$nid{$_}}),0 .. $n);
155 foreach (sort { $ln{$nid{$a}} cmp $ln{$nid{$b}} } @a)
157 push(@ln,sprintf("%2d,\t/* \"$ln{$nid{$_}}\" */\n",$_));
160 @a=grep(defined($obj{$nid{$_}}),0 .. $n);
161 foreach (sort obj_cmp
@a)
167 push(@ob,sprintf("%2d,\t/* %-32s %s */\n",$_,$m,$v));
171 /* crypto/objects/obj_dat.h */
173 /* THIS FILE IS GENERATED FROM objects.h by obj_dat.pl via the
175 * perl obj_dat.pl obj_mac.h obj_dat.h
178 /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
179 * All rights reserved.
181 * This package is an SSL implementation written
182 * by Eric Young (eay@cryptsoft.com).
183 * The implementation was written so as to conform with Netscapes SSL.
185 * This library is free for commercial and non-commercial use as long as
186 * the following conditions are aheared to. The following conditions
187 * apply to all code found in this distribution, be it the RC4, RSA,
188 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
189 * included with this distribution is covered by the same copyright terms
190 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
192 * Copyright remains Eric Young's, and as such any Copyright notices in
193 * the code are not to be removed.
194 * If this package is used in a product, Eric Young should be given attribution
195 * as the author of the parts of the library used.
196 * This can be in the form of a textual message at program startup or
197 * in documentation (online or textual) provided with the package.
199 * Redistribution and use in source and binary forms, with or without
200 * modification, are permitted provided that the following conditions
202 * 1. Redistributions of source code must retain the copyright
203 * notice, this list of conditions and the following disclaimer.
204 * 2. Redistributions in binary form must reproduce the above copyright
205 * notice, this list of conditions and the following disclaimer in the
206 * documentation and/or other materials provided with the distribution.
207 * 3. All advertising materials mentioning features or use of this software
208 * must display the following acknowledgement:
209 * "This product includes cryptographic software written by
210 * Eric Young (eay@cryptsoft.com)"
211 * The word 'cryptographic' can be left out if the rouines from the library
212 * being used are not cryptographic related :-).
213 * 4. If you include any Windows specific code (or a derivative thereof) from
214 * the apps directory (application code) you must include an acknowledgement:
215 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
217 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
218 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
219 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
220 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
221 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
222 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
223 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
224 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
225 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
226 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
229 * The licence and distribution terms for any publically available version or
230 * derivative of this code cannot be changed. i.e. this code cannot simply be
231 * copied and put under another distribution licence
232 * [including the GNU Public Licence.]
237 printf OUT
"#define NUM_NID %d\n",$n;
238 printf OUT
"#define NUM_SN %d\n",$#sn+1;
239 printf OUT
"#define NUM_LN %d\n",$#ln+1;
240 printf OUT
"#define NUM_OBJ %d\n\n",$#ob+1;
242 printf OUT
"static const unsigned char lvalues[%d]={\n",$lvalues+1;
246 printf OUT
"static const ASN1_OBJECT nid_objs[NUM_NID]={\n";
270 printf OUT
"static const unsigned int sn_objs[NUM_SN]={\n";
274 printf OUT
"static const unsigned int ln_objs[NUM_LN]={\n";
278 printf OUT
"static const unsigned int obj_objs[NUM_OBJ]={\n";
287 local(@a,$i,$ret,@r);
290 $ret.=pack("C*",$a[0]*40+$a[1]);
301 push(@r,((($t++)?
0x80:0)|$x));
303 push(@r,((($t++)?
0x80:0)|$_));
304 $ret.=pack("C*",reverse(@r));