<div dir="ltr"><div dir="ltr">Hi,<div><br></div><div>I am a new to libgcrypt. i had an error when I tried just to initialize the library. I followed the manual for initialization but when try to check it's success it give me general error. the code as following</div><div><br></div><div><div style="color:rgb(0,0,0);font-family:Menlo,Monaco,"Courier New",monospace;font-size:12px;line-height:18px;white-space:pre"><div><span style="color:rgb(175,0,219)"># include</span><span style="color:rgb(0,0,255)"> </span><span style="color:rgb(163,21,21)"><gcrypt.h></span></div><div><span style="color:rgb(175,0,219)"># include</span><span style="color:rgb(0,0,255)"> </span><span style="color:rgb(163,21,21)"><stdio.h></span></div><div><span style="color:rgb(175,0,219)"># include</span><span style="color:rgb(0,0,255)"> </span><span style="color:rgb(163,21,21)"><string.h></span></div><div><span style="color:rgb(175,0,219)"># include</span><span style="color:rgb(0,0,255)"> </span><span style="color:rgb(163,21,21)"><stdlib.h></span><span style="color:rgb(0,0,255)"> </span></div><div><span style="color:rgb(175,0,219)"># include</span><span style="color:rgb(0,0,255)"> </span><span style="color:rgb(163,21,21)"><gpg-error.h></span></div><br><div><span style="color:rgb(175,0,219)"># define</span><span style="color:rgb(0,0,255)"> </span><span style="color:rgb(121,94,38)">AM_PATH_LIBGCRYPT</span></div><br><br><br><div><span style="color:rgb(0,0,255)">int</span> <span style="color:rgb(121,94,38)">main</span> ()</div><br><div>{</div><br><br><div><span style="color:rgb(0,128,0)">/* Version check */</span></div><br><div>  <span style="color:rgb(175,0,219)">if</span> (!<span style="color:rgb(121,94,38)">gcry_check_version</span>(GCRYPT_VERSION))</div><br><div>    {   </div><div>      <span style="color:rgb(121,94,38)">fputs</span> (<span style="color:rgb(163,21,21)">"libgcrypt version mismatch</span><span style="color:rgb(255,0,0)">\n</span><span style="color:rgb(163,21,21)">"</span>, stderr);</div><div>        <span style="color:rgb(121,94,38)">exit</span>(<span style="color:rgb(9,136,90)">2</span>);</div><div>    }</div><br><div><span style="color:rgb(0,128,0)">/* intialization success check */</span></div><br><div><span style="color:rgb(38,127,153)">gcry_error_t</span> e1 = <span style="color:rgb(121,94,38)">gcry_control</span> (GCRYCTL_ANY_INITIALIZATION_P);</div><div><span style="color:rgb(121,94,38)">fputs</span> (<span style="color:rgb(121,94,38)">gcry_strerror</span>(e1), stderr);</div><div><span style="color:rgb(121,94,38)">puts</span> (<span style="color:rgb(163,21,21)">"</span><span style="color:rgb(255,0,0)">\n</span><span style="color:rgb(163,21,21)">"</span>);</div><br><div><span style="color:rgb(175,0,219)">return</span> <span style="color:rgb(9,136,90)">0</span>;</div><br><div>}</div><br></div></div></div></div>