OpenSSL-BIGNUM检查问题

时间:2019-01-25 16:16:47

标签: c openssl endianness

我使用OpenSSL 1.0.2k来处理软件上的私钥和公钥,并且仅在64位弓上,一些操作系统(linux-s390,aix power,HPUX IA64)存在一些问题。

这不是那么麻烦,但它困扰着我。 我从缓冲区(DER数据)获得RSA *结构,我只是检查RSA公共指数以确保它是奇数。 它可以在除上述三个操作系统之外的所有操作系统上运行:似乎RSA-> e是偶数的(显然不是)

这是BIGNUM结构:

struct bignum_st {
    BN_ULONG *d;
    int top;
    int dmax;
    int neg;
    int flags;
};  

调试时,我看到在功能操作系统上,d [0] == 65537,d [1] ==0。在无功能操作系统上,d [0] == 0,d [1] == 65537。 BN_is_odd是一个宏:

# define BN_is_odd(a)        (((a)->top > 0) && ((a)->d[0] & 1))
#include <stdio.h>
#include <openssl/pem.h>

int get_key(const unsigned char *buf, int len) {
    RSA *rsa = d2i_RSA_PUBKEY(NULL, &buf, len);
    if (rsa != NULL) {
        if (rsa->e != NULL) {
            printf("BN : <%s> (hex) -- <%s> (dec)\n", BN_bn2hex(rsa->e), BN_bn2dec(rsa->e));
            if (BN_is_odd(rsa->e) == 0) {
                printf("Error : RSA public exponent is even\n");
            } else {
                printf("RSA public exponent is OK.\n");
                return 0;
            }
        }
        RSA_free(rsa);
    } else {
        printf("Error : RSA is NULL\n");
    }
    return 1;
}

int main() {
    const unsigned char data[] = { 0x30, 0x81, 0x9f, 0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01, 0x05, 0x00, 0x03, 0x81, 0x8d, 0x00, 0x30, 0x81, 0x89, 0x02, 0x81, 0x81, 0x00, 0xd6, 0x70, 0x5d, 0x67, 0xf2, 0xe1, 0x34, 0x82, 0xd5, 0x2d, 0x79, 0xdd, 0x42, 0x55, 0x41, 0xaf, 0x0c, 0xc2, 0xb4, 0xb0, 0x94, 0xc6, 0xa0, 0x40, 0x54, 0x2e, 0x0f, 0xa5, 0x12, 0x3d, 0x43, 0x96, 0x13, 0x2d, 0x17, 0x50, 0xe5, 0x9a, 0x5a, 0x6e, 0x99, 0xc7, 0xd2, 0x63, 0x4c, 0xcd, 0x57, 0xcb, 0x57, 0x7e, 0x1e, 0x5f, 0x97, 0xaa, 0xbd, 0xe5, 0xc0, 0x98, 0xd9, 0x07, 0x52, 0xdc, 0x27, 0xa4, 0x19, 0xb2, 0x81, 0x5d, 0xd5, 0x03, 0x5c, 0xd2, 0xb3, 0xb8, 0x28, 0xaa, 0xd7, 0xaf, 0x02, 0x08, 0x1c, 0x6c, 0xc2, 0xa4, 0x6c, 0x41, 0xd3, 0xa6, 0xae, 0x51, 0x69, 0xb7, 0xd5, 0x79, 0xb8, 0x62, 0x68, 0x9e, 0xa9, 0x44, 0x8e, 0xbe, 0xb1, 0x2e, 0x1a, 0x3c, 0x4b, 0x21, 0x7b, 0x7d, 0x36, 0xf0, 0x97, 0x98, 0x81, 0x63, 0xa6, 0xfa, 0xf8, 0x28, 0x22, 0x72, 0xfe, 0x16, 0xa8, 0x16, 0x89, 0xbb, 0x02, 0x03, 0x01, 0x00, 0x01 }; /* A DER buffer, valid with openssl rsa -pubin -in <file> -inform DER */
    return get_key(data, sizeof data);
}

在大多数系统上,我得到输出“ RSA public exponent is OK”。但是,在另一些情况下,我得到了“ RSA公共指数是偶数”。打印的BIGNUM正确(010001-65537)。

我理解为什么BIGNUM被认为是偶数。但是,为什么这三个OS的前导零呢? (不过,在那些32位操作系统上没有问题)。 任何想法对此表示赞赏:)

1 个答案:

答案 0 :(得分:1)

最有可能的,是因为您已经编译了带有 OpenSSL 头文件的 64 位可执行文件 适用于 32 位。

准确的说是function App() { return ( <div className="App"> <Header></Header> <CurrencyData currency={currency}></CurrencyData > </div> ); } 包含以下两部分之一 (第一个是 32 位,第二个是 64 位):

opensslconf.h

181  /* Only one for the following should be defined */
182  #undef SIXTY_FOUR_BIT_LONG
183  #undef SIXTY_FOUR_BIT
184  #define THIRTY_TWO_BIT
185  #endif

要使其同时兼容 32 位和 64 位,请按以下方式编辑:

181  /* Only one for the following should be defined */
182  #define SIXTY_FOUR_BIT_LONG
183  #undef SIXTY_FOUR_BIT
184  #undef THIRTY_TWO_BIT
185  #endif

http://lzsiga.users.sourceforge.net/aix-linking.html#Q0044