We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b9390f commit 6801710Copy full SHA for 6801710
.github/workflows/tests.yml
@@ -6,7 +6,7 @@ on:
6
7
jobs:
8
linux_tests:
9
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
10
11
services:
12
mailcatcher:
tests/unit/Swift/Transport/Esmtp/Auth/NTLMAuthenticatorTest.php
@@ -29,6 +29,10 @@ public function testMessage1Generator()
29
30
public function testLMv1Generator()
31
{
32
+ if (!in_array('des-ecb', openssl_get_cipher_methods())) {
33
+ $this->markTestSkipped('Need Cipher DES-ECB to run these tests.');
34
+ }
35
+
36
$password = 'test1234';
37
$challenge = 'b019d38bad875c9d';
38
$lmv1 = '1879f60127f8a877022132ec221bcbf3ca016a9f76095606';
0 commit comments