i want to create a Xamarin.Mac app to read data from eID card. Where i can find an information about pkcs11interop + Xamarin or where i can find an examples.
Or, how can i load a iOS library:
String path = "beid_ff_pkcs11.dll";
Pkcs11 pkcs11;
try
{
pkcs11 = new Pkcs11(path, AppType.MultiThreaded);
}
catch
{
MessageBox.Show($"Pkcs11 pkcs not loaded");
return;
}
Best Reagards Nikita