We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddc1b2e commit f573d71Copy full SHA for f573d71
src/OpenSSL/SSL.py
@@ -1217,6 +1217,9 @@ def set_sigalgs_list(self, sigalgs_list):
1217
:param bytes sigalgs_list: An OpenSSL signature algorithms list.
1218
:return: None
1219
"""
1220
+ if not _lib.Cryptography_HAS_SIGALGS:
1221
+ return
1222
+
1223
sigalgs_list = _text_to_bytes_and_warn("sigalgs_list", sigalgs_list)
1224
1225
if not isinstance(sigalgs_list, bytes):
@@ -2047,6 +2050,9 @@ def get_sigalgs(self):
2047
2050
:return: A list of SignatureScheme (int) as defined by RFC 8446.
2048
2051
2049
2052
sigalgs = []
2053
2054
+ return sigalgs
2055
2056
rsign = _ffi.new("unsigned char *")
2057
rhash = _ffi.new("unsigned char *")
2058
for i in count():
0 commit comments