artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
662594a
)
Enable reading RSA-PSS certificates
author
tb
<tb@openbsd.org>
Fri, 7 Jul 2023 08:53:55 +0000
(08:53 +0000)
committer
tb
<tb@openbsd.org>
Fri, 7 Jul 2023 08:53:55 +0000
(08:53 +0000)
ok beck jsing
lib/libssl/ssl_both.c
patch
|
blob
|
history
diff --git
a/lib/libssl/ssl_both.c
b/lib/libssl/ssl_both.c
index
3feedc1
..
14d9aa8
100644
(file)
--- a/
lib/libssl/ssl_both.c
+++ b/
lib/libssl/ssl_both.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: ssl_both.c,v 1.4
5 2022/11/26 16:08
:55 tb Exp $ */
+/* $OpenBSD: ssl_both.c,v 1.4
6 2023/07/07 08:53
:55 tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@
-388,6
+388,7
@@
ssl_cert_type(EVP_PKEY *pkey)
case NID_id_GostR3410_2001_cc:
return SSL_PKEY_GOST01;
case EVP_PKEY_RSA:
+ case EVP_PKEY_RSA_PSS:
return SSL_PKEY_RSA;
}