<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html lang="en" style='--code-editor-font: var(--default-mono-font, "GitLab Mono"), JetBrains Mono, Menlo, DejaVu Sans Mono, Liberation Mono, Consolas, Ubuntu Mono, Courier New, andale mono, lucida console, monospace;'>
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>
GitLab
</title>
<style data-premailer="ignore" type="text/css">
a { color: #1068bf; }
</style>
<style>img {
max-width: 100%; height: auto;
}
body {
font-size: .875rem;
}
body {
-webkit-text-shadow: rgba(255,255,255,.01) 0 0 1px;
}
body {
font-family: "GitLab Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans",Ubuntu,Cantarell,"Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; font-size: inherit;
}
</style>
</head>
<body style='font-size: inherit; -webkit-text-shadow: rgba(255,255,255,.01) 0 0 1px; font-family: "GitLab Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans",Ubuntu,Cantarell,"Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";'>
<div class="content">
<p class="details" style="font-style: italic; color: #626168;">
<a href="https://gitlab.com/stefanberger">Stefan Berger</a> created an issue: <a href="https://gitlab.com/gnutls/gnutls/-/issues/1743">#1743</a>
</p>
<div class="md" style="position: relative; z-index: 1; color: #3a383f; word-wrap: break-word;">
<h2 dir="auto" style="margin-top: 0; margin-bottom: 10px;" align="initial">
<a href="#description-of-problem" aria-hidden="true" class="anchor" id="user-content-description-of-problem" style="margin-top: 0; margin-left: -20px; text-decoration: none; outline: none; position: absolute; width: 20px;"></a>Description of problem:</h2>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">I modified swtpm EK certificate creation code to allow for a CA that has an ML-DSA-44 (or -87) signing key. It looked like the only choice for a hash algorithm was SHAKE-256. The created certificate shows a warning :</p>
<div class="gl-relative markdown-code-block js-markdown-code">
<pre class="code highlight js-syntax-highlight language-plaintext" v-pre="true" style='display: block; font-size: 14px; color: #3a383f; line-height: 1.6em; overflow-x: auto; border-radius: .25rem; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; margin: 0 0 1rem; padding: 12px; border: 1px solid #dcdcde;'><code style='font-size: inherit; color: inherit; word-wrap: normal; word-break: keep-all; border-radius: .25rem; background-color: inherit; white-space: pre; margin-top: 0; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; overflow-wrap: normal; padding: unset;'><span id="LC1" class="line" lang="plaintext" style="margin-top: 0;">$ certtool --inder --infile /tmp/ek-secp384r1.crt -i</span>
<span id="LC2" class="line" lang="plaintext">[...]</span>
<span id="LC3" class="line" lang="plaintext"> Signature Algorithm: ML-DSA-87</span>
<span id="LC4" class="line" lang="plaintext">warning: signed using a broken signature algorithm that can be forged.</span>
<span id="LC5" class="line" lang="plaintext"> Signature:</span>
<span id="LC6" class="line" lang="plaintext">[...]</span></code></pre>
<copy-code></copy-code><insert-code-snippet></insert-code-snippet>
</div>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">My guess is it has something to do with slevel = _INSECURE here:</p>
<div class="gl-relative markdown-code-block js-markdown-code">
<pre class="code highlight js-syntax-highlight language-plaintext" v-pre="true" style='display: block; font-size: 14px; color: #3a383f; line-height: 1.6em; overflow-x: auto; border-radius: .25rem; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; margin: 0 0 1rem; padding: 12px; border: 1px solid #dcdcde;'><code style='font-size: inherit; color: inherit; word-wrap: normal; word-break: keep-all; border-radius: .25rem; background-color: inherit; white-space: pre; margin-top: 0; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; overflow-wrap: normal; padding: unset;'><span id="LC1" class="line" lang="plaintext" style="margin-top: 0;">484 if (se->hash != GNUTLS_DIG_UNKNOWN &&</span>
<span id="LC2" class="line" lang="plaintext">(gdb) print *se</span>
<span id="LC3" class="line" lang="plaintext">$1 = {name = 0x7ffff7dd90b3 "ML-DSA-87", oid = 0x7ffff7dd90bd "2.16.840.1.101.3.4.3.19", id = GNUTLS_SIGN_MLDSA87, pk = GNUTLS_PK_MLDSA87,</span>
<span id="LC4" class="line" lang="plaintext"> hash = GNUTLS_DIG_SHAKE_256, priv_pk = GNUTLS_PK_UNKNOWN, cert_pk = GNUTLS_PK_UNKNOWN, flags = 5, curve = GNUTLS_ECC_CURVE_INVALID, aid = {</span>
<span id="LC5" class="line" lang="plaintext"> id = "\t\006", tls_sem = 4 '\004'}, slevel = _INSECURE, hash_output_size = 256}</span></code></pre>
<copy-code></copy-code><insert-code-snippet></insert-code-snippet>
</div>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">Which part is 'insecure'?</p>
<h2 dir="auto" style="margin-top: 20px; margin-bottom: 10px;" align="initial">
<a href="#version-of-gnutls-used" aria-hidden="true" class="anchor" id="user-content-version-of-gnutls-used" style="margin-top: 0; margin-left: -20px; text-decoration: none; outline: none; position: absolute; width: 20px;"></a>Version of gnutls used:</h2>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">gnutls-3.8.10-1.fc42.x86_64</p>
<h2 dir="auto" style="margin-top: 20px; margin-bottom: 10px;" align="initial">
<a href="#distributor-of-gnutls-eg-ubuntu-fedora-rhel" aria-hidden="true" class="anchor" id="user-content-distributor-of-gnutls-eg-ubuntu-fedora-rhel" style="margin-top: 0; margin-left: -20px; text-decoration: none; outline: none; position: absolute; width: 20px;"></a>Distributor of gnutls (e.g., Ubuntu, Fedora, RHEL)</h2>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">Fedora 42</p>
<h2 dir="auto" style="margin-top: 20px; margin-bottom: 10px;" align="initial">
<a href="#how-reproducible" aria-hidden="true" class="anchor" id="user-content-how-reproducible" style="margin-top: 0; margin-left: -20px; text-decoration: none; outline: none; position: absolute; width: 20px;"></a>How reproducible:</h2>
<p dir="auto" style="color: #3a383f; margin: 0 0 1rem;" align="initial">Here's the base64 encoded cert:</p>
<div class="gl-relative markdown-code-block js-markdown-code">
<pre class="code highlight js-syntax-highlight language-plaintext" v-pre="true" style='display: block; font-size: 14px; color: #3a383f; line-height: 1.6em; overflow-x: auto; border-radius: .25rem; position: relative; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; margin: 0 0 1rem; padding: 12px; border: 1px solid #dcdcde;'><code style='font-size: inherit; color: inherit; word-wrap: normal; word-break: keep-all; border-radius: .25rem; background-color: inherit; white-space: pre; margin-top: 0; font-family: "GitLab Mono", "JetBrains Mono", "Menlo", "DejaVu Sans Mono", "Liberation Mono", "Consolas", "Ubuntu Mono", "Courier New", "andale mono", "lucida console", monospace; font-variant-ligatures: none; overflow-wrap: normal; padding: unset;'><span id="LC1" class="line" lang="plaintext" style="margin-top: 0;">MIIT3TCCAbSgAwIBAgIJAP2qqFDaISdNMAsGCWCGSAFlAwQDEzAYMRYwFAYDVQQDEw1zd3RwbS1s</span>
<span id="LC2" class="line" lang="plaintext">b2NhbGNhMCAXDTI1MTAwMTIyNTkwNVoYDzk5OTkxMjMxMjM1OTU5WjASMRAwDgYDVQQDEwd1bmtu</span>
<span id="LC3" class="line" lang="plaintext">b3duMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEuKwHRDSlJUcegInn8iu8mWVIF8BKIJq3UANssftS</span>
<span id="LC4" class="line" lang="plaintext">ryorhfoMDxTBM+vwFGZSRGCDwhObGeOW8UOZS4et+kAnNkzvT9yWv61PXfEPjWEalE+2espvwMU9</span>
<span id="LC5" class="line" lang="plaintext">dJhQd2aaqcs2o4HMMIHJMBAGA1UdJQQJMAcGBWeBBQgBMFIGA1UdEQEB/wRIMEakRDBCMRYwFAYF</span>
<span id="LC6" class="line" lang="plaintext">Z4EFAgEMC2lkOjAwMDAxMDE0MRAwDgYFZ4EFAgIMBXN3dHBtMRYwFAYFZ4EFAgMMC2lkOjIwMjQw</span>
<span id="LC7" class="line" lang="plaintext">MTI1MAwGA1UdEwEB/wQCMAAwIgYDVR0JBBswGTAXBgVngQUCEDEOMAwMAzIuMAIBAAICALcwHwYD</span>
<span id="LC8" class="line" lang="plaintext">VR0jBBgwFoAULyUrqYRv9I44sIyh4eww3rZAi5YwDgYDVR0PAQH/BAQDAgMIMAsGCWCGSAFlAwQD</span>
<span id="LC9" class="line" lang="plaintext">EwOCEhQAFlqS+YIw2ezNE+JUGm1eOMGGHeDGq8ifz2QPspzEZywUJ1BnbEhVbW6IiS/XSeo7Pc7E</span>
<span id="LC10" class="line" lang="plaintext">Cgcba5cxqa2OHKn1ZWUENFGlt7BIuz2YhXwBrzPSaYuzgXnKFPovwXFry4Uz5Oi3fbRhT7hJKNdt</span>
<span id="LC11" class="line" lang="plaintext">VvGM5cBRU+L86IjeYPv7PQSh/oX6mgi1Cwg/Ti6DkTQQMuUsBnRxBuFvlZp5XtlQA+PgmvYaVIAI</span>
<span id="LC12" class="line" lang="plaintext">N6gsYmbmJxCHrubm+YJ3tjr0VZUmMBfiHJzmxb+gB5ZLeQE+2zykp0TvF3cNv1cODr4dCJw9L8bs</span>
<span id="LC13" class="line" lang="plaintext">tyqmdp8j3BHs0mA5sIagqsFMz3ZOaFcvk1GZkQKQpqhEEVWuaVBuBUx8iBDkKzy76Y7AwuSU64Lo</span>
<span id="LC14" class="line" lang="plaintext">10fhayXZDlua4Nb0uED8K6lT7PNw2bIl3tR6TRLUo3+liMe/rQ4V7oIkAPy8rsg8NaVvZDLX8STW</span>
<span id="LC15" class="line" lang="plaintext">InTO7SnQI4ekQqOL8hy+gUYQlA5bAgpa4tZqWeE2KMRI+9utSekDq5Fzkq5KgLVlxQyBmsjV1uGy</span>
<span id="LC16" class="line" lang="plaintext">eswOl3IpOxUE6lTZucEZADkjOuoKYXgfmJNJLdo/hUPBjQebfupgzuVCb/Tqy4V87IQw2IL/0xDN</span>
<span id="LC17" class="line" lang="plaintext">keJ3UdtGjHYY+Wd6ldGKyFU9Z20Hg4pGJ0rLhshVwHulA80zo4TkOOlXyY/XsBnrowGts9UwYXI2</span>
<span id="LC18" class="line" lang="plaintext">CuA8D1C4yvR5A95JTaeLAkumrydYQxfX/QeAqR6qqJYLpU8lu2iRHYIdjXkM0Q6S6jseKU/2chp1</span>
<span id="LC19" class="line" lang="plaintext">AnnIsZHFvjzF7loOJR7g4adOdI/pxSMo+OtbMkkPcAtkYNGhkZ0v+PC0PpN0npjzJ2xR9OAHo86k</span>
<span id="LC20" class="line" lang="plaintext">feuW1YZ7xz7raFT4EvXVivNdKWeESkDcgQXARN8btTBaeTaf8bc+ahUBYwvjfFb2i10bxx3brn1W</span>
<span id="LC21" class="line" lang="plaintext">alJ3ZpuqZp8zeEfebJfiY2gv/45GR3COZyJXc+8MdNN/rUDLlDIwyISIg7F6lcwalr42HWvI+ltb</span>
<span id="LC22" class="line" lang="plaintext">hMrOZEnbxT1V+v95Ob2qlm/IAwfjX9KyEsjz7q7bFDLbU13jQ9DD34UG2Y0r/8mtZBc3O53NHjV/</span>
<span id="LC23" class="line" lang="plaintext">S3fC9g3el35voVsmoQelC+AcWJxUJXBOBYzvvGL1O+NVA4llsPxILHvo+wS3ep2ytq7ScH8hT+uI</span>
<span id="LC24" class="line" lang="plaintext">OjLf8yWDqjSSJJCHf7tYFV92uYlxbJAONDi4M/BWU+/tOr3E1A16XpUOco3xWXrMRvxCjqCucpxL</span>
<span id="LC25" class="line" lang="plaintext">4BZoSd+1GHmQZPGaxaItMS/tZJT0EH+ivS1jxfP8glRkF/6ZWCpNTkzPaX+jQBjJNqu3plsz1mg0</span>
<span id="LC26" class="line" lang="plaintext">SrUffMKjEMxAQ62tDAbVXbzKtS1/IwnBfAuhwAHZQKwOkb/gBN+eoz7/zmsELjDt593wifmSC53W</span>
<span id="LC27" class="line" lang="plaintext">psztyiTRMmaDQlLIpIUUT65bGkDW20IrOlJca7GUoP1Nufek+s0IkPO8Y85BPjLN49GAIlTrVnST</span>
<span id="LC28" class="line" lang="plaintext">dLmeePKFNyvN8lvttUSBSHNf1FaQYv3GvsbjweNteNGnxptvuCQeIBjf1d5n1EwESFkOFnPhqIk3</span>
<span id="LC29" class="line" lang="plaintext">H0ZZOE85RdJEGZfyyS4XLC8Tao7JuGtm2P/lCDs7ms8g8MsXehmmJqgOEZHtFz8c4EAiDJiB4QwY</span>
<span id="LC30" class="line" lang="plaintext">MKEbA5HKodEXKkVuNPthiRHrQHJ7K3++wRk9ZFKhwryEt8o+itTG78Shu1CV9p4zDoCn/MHBLrGA</span>
<span id="LC31" class="line" lang="plaintext">j8QYgleGyagub82q3RGl4X8Tm/IWM5u/66jRPXHPl+id1krQGPE1lqiYlVY9+WiDWkWPLlXj/pOI</span>
<span id="LC32" class="line" lang="plaintext">OtkUo4v9s8riBiqKJ4iumiuq895x/n2I6QOmNhjPQ5ExjyAM5f/GMuz0YMAzlYgNk54A/BRkYgLn</span>
<span id="LC33" class="line" lang="plaintext">dbajtxbmFgS/AkQRrvdzQbB8KSsEGxED5pYb3c0kubX7xC/jPSFG2VF/ZJ6XjYRiqCqVMwggoPUV</span>
<span id="LC34" class="line" lang="plaintext">M6HtwFMDBMa0J5pnLH8vn5MhDg4yqD+cceLQhLbymU7FPKI5ATwu81rXJx1wKguRPH+kSNhjzb0p</span>
<span id="LC35" class="line" lang="plaintext">G8g1fKwZ/0OSl/Vrl3lUYigFhh6K1Je6/2MVmax9/1w+uHiAbRoVim8Ot+v47ImsyC9AvCIbnHHQ</span>
<span id="LC36" class="line" lang="plaintext">4EMYW1dmhwJFoaU+Wx/6s6qA4FYNDHmzZlTjRrLQL8smcz0dwvwfaFR6itwD2VgY7hBp4ZW36os9</span>
<span id="LC37" class="line" lang="plaintext">Pxn11mZ5PY9qYAx6XndnBzkw6fPQtnAdj+cF1OgkE7/IiXLTYvEMMLne5r78PIhF7qQ9LzAsOSH1</span>
<span id="LC38" class="line" lang="plaintext">cwdyVeMb9kvxZPazzcdtPYm2jgf4V0DDv4NtX/uxeOQ9m9/rOBNhbVlqOZL7e89tBtxoh8+0ZHes</span>
<span id="LC39" class="line" lang="plaintext">OcI8nuhhwu7TZW8mDUNnDzMHbU+64+SxSkkJJbaHH5rGy8E2P4vlYPPL/XVHi6qYOdXoVOOFm6Dc</span>
<span id="LC40" class="line" lang="plaintext">ovDBtGFszH3kuOgrK/y5ZTXj+bMHGKTsy4KMOcHJ9W8I/tcR00iaZrhjG/jzsSEcPbyKhuVxnRRy</span>
<span id="LC41" class="line" lang="plaintext">qZdSI6rTx+NLtx40X+2ad6jW28FUpaeYRwbC2tTttR1vC0DrzHt3xHJGC3a4e93YvqJPydTqrWGX</span>
<span id="LC42" class="line" lang="plaintext">6Bn/nXPS/UlHIvHGEHXI9V8+05LqJbeIa/i7nnejOZa+dYm5wV9Az1cXdjaKsNcDmLECsbfIXHJq</span>
<span id="LC43" class="line" lang="plaintext">lItN+oRxqWKlBlQyeF9XRxz7B7xBz+aMKGCxhEYuEImIS8B5Jj1fFuxrYUEcFWvX1ZekGeRTiaPk</span>
<span id="LC44" class="line" lang="plaintext">UXhXWz+0OtidboBiPKCoGgm7bWV42UY/V4MwJfXBijZPHyjdq/iDrD0H1J0wb2C3CSPZf/nmh2sW</span>
<span id="LC45" class="line" lang="plaintext">r7yBfRU3q43WDszNarOIe6IO19RngfCnIjFX8L6GPeUiHOUdsEFUjNQUACo/ihwsRx3GARrtEZ/D</span>
<span id="LC46" class="line" lang="plaintext">Ewqv1Az0RzAaeZW1h2036nW6pjGMAjonLLZozHbYSzEsUElDwVtQmIaeyS5ODux6DrhnkMYeWhrY</span>
<span id="LC47" class="line" lang="plaintext">AY63CeVSKNh9XAeSqIsUDLrZ6A0DNXZF6a2hAWIEiCuLEuUUsEZBMc3IvMoHtCe0GZXX7e05kTcQ</span>
<span id="LC48" class="line" lang="plaintext">FNFJK2DKbwvA+iqPA6hxS/yXnGe84/Ts3tOyB5eDvGodSrwxzfvnsr613FfsYYb9UDGyDGSNcIQl</span>
<span id="LC49" class="line" lang="plaintext">4oPqesYn3hVvU7a2Ad5NUWacX3cuBkCVucRdkH6Eu8vzezB5Y27mMdSs77hqeV4N1wcibThrhqFh</span>
<span id="LC50" class="line" lang="plaintext">ZbDMZsMjXuvdRJZqAd6droHgh4cma0drbmjNYLGDe0ivejYc65ZIP6YTDXpuJ+22Zo0hH+2twDhf</span>
<span id="LC51" class="line" lang="plaintext">hyK8m+iy9iU31mxWsNFl1BnsWtur5ay9Fi/YYj8GVKE77Sh+97PPCh4EOxHaELGEYCOJ3AQnxYIF</span>
<span id="LC52" class="line" lang="plaintext">j6cqEA8rrCNdsyJWna4jqUu5Q79Q3rjkdsbqsJGF0YVhVypiHNnYSCmrVBSLXbZm0SXWBYfrsuvg</span>
<span id="LC53" class="line" lang="plaintext">dCMlgS2skJym3rmus7cTQ6P+3jVdwwjspQydGGowWWgF/UT0U8Ss+4tl+7YHPlHn8cdy5yazJXNO</span>
<span id="LC54" class="line" lang="plaintext">ujhhBanP7rN5NHXs9uZfTnn7FiGfYfEloSzNxDIhfgudkNcgUfsZG/j+2nyxSpKfCQGTyTHla1Zr</span>
<span id="LC55" class="line" lang="plaintext">RoaAvW1AT3nAOTUfr+mnuH0r0BrDyIkzp7LHeMKhfdHNU44k9ABQt97oP7eyFkzBb/SMkBZ1fKtP</span>
<span id="LC56" class="line" lang="plaintext">ASHmOO+JFrHaNDNssPIhoASF7rlzM4YxxJ2SXmSujCXCpqc3w8+3N1caf9fq7CVheJNyRLFgqPef</span>
<span id="LC57" class="line" lang="plaintext">5bWQs1Kh8whbOwsVEPg95TnJM0SOoF7Bvzpskvmph82chI6W18PaecgG8lgkqXluHYV4EXkRKhcu</span>
<span id="LC58" class="line" lang="plaintext">VVU8Y5PillU2FSkmOxuQp9+h1DfkgpeKZMroWev7vAH5+0ltb635hZctFJxwp0sqgSRO6ufjnlhF</span>
<span id="LC59" class="line" lang="plaintext">erk6C6H/xR5PhTPyRks8qHJUSBHSo0v2m+7gxIh/aSganqS+0nDoXTZKw/lQDBANWY44xwvy8HJ+</span>
<span id="LC60" class="line" lang="plaintext">grTDVCkJAFqitJWB5M/yyqG1h0LjU6X8yN432fjMml3+X1METCDVeOA6DBx+Y7awJWXHuCAaHOwb</span>
<span id="LC61" class="line" lang="plaintext">Fu7wPWpshP7Fz+Qg0K+OZf0ek7s69bEFxDGVw+FzVo9EdEIsRD6vsni3UPB8xUiMnba4vPmyRHPH</span>
<span id="LC62" class="line" lang="plaintext">DO8GD/0HI6ZBRBXmTObGjXiOsi5Rh2CDVA3tSRR5FlarLcyx/vQZB/1pRezhHyDu/HM0dqKBvyEj</span>
<span id="LC63" class="line" lang="plaintext">naFbO6+p3DDB7V96NMqL3PpwAZw6RGxfPjJMN3uS109D1kyVkTN3c8vLLn0qepLYGEsuAV4zrVxE</span>
<span id="LC64" class="line" lang="plaintext">U2HHNPAlD4QB4cBTxS0YjrlScYUoLhOTkXXe9pAUR6XgvBNlkzEqFbHPfR60QgYfRXoUJ7vJ5yQx</span>
<span id="LC65" class="line" lang="plaintext">fe5p83p+i+xWNYKLfP5Zidmz0aKnLYtfA0gJXwuEcLE1sE92R7esIMNkygNHNfK3sWlzfMajPwPC</span>
<span id="LC66" class="line" lang="plaintext">vIJ+pc6mGVgnacxI6TTZnuqRXEbTJPBYf5qF/h9hBK8K14qrf9/Jp7Ii8jA2V0bhm7i/RWsl/+3W</span>
<span id="LC67" class="line" lang="plaintext">hM6jRUBiTw0WM2MqaMFhP5bR8ocDrjVAOjaf+N3230yFgABRxAaCaxOGDHLaxFr0ypP7OindrOkq</span>
<span id="LC68" class="line" lang="plaintext">+72QZFrRJJUDP7ahf6pNS8z0FCstEPYhaChZZ0bk497MTqzDtuugPyiMApMXLvExS71j+WPDofwa</span>
<span id="LC69" class="line" lang="plaintext">W8k9ZPF2iB+uj50nkYRtK3vxIt8+qPuxCcQqruQJXWBhQj3X2gep2JO2fvIth5RiQ0c52yLvviBo</span>
<span id="LC70" class="line" lang="plaintext">oTpXyESZZsVBfhgNx2JWfXjmQeADZsGl4ilKqa/OM7xwSqqJzGkyd26h8v8lH/QgRIJeNssUHIsO</span>
<span id="LC71" class="line" lang="plaintext">dVi5hc5/Hm8c7XXHr1199oHexRT7pPb3g8l2W5xpmpDFWMd/rIOO9tm7nfnUP2jr55yGmuWPMIWq</span>
<span id="LC72" class="line" lang="plaintext">Ybfnn/Ha8wAHGlaA7R1cpgGkrxG5en5mL0BiHlW7gRTEo4YmcbDnb2gIwlTzyEFJ5VKVPX2bzLpG</span>
<span id="LC73" class="line" lang="plaintext">Bez5wKzuy79AQMFB9PYecBlkel6nzwijrXGMT+TfAFVMFQAL96BHhO05PRj7yfnWabwXHceRktUR</span>
<span id="LC74" class="line" lang="plaintext">XvSK+llNRNfrM/dnRfLF1T//CmOWooBfDocDjuVemRSyVtZJJ6z01b30zPBmPSbosDK+aDsSLuaL</span>
<span id="LC75" class="line" lang="plaintext">spm9jeXsYbv2wxjG9dk8Hac7MFPMwmO6llV6VMJgsTVEksLDATI7eVVcjTEjWiTDO1UfG3n8mfPk</span>
<span id="LC76" class="line" lang="plaintext">S6ZjIJUN+AlVTPVl7FI8sOj8Tkc8Li2pVubu4krnlJnYQiISLd4rvM+Ws76JaMOLaiLDCZPcIl2i</span>
<span id="LC77" class="line" lang="plaintext">zDGgXojMgcifbt+WUy+dwgvOdmXw5GesUssP4Jxph1c4fT0TCBrhqgdfqCUiZfFWnK6v7sc4o4L4</span>
<span id="LC78" class="line" lang="plaintext">+31Rqq5HRGkZ4IBrgsYypsBtHcisZZavwUbGJtBj+pQWEtOr9H6dKeONf5NMrTIQBwe56kIRoyJa</span>
<span id="LC79" class="line" lang="plaintext">On5SjKk3ijlgNLuR5rcb7LxQxlDeQysy6wg/wKRO4hwVdF5V+NTkw2DcYiB26Ue1RYQRlo6aD44r</span>
<span id="LC80" class="line" lang="plaintext">0d2b866+k+jN0qndBjFpYvQwKK1sv7hnv5jaRWc0Qtp252o7wsoOpDC12yaJx4f/7ALDg67ch+Om</span>
<span id="LC81" class="line" lang="plaintext">Aj2BitUMzZSd05yXlQi6xn5wgVWESFkysYnxsxYFLo1X+rNTUG87CziguuSfgihDKeU2ilsxQa6W</span>
<span id="LC82" class="line" lang="plaintext">C7KKMj8TEuEl9Gz2xHLd4Hddw5N0IVFv0bWrHtEtJOujl0RAYu0JpngPcUylunIvqoXps11zU4Dt</span>
<span id="LC83" class="line" lang="plaintext">slBuFiaF0WFnlGWHjyb0zE0VUL6EKYFmNxCrVDHMjCTlRZISJw8dli5CE5XRNq9d5sDQG3yW4aF0</span>
<span id="LC84" class="line" lang="plaintext">NaMB3y0YRxGj1je6oJAbpcq6hL6kXXRj3i+XrjzPO24E9lgX6/raGxk+9OyWGB9JFYKmji7b/60F</span>
<span id="LC85" class="line" lang="plaintext">+Uu3EHeKMlXcBhGRVGc4+OYWiu12gXNnbSE85u/LnTNIPh1lUKY24vCmItJmWJCfKgj3G7l1tcT/</span>
<span id="LC86" class="line" lang="plaintext">MUakK1PFFZsK4AawfuHzB9Hq0ir+2B63vT79Engi9xLBfiV5CDVmTZl0sJtN/sFjbxsMSNZkjWHo</span>
<span id="LC87" class="line" lang="plaintext">fRlCMli6RFajd+GOkGszNdpRKHHGLlvfwt9TeMEBNeNrViYQc5hbL+tp5eIPj5D1tYEWE7VD+Evo</span>
<span id="LC88" class="line" lang="plaintext">H44mHb9YFXyfZe9cwvLetjtBBmnkKBMueNPNwcRetqre5xkBTIbuRhi8j1mo/9FSd4DE2fEPEiUn</span>
<span id="LC89" class="line" lang="plaintext">j6Xz+ViXmKO2ztnjGifg8fMNcYH1Glo4i46509r+HSxHcXOLmrvW/QAAAAAAAAAAAAAAAAAAAAAA</span>
<span id="LC90" class="line" lang="plaintext">AAAAAAAAAAAGDhYbHyEoMg==</span></code></pre>
<copy-code></copy-code><insert-code-snippet></insert-code-snippet>
</div>
<h2 dir="auto" style="margin-top: 20px; margin-bottom: 10px;" align="initial">
<a href="#expected-results" aria-hidden="true" class="anchor" id="user-content-expected-results" style="margin-top: 0; margin-left: -20px; text-decoration: none; outline: none; position: absolute; width: 20px;"></a>Expected results:</h2>
<p dir="auto" style="color: #3a383f; margin: 0;" align="initial">It shouldn't display the warning.</p>
</div>
</div>
<div class="footer" style="margin-top: 10px;">
<p style="font-size: small; color: #626168;">
—
<br>
Reply to this email directly or <a href="https://gitlab.com/gnutls/gnutls/-/issues/1743">view it on GitLab</a>.
<br>
You're receiving this email because of your account on <a target="_blank" rel="noopener noreferrer" href="https://gitlab.com">gitlab.com</a>. <a href="https://gitlab.com/-/sent_notifications/1-4b974uyh26uy1xaljztfkn7uv/unsubscribe" target="_blank" rel="noopener noreferrer">Unsubscribe</a> from this thread · <a href="https://gitlab.com/-/profile/notifications" target="_blank" rel="noopener noreferrer" class="mng-notif-link">Manage all notifications</a> · <a href="https://gitlab.com/help" target="_blank" rel="noopener noreferrer" class="help-link">Help</a>
<span style="color: transparent; font-size: 0; display: none; overflow: hidden; opacity: 0; width: 0; height: 0; max-width: 0; max-height: 0;">
Notification message regarding https://gitlab.com/gnutls/gnutls/-/issues/1743 at 1759359874
</span>
<script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","action":{"@type":"ViewAction","name":"View Issue","url":"https://gitlab.com/gnutls/gnutls/-/issues/1743"}}</script>
</p>
</div>
</body>
</html>