Unsigned DLL

  • Thread starter Thread starter Itzik
  • Start date Start date
I

Itzik

I have two Dll's (U-UnSigned , S-Signed)
I am looking for way invoke method in U dll from S.
if i add reference from S to U compilation error occur.
May be exists way to do this in reflection ?
Thanks
 
Itzik,

Why not sign the unsigned assembly? Or do you not have control over it?
The thing is, if you found a way around this issue, you couldn't really say
that your assembly is signed, since you can't guarantee that all the
assemblies that you reference are signed. You would be breaking that chain.
 
Nicholas Paldino said:
Itzik,

Why not sign the unsigned assembly? Or do you not have control over
it? The thing is, if you found a way around this issue, you couldn't
really say that your assembly is signed, since you can't guarantee that
all the assemblies that you reference are signed. You would be breaking
that chain.

It's safe to call into an unsigned assembly if you set the appropriate
security restrictions first and call in a partial trust scenario.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top