Hello,<br><br>How can I set up a tunnel without encryption? I tried to set esp to null-sha1-96 but this doesn&#39;t work. I checked the source but the spi.c source shows that null-sha1-96 option is not evaluated.&nbsp; Why is this missing?
<br><br>--- CUT ---<br><pre>int decode_esp(char *algname)<br>{<br>  int esp_alg;<br><br>  if(!strcmp(algname, &quot;3des-md5-96&quot;)) {<br>    esp_alg = XF_ESP3DESMD596;<br>  } else if(!strcmp(algname, &quot;3des-sha1-96&quot;)) {
<br>    esp_alg = XF_ESP3DESSHA196;<br>  } else if(!strcmp(algname, &quot;3des&quot;)) {<br>    esp_alg = XF_ESP3DES;<br>#ifdef KERNEL_ALG<br>  } else if((alg_info=alg_info_esp_create_from_str(algname, &amp;alg_err, FALSE))) {
<br>    int esp_ealg_id, esp_aalg_id;<br><br>    esp_alg = XF_OTHER_ALG;<br>...<br></pre>--- END-CUT---<br><br><br>Thanks<br><br>friedrich<br>