From f667aeb2a42af39038fb10044405a6c02cc14531 Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Thu, 20 Jan 2011 20:48:56 +0000 Subject: UNTESTED changes to port-gui to match myrpki.conf => rpki.conf changes into line with the other Python code portal-gui needs a bit more work to bring its autoconf into line with the other code, which may include some source tree reorganizations. svn path=/portal-gui/Makefile.in; revision=3621 --- portal-gui/scripts/load_csv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'portal-gui/scripts/load_csv.py') diff --git a/portal-gui/scripts/load_csv.py b/portal-gui/scripts/load_csv.py index 61ec15b6..476539b9 100755 --- a/portal-gui/scripts/load_csv.py +++ b/portal-gui/scripts/load_csv.py @@ -20,7 +20,7 @@ # Primarly useful for the initial load, as the GUI does not sync changes # made directly to the csv files back into the database. # -# This script should be run from the directory containing the myrpki.conf +# This script should be run from the directory containing the rpki.conf # for the handle you are loading data # @@ -36,7 +36,7 @@ from rpki.myrpki import csv_reader from rpkigui.myrpki import models from rpkigui.myrpki.views import add_roa_requests -cfg_file = os.getenv("MYRPKI_CONF", "myrpki.conf") +cfg_file = os.getenv("RPKI_CONF", "rpki.conf") cfg = rpki.config.parser(cfg_file, "myrpki") handle = cfg.get('handle') asn_csv = cfg.get('asn_csv') -- cgit v1.2.3 f='/sra/rpki.net/blame/openssl/vendor/0.9.8b/test/tpkcs7.com?id=d40d179d9021421d41780a45224302822644725b'>blamecommitdiff
path: root/openssl/vendor/0.9.8b/test/tpkcs7.com
blob: 047834fba42f62fc054491395a5124a59c344e1d (plain) (tree)





















































                                                        
$! TPKCS7.COM  --  Tests pkcs7 keys
$
$	__arch := VAX
$	if f$getsyi("cpu") .ge. 128 then __arch := AXP
$	exe_dir := sys$disk:[-.'__arch'.exe.apps]
$
$	cmd := mcr 'exe_dir'openssl pkcs7
$
$	t := testp7.pem
$	if p1 .nes. "" then t = p1
$
$	write sys$output "testing PKCS7 conversions"
$	if f$search("fff.*") .nes "" then delete fff.*;*
$	if f$search("ff.*") .nes "" then delete ff.*;*
$	if f$search("f.*") .nes "" then delete f.*;*
$	convert/fdl=sys$input: 't' fff.p
RECORD
	FORMAT STREAM_LF
$
$	write sys$output "p -> d"
$	'cmd' -in fff.p -inform p -outform d -out f.d
$	if $severity .ne. 1 then exit 3
$	write sys$output "p -> p"
$	'cmd' -in fff.p -inform p -outform p -out f.p
$	if $severity .ne. 1 then exit 3
$
$	write sys$output "d -> d"
$	'cmd' -in f.d -inform d -outform d -out ff.d1
$	if $severity .ne. 1 then exit 3
$	write sys$output "p -> d"
$	'cmd' -in f.p -inform p -outform d -out ff.d3
$	if $severity .ne. 1 then exit 3
$
$
$	write sys$output "d -> p"
$	'cmd' -in f.d -inform d -outform p -out ff.p1
$	if $severity .ne. 1 then exit 3
$	write sys$output "p -> p"
$	'cmd' -in f.p -inform p -outform p -out ff.p3
$	if $severity .ne. 1 then exit 3
$
$	backup/compare fff.p f.p
$	if $severity .ne. 1 then exit 3
$	backup/compare fff.p ff.p1
$	if $severity .ne. 1 then exit 3
$	backup/compare fff.p ff.p3
$	if $severity .ne. 1 then exit 3
$
$	backup/compare f.p ff.p1
$	if $severity .ne. 1 then exit 3
$	backup/compare f.p ff.p3
$	if $severity .ne. 1 then exit 3
$
$	delete f.*;*,ff.*;*,fff.*;*