<!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=US-ASCII" 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: var(--default-regular-font, "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: var(--default-regular-font, "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 style="color: #777777;">
<a href="https://gitlab.com/valdaarhun">Sahil Siddiq</a>
commented on a
<a href="https://gitlab.com/gnutls/gnutls/-/issues/1524#note_1796682164">discussion</a>:
</p>
<div class="md" style="color: #333238; word-wrap: break-word;">
<blockquote dir="auto" style="font-size: inherit; color: #535158; padding-top: .5rem; padding-bottom: .5rem; padding-left: 1.5rem; box-shadow: inset 4px 0 0 0 #dcdcde; border-top-width: 0; border-bottom-width: 0; border-right-width: 0; margin: 0 0 .5rem;" align="initial">
<p style="color: inherit; line-height: 1.5; margin: 0;">the potentially interesting stuff is at the last lines</p>
</blockquote>
<p dir="auto" style="color: #333238; margin: 0 0 16px;" align="initial">Right, as mentioned in the previous message, that's where the preferred digest algorithm is determined based on the key type. A switch-case statement is used for this purpose.</p>
<div class="gl-relative markdown-code-block js-markdown-code">
<pre data-canonical-lang="c" class="code highlight js-syntax-highlight language-c" lang="c" v-pre="true" style='display: block; font-size: 14px; color: #333238; line-height: 1.6em; overflow-x: auto; border-radius: 4px; position: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; word-break: break-all; word-wrap: break-word; background-color: #fbfafd; margin: 0 0 16px; padding: 12px; border: 1px solid #dcdcde;'><code style='font-size: inherit; color: inherit; word-wrap: normal; word-break: keep-all; background-color: inherit; border-radius: 4px; white-space: pre; margin-top: 0; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; overflow-wrap: normal; padding: unset;'><span id="LC1" class="line" lang="c" style="margin-top: 0;">   <span class="k" style="margin-top: 0;">switch</span> <span class="p">(</span><span class="n">key</span><span class="o">-></span><span class="n">params</span><span class="p">.</span><span class="n">algo</span><span class="p">)</span> <span class="p">{</span></span>
<span id="LC2" class="line" lang="c">       <span class="k" style="margin-top: 0;">case</span> <span class="n">GNUTLS_PK_DSA</span><span class="p">:</span> <span class="p">[...]</span></span>
<span id="LC3" class="line" lang="c">       <span class="k" style="margin-top: 0;">case</span> <span class="n">GNUTLS_PK_ECDSA</span><span class="p">:</span> <span class="p">[...]</span></span>
<span id="LC4" class="line" lang="c">       <span class="k" style="margin-top: 0;">case</span> <span class="n">GNUTLS_PK_EDDSA_ED25519</span><span class="p">:</span> <span class="p">[...]</span></span>
<span id="LC5" class="line" lang="c">       <span class="k" style="margin-top: 0;">case</span> <span class="n">GNUTLS_PK_EDDSA_ED448</span><span class="p">:</span> <span class="p">[...]</span></span>
<span id="LC6" class="line" lang="c">       <span class="k" style="margin-top: 0;">case</span> <span class="n">GNUTLS_PK_GOST_01</span><span class="p">:</span></span>
<span id="LC7" class="line" lang="c">       <span class="k" style="margin-top: 0;">case</span> <span class="n">GNUTLS_PK_GOST_12_256</span><span class="p">:</span></span>
<span id="LC8" class="line" lang="c">       <span class="k" style="margin-top: 0;">case</span> <span class="n">GNUTLS_PK_GOST_12_512</span><span class="p">:</span> <span class="p">[...]</span></span>
<span id="LC9" class="line" lang="c">       <span class="k" style="margin-top: 0;">case</span> <span class="n">GNUTLS_PK_RSA_PSS</span><span class="p">:</span> <span class="p">[...]</span></span>
<span id="LC10" class="line" lang="c">      <span class="k" style="margin-top: 0;">case</span> <span class="n">GNUTLS_PK_RSA</span><span class="p">:</span> <span class="p">[...]</span></span>
<span id="LC11" class="line" lang="c">      <span class="nl" style="margin-top: 0;">default:</span></span>
<span id="LC12" class="line" lang="c">              <span class="n" style="margin-top: 0;">gnutls_assert</span><span class="p">();</span></span>
<span id="LC13" class="line" lang="c">              <span class="n" style="margin-top: 0;">ret</span> <span class="o">=</span> <span class="n">GNUTLS_E_INTERNAL_ERROR</span><span class="p">;</span></span>
<span id="LC14" class="line" lang="c">      <span class="p" style="margin-top: 0;">}</span></span></code></pre>
<copy-code></copy-code>
</div>
<p dir="auto" style="color: #333238; margin: 0 0 16px;" align="initial">There is no case statement for <code style='font-size: 90%; color: #1f1e24; word-wrap: break-word; background-color: #ececef; border-radius: 4px; margin-top: 0; font-weight: inherit; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; white-space: pre-wrap; overflow-wrap: break-word; word-break: keep-all; padding: 2px 4px;'>ECDH_X25519</code> and <code style='font-size: 90%; color: #1f1e24; word-wrap: break-word; background-color: #ececef; border-radius: 4px; font-weight: inherit; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; white-space: pre-wrap; overflow-wrap: break-word; word-break: keep-all; padding: 2px 4px;'>ECDH_X448</code>. I am not sure if this is a config issue.</p>
<p dir="auto" style="color: #333238; margin: 0;" align="initial"><a href="https://gitlab.com/SilentSobs" data-reference-type="user" data-user="20129158" data-container="body" data-placement="top" class="gfm gfm-project_member js-user-link" title="Ramesh Adhikari" style="background-color: #cbe2f9; border-radius: 4px; color: #0b5cad; margin-top: 0; padding: 0 2px;">@SilentSobs</a> Could you please let me know what log lines are printed out when you run the two <code style='font-size: 90%; color: #1f1e24; word-wrap: break-word; background-color: #ececef; border-radius: 4px; font-weight: inherit; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","lucida console",monospace; white-space: pre-wrap; overflow-wrap: break-word; word-break: keep-all; padding: 2px 4px;'>certtool</code> commands?</p>
</div>


</div>
<div class="footer" style="margin-top: 10px;">
<p style="font-size: small; color: #737278;">

<br>
Reply to this email directly or <a href="https://gitlab.com/gnutls/gnutls/-/issues/1524#note_1796682164">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/0c23f65f64c88ebb1766bdbf62fc5b00/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>
<script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","action":{"@type":"ViewAction","name":"View Issue","url":"https://gitlab.com/gnutls/gnutls/-/issues/1524#note_1796682164"}}</script>


</p>
</div>
</body>
</html>