diff options
Diffstat (limited to 'src/regress/lib/libssl/interop/Makefile.inc')
-rw-r--r-- | src/regress/lib/libssl/interop/Makefile.inc | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/src/regress/lib/libssl/interop/Makefile.inc b/src/regress/lib/libssl/interop/Makefile.inc index 4a66390cbd..fa22fb8514 100644 --- a/src/regress/lib/libssl/interop/Makefile.inc +++ b/src/regress/lib/libssl/interop/Makefile.inc | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile.inc,v 1.9 2023/10/18 19:14:32 anton Exp $ | 1 | # $OpenBSD: Makefile.inc,v 1.10 2024/02/03 15:58:34 beck Exp $ |
2 | 2 | ||
3 | .PATH: ${.CURDIR}/.. | 3 | .PATH: ${.CURDIR}/.. |
4 | 4 | ||
@@ -39,7 +39,7 @@ run-self-client-server: client server 127.0.0.1.crt | |||
39 | CLEANFILES += 127.0.0.1.{crt,key} \ | 39 | CLEANFILES += 127.0.0.1.{crt,key} \ |
40 | ca.{crt,key,srl} fake-ca.{crt,key} \ | 40 | ca.{crt,key,srl} fake-ca.{crt,key} \ |
41 | {client,server}.{req,crt,key} \ | 41 | {client,server}.{req,crt,key} \ |
42 | {dsa,ec,gost,rsa}.{key,req,crt} \ | 42 | {dsa,ec,rsa}.{key,req,crt} \ |
43 | dh.param | 43 | dh.param |
44 | 44 | ||
45 | 127.0.0.1.crt: | 45 | 127.0.0.1.crt: |
@@ -70,10 +70,6 @@ dsa.key: | |||
70 | ec.key: | 70 | ec.key: |
71 | openssl ecparam -genkey -name secp256r1 -out $@ | 71 | openssl ecparam -genkey -name secp256r1 -out $@ |
72 | 72 | ||
73 | gost.key: | ||
74 | openssl genpkey -algorithm gost2001 \ | ||
75 | -pkeyopt paramset:A -pkeyopt dgst:md_gost94 -out $@ | ||
76 | |||
77 | rsa.key: | 73 | rsa.key: |
78 | openssl genrsa -out $@ 2048 | 74 | openssl genrsa -out $@ 2048 |
79 | 75 | ||
@@ -82,11 +78,6 @@ dsa.req ec.req rsa.req: ${@:R}.key | |||
82 | -subj /L=OpenBSD/O=tls-regress/OU=${@:R}/CN=localhost/ \ | 78 | -subj /L=OpenBSD/O=tls-regress/OU=${@:R}/CN=localhost/ \ |
83 | -nodes -key ${@:R}.key -out $@ | 79 | -nodes -key ${@:R}.key -out $@ |
84 | 80 | ||
85 | gost.req: ${@:R}.key | 81 | dsa.crt ec.crt rsa.crt: ca.crt ${@:R}.req |
86 | openssl req -batch -new -md_gost94 \ | ||
87 | -subj /L=OpenBSD/O=tls-regress/OU=${@:R}/CN=localhost/ \ | ||
88 | -nodes -key ${@:R}.key -out $@ | ||
89 | |||
90 | dsa.crt ec.crt gost.crt rsa.crt: ca.crt ${@:R}.req | ||
91 | openssl x509 -CAcreateserial -CAkey ca.key -CA ca.crt \ | 82 | openssl x509 -CAcreateserial -CAkey ca.key -CA ca.crt \ |
92 | -req -in ${@:R}.req -out $@ | 83 | -req -in ${@:R}.req -out $@ |