- 论坛徽章:
- 0
|
编译时没有报错,但是运行时报"segmentation fault".
我想可能是这个函数的问题,因为其它编译时没有问题.
- int GetPublicKey(int nSockId, char *PublicKey, int nPublicKeyLen)
- {
- char PrivateKeyIndex[2+1];
- char *pInBuf;
- int nInLen;
- char *pOutBuf;
- int nOutBufLen;
- long lTimeOut=0;
- char PrivateKeyLen[4+1];
- int nPrivateKeyLen;
- char *BcdPublicKey;
- FILE *fp;
-
-
- memset(PrivateKeyLen, 0x00, sizeof(PrivateKeyLen));
- memset(PrivateKeyIndex, 0x00, sizeof(PrivateKeyIndex));
- memcpy(PrivateKeyIndex, "00", 2);
- PrivateKeyIndex[2] = 0x00;
-
- memcpy(pInBuf, "34", 2);
- memcpy(pInBuf+2, "1024", 4);
- memcpy(pInBuf+6, PrivateKeyIndex, 2);
- pInBuf[8] = 0x00;
- nInLen = 8;
-
- HsmCmd(nSockId, pInBuf, nInLen, pOutBuf, lTimeOut);
-
- if( strncmp(pOutBuf+2, "00", 2) != 0)
- return -1;
-
- memcpy(pOutBuf+6, PrivateKeyLen, 4);
- PrivateKeyLen[4]=0x00;
- nPrivateKeyLen = atoi(PrivateKeyLen);
-
- strcpy(BcdPublicKey, (pOutBuf+10+nPrivateKeyLen));
-
- BcdToAsc(BcdPublicKey, PublicKey, strlen(BcdPublicKey));
-
- if( (fp = fopen( "RsaKey.txt", "w")) == NULL)
- return -1;
-
- fscanf(fp, "%s", PublicKey);
-
- fclose(fp);
-
- return 0;
- }
复制代码 |
|