运行时错误:libtommath和libtomcrypt

时间:2016-06-21 21:52:37

标签: gcc shared-libraries static-libraries static-linking libtool

我正在尝试使用libtomcrypt运行示例rsa / dsa代码。

我首先安装了LibTomMath作为 make install ,因此创建了以下文件。

/usr/lib/libtommath.a /usr/include/tommath.h

之后我用LibTomMath作为外部库安装了libtomcrypt

CFLAGS="-DLTM_DESC -DUSE_LTM -I/usr/include" EXTRALIBS="/usr/lib/libtommath.a " make install

结果创建了以下文件

/usr/lib/libtomcrypt.a

运行以下命令时,我没有收到任何错误

CFLAGS="-DLTM_DESC -DUSE_LTM -I/usr/include" EXTRALIBS="/usr/lib/libtommath.a " make test

我已阅读此文档libtomcrypt_installationlibtomcrypt_resolved以使用

成功编译
gcc -DLTM_DESC rsa_make_key_example.c -o rsa -ltomcrypt 
or
gcc rsa_make_key_example.c -o rsa -ltomcrypt 

无编译错误但是当我尝试运行时,我遇到了以下错误。

 ./rsa

 LTC_ARGCHK 'ltc_mp.name != NULL' failure on line 34 of file src/pk/rsa/rsa_make_key.c
 Aborted

以下是我的示例rsa代码

#include <tomcrypt.h>
#include <stdio.h>

int main(void) {

# ifdef USE_LTM
ltc_mp = ltm_desc;
# elif defined (USE_TFM)
ltc_mp = tfm_desc;
# endif 


    rsa_key key;

    int      err;
    register_prng(&sprng_desc);

    if ((err = rsa_make_key(NULL, find_prng("sprng"), 1024/8, 65537,&key)) != CRYPT_OK) {
        printf("make_key error: %s\n", error_to_string(err));
        return -1;
    }
    /* use the key ... */
    return 0;

} 

这是我的示例dsa代码

#include <tomcrypt.h>
#include <stdio.h>

int main(void) {

# ifdef USE_LTM
ltc_mp = ltm_desc;
# elif defined (USE_TFM)
ltc_mp = tfm_desc;
# endif 


    int      err;
    register_prng(&sprng_desc);

    dsa_key key;


    if ((err = dsa_make_key(NULL, find_prng("sprng"), 20, 128,&key)) != CRYPT_OK) {
        printf("make_key error: %s\n", error_to_string(err));
        return -1;
    }
    /* use the key ... */
    return 0;

} 

以下是我成功编译的方法,

gcc dsa_make_key_example.c -o dsa -ltomcrypt 

当我尝试运行代码时,我收到了以下错误。

./dsa
segmentation fault

编辑1: 我进一步调查并发现了分段错误的原因

#ifdef LTC_MPI
#include <stdarg.h>

int ltc_init_multi(void **a, ...)
{
...
...    
if (mp_init(cur) != CRYPT_OK) ---> This line causes segmentation fault

我在哪里犯错误?如何解决此问题以成功运行这些程序?

我正在使用linux,gcc。任何帮助/链接将受到高度赞赏。提前谢谢。

1 个答案:

答案 0 :(得分:2)

自从问到这个问题已经过去了一年左右,但我有一些答案和解决方法。

mp_init失败的原因是&#34; math_descriptor&#34;没有初始化。 mp_init定义为

#define mp_init(a) ltc_mp.init(a)

其中ltc_mp是一个全局结构(类型为ltc_math_descriptor),它包含指向数学例程的指针。

有几种可用的数学例程实现,用户可以选择他们想要的。无论出于何种原因,似乎没有为某些libtomcrypt版本选择默认的数学实现。因此,init的{​​{1}}成员为null,我们得到了SIGSEGV。

以下是手动解决方法:

您可以通过ltc_mp

之一为您的ltc_math_descriptor例程提供所需的main()结构
  • LTM_DESC - 内置数学库
  • TFM_DESC - 外部快速数学包
  • GMP_DESC - 可能是GNU MultiPrecision实现?

#define之前(或在命令行中使用-D)。 无论您选择哪个,都会声明相应的对象:

#include <tomcrypt.h>

要使用它,请手动将其复制到全局数学描述符: 例如,就我而言,对于本地数学运算,

extern const ltc_math_descriptor ltm_desc;
extern const ltc_math_descriptor tfm_desc;
extern const ltc_math_descriptor gmp_desc;

现在libtomcrypt正常工作。