vote up 0 vote down star

I have an assembly which is not strong-named. I have no source code for it.

I now need it to be signed. Is there a way to do this?

flag

2 Answers

vote up 1 vote down check

If the original assembly is marked for delay signing, then you can use the sn.exe tool.

if the original assembly is not so marked, then you can disassemble it with ildasm.exe, then re-asssemble it with ilasm.exe and specify the /key argument.

link|flag
msdn.microsoft.com/en-us/library/… MSDN said using:al /out:MyAssembly.dll MyModule.netmodule /keyfile:sgKey.snk . But I did not succeed – guaike Aug 3 at 6:30
vote up 1 vote down

Use the Strong Name Tool utility (sn.exe).

link|flag
sn.exe can't do this,becacuse sn.exe just can re-sign with storng name assembly – guaike Aug 3 at 3:28
I think sn.exe works if the original assembly is marked to be signed later. yes? – Cheeso Aug 3 at 4:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.