-3

我正在为 .NET 中的 Botan crypto 构建托管包装器,并按照此处的入门说明进行操作

入门

图书馆参考

我正在尝试首先执行 LibraryInitializer,但是当我调用它时,它会在我的 INIT() 方法中引发 AccessViolationException。

我的代码是这样的。

C#测试程序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using BotanCrypto_ManagedWrapper;
using System.Numerics;

namespace TestBotanWrapper
{
    class Program
    {
        static void Main(string[] args)
        {
            BotanCrypto BC = new BotanCrypto();
            BC.INIT();


            UInt64 num = 100;

            BigInteger b = BC.Test(num);


            Console.WriteLine(b);
            Console.ReadKey();
        }
    }
}

包装 CPP

// This is the main DLL file.

#include "stdafx.h"

#include "BotanCrypto_ManagedWrapper.h"
using namespace BotanCrypto_ManagedWrapper;

void BotanCrypto::INIT(){
    LibraryInitializer init;

}

BigInteger BotanCrypto::Test(UInt64 x){
    //try{
        BigInt n = 1000000;
        x = 2;
    //}catch(SystemException^ ex){

    //  x = 0;
    //}
    return x;
}

包装头

// BotanCrypto_ManagedWrapper.h

#pragma once

using namespace System;
using namespace Numerics;
using namespace Botan;

namespace BotanCrypto_ManagedWrapper {

    public ref class BotanCrypto
    {
        // TODO: Add your methods for this class here.
    public:
        BigInteger Test(UInt64 k);
        void INIT();
    };


}

我什至不知道我是否正确调用了 libraryinitializer。我对 C++ 不太熟悉。任何帮助表示赞赏。谢谢。

编辑我在 Win32 控制台应用程序中尝试了同样的事情,但得到了相同的结果

#include "stdafx.h"
#include <botan/botan.h>

int _tmain(int argc, _TCHAR* argv[])
{
   try
      {
      Botan::LibraryInitializer init;

      // ...
      }
   catch(std::exception& e)
      {
      //std::cerr << e.what() << "\n";
      }
    return 0;
}

ConsoleApplication4.exe 中 0x0F12422E (botan.dll) 处的未处理异常:0xC0000005:访问冲突读取位置 0x003B0000。

4

1 回答 1

0

我会改变:

LibraryInitializer init;

至:

try
{
   LibraryInitializer init;
}
catch(std::exception& e)
{
    std::cerr << e.what() << "\n";
}

如入门页面中的陷阱所述。

于 2015-06-12T04:19:31.630 回答