(ctx, aliases)
| 2809 | |
| 2810 | |
| 2811 | def supports_kx_alias(ctx, aliases): |
| 2812 | for cipher in ctx.get_ciphers(): |
| 2813 | for alias in aliases: |
| 2814 | if f"Kx={alias}" in cipher['description']: |
| 2815 | return True |
| 2816 | return False |
| 2817 | |
| 2818 | |
| 2819 | class ThreadedTests(unittest.TestCase): |
no test coverage detected