Signed dll

Started by AudioVideo,

AudioVideo

Hello,
Bass.Net.dll is not code signed, possible to have the x64 signed build?
Also, BassCD.dll is signed using the deprecated SHA-1 algorithm, it would be great to sign using SHA-256.
Thanks.

radio42

Bass.Net.dll is signed!

To check, do the following:
Load the Bass.Net.dll into you app

BassNet.Registration("your.mail.address", "yourregcode");
...

Assembly asm = Assembly.GetAssembly(typeof(BassNet));
if (asm != null)
{
    AssemblyName asmName = asm.GetName();
    byte[] key = asmName.GetPublicKey();
    bool isSignedAsm = key.Length > 0;
    Console.WriteLine("IsSignedAssembly={0}", isSignedAsm);
}
//
// Output will be:
// IsSignedAssembly=True

AudioVideo

Thanks, I meant signing with a code signing certificate (signtool) not the signing/delay signing of Visual Studio :)