What is delay signing?

Answers were Sorted based on User's Feedback



What is delay signing?..

Answer / guest

Delay signing allows to place a shared assembly in the GAC
by signing the assembly with just the public key. This
allows the assembly to be signed with the private key at a
later stage, when the development process is complete and
the component or assembly is ready to be deployed.

This process enables developers to work with shared
assemblies as if they were strongly named, and it secures
the private key of the signature from being accessed at
different stages of development.

Is This Answer Correct ?    26 Yes 7 No

What is delay signing?..

Answer / johncena

During development process you will need strong name keys to
be exposed to developer which
is not a good practice from security aspect point of view.In
such situations you can assign the key
later on and during development you an use delay signing
Following is process to delay sign an assembly:
√ First obtain your string name keys using SN.EXE.
√ Annotate the source code for the assembly with two custom
attributes from
System.Reflection: AssemblyKeyFileAttribute, which passes
the name of the file
containing the public key as a parameter to its constructor.
AssemblyDelaySignAttribute,
which indicates that delay signing, is being used by passing
true as a parameter to its
constructor. For example as shown below:
[Visual Basic]
<Assembly:AssemblyKeyFileAttribute("myKey.snk")>
<Assembly:AssemblyDelaySignAttribute(true)>
[C#]
[assembly:AssemblyKeyFileAttribute("myKey.snk")]
[assembly:AssemblyDelaySignAttribute(true)]
The compiler inserts the public key into the assembly
manifest and reserves space in the PE file for
the full strong name signature. The real public key must be
stored while the assembly is built so
that other assemblies that reference this assembly can
obtain the key to store in their own assembly
reference.
&#8730; Because the assembly does not have a valid strong name
signature, the verification of
that signature must be turned off. You can do this by using
the –Vr option with the
Strong Name tool.The following example turns off
verification for an assembly called
myAssembly.dll.
Sn –Vr myAssembly.dll

&#8730; Just before shipping, you submit the assembly to your
organization's signing authority
for the actual strong name signing using the –R option with
the Strong Name tool.
The following example signs an assembly called
myAssembly.dll with a strong name
using the sgKey.snk key pair.
Sn -R myAssembly.dll sgKey.snk

Is This Answer Correct ?    14 Yes 3 No

Post New Answer

More Dot Net Remoting Interview Questions

What is the difference between private and shared assembly?

1 Answers  


Difference between web services & remoting?

0 Answers  


Can we configure a .net remoting object via xml file?

0 Answers  


Are you aware of containment and Aggregation ?

0 Answers   DELL,


what is Client-activated object in remoting?

0 Answers   DELL,






what are the various type of channels used by .Net remoting and which is the best one?

1 Answers  


Choosing between HTTP and TCP for protocols and Binary and SOAP for formatters, what are the trade-offs? In what way it is best?

2 Answers  


Hello, I want to connect a system in LAN and i want to access that.When ever i am moving a mouse in my desktop the similar thing have to happend in the another system in which i have connected. I need coding for this in c# and .NET . any one please help me.It is very urgent to me Advance thanks. my email id:manojkumarchallagundla@gmail.com

0 Answers   Excel,


How does assembly versioning in .NET prevent DLL Hell?

3 Answers   Satyam, Siebel Systems,


What is strong name and what is the need of it ?

1 Answers   Digital GlobalSoft,


What are the channels in .net remoting?

0 Answers  


what is the diff between remoting and webservice

1 Answers  


Categories