summaryrefslogtreecommitdiffstats
path: root/crypto/openssl/apps/tkca
blob: bdaf21606afe5d5e5ee4f0b82c4db0e42bf00591 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/local/bin/perl5
#
# This is only something I'm playing with, it does not work :-)
#

use Tk;

my $main=MainWindow->new();
my $f=$main->Frame(-relief => "ridge", -borderwidth => 2);
$f->pack(-fill => 'x');

my $ff=$f->Frame;
$ff->pack(-fill => 'x');
my $l=$ff->Label(-text => "TkCA - SSLeay",
	-relief => "ridge", -borderwidth => 2);
$l->pack(-fill => 'x', -ipady => 5);

my $l=$ff->Button(-text => "Certify");
$l->pack(-fill => 'x', -ipady => 5);

my $l=$ff->Button(-text => "Review");
$l->pack(-fill => 'x', -ipady => 5);

my $l=$ff->Button(-text => "Revoke");
$l->pack(-fill => 'x', -ipady => 5);

my $l=$ff->Button(-text => "Generate CRL");
$l->pack(-fill => 'x', -ipady => 5);

my($db)=&load_db("demoCA/index.txt");

MainLoop;

sub load_db
	{
	my(%ret);
	my($file)=@_;
	my(*IN);
	my(%db_serial,%db_name,@f,@db_s);

	$ret{'serial'}=\%db_serial;
	$ret{'name'}=\%db_name;

	open(IN,"<$file") || die "unable to open $file:$!\n";
	while (<IN>)
		{
		chop;
		s/([^\\])\t/\1\t\t/g;
		my(@f)=split(/\t\t/);
		die "wrong number of fields in $file, line $.\n"
			if ($#f != 5);

		my(%f);
		$f{'type'}=$f[0];
		$f{'exp'}=$f[1];
		$f{'rev'}=$f[2];
		$f{'serial'}=$f[3];
		$f{'file'}=$f[4];
		$f{'name'}=$f[5];
		die "serial number $f{'serial'} appears twice (line $.)\n"
			if (defined($db{$f{'serial'}}))
		$db_serial{$f{'serial'}}=\%f;
		$db_name{$f{'name'}}.=$f{'serial'}." ";
		}
	return \%ret;
	}
OpenPOWER on IntegriCloud