AccessViolationException - When calling Botan::LibraryInitializer

283 Views Asked by At

I'm building a managed wrapper for Botan crypto in .NET and following the getting started instructions here

Getting Started

And the library reference

I'm trying to execute the LibraryInitializer first, but when I call it it throws an AccessViolationException - inside my INIT() method.

My code it like this.

C# test program

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();
        }
    }
}

Wrapper 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;
}

Wrapper Header

// 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();
    };


}

I don't even know if I'm calling the libraryinitializer correctly. I'm not too familiar with C++. Any help is appreciated. thanks.

EDIT I tried the same thing in a Win32 Console application but get the same result

#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;
}

Unhandled exception at 0x0F12422E (botan.dll) in ConsoleApplication4.exe: 0xC0000005: Access violation reading location 0x003B0000.

1

There are 1 best solutions below

0
On

I would change:

LibraryInitializer init;

to:

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

As outlined under pitfalls in the getting started page.