Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

38
votes
9answers
6k views

Anything wrong with NOT signing a .NET assembly?

One of my colleague is very keen on signing assemblies. He literally tries to sign anything, even when we use assemblies from Microsoft that are not signed he will take the source code , sign it and ...
34
votes
5answers
12k views

What is a .snk for?

What is a .snk file for? I know it stands for Strongly Named Key, but all explanations of what it is and how it works goes over my head. Is there any simple explanation on how a strongly named key ...
12
votes
3answers
134 views

Does code-signing without strong-naming leave your app open to abuse?

Trying to get my head around authenticode code-signing and strong-naming. Am I right in thinking that if I code-sign an exe that references a few dlls (not strong named) that a malicious user could ...
12
votes
3answers
546 views

.NET OpenSource projects and strong named assemblies?

I am currently thinking about open-sourcing a project of mine and am in the process of preparing the source code and project structure to be released to the public. Now I got one question: how should ...
11
votes
3answers
3k views

Can strong naming an assembly be used to verify the assembly author?

After reading the proper article in MSDN and related stackoverflow.com questions here, I finally return to the community. To which extent can a strong-named assembly be verified to avoid tampering? ...
10
votes
8answers
938 views

Signing my assembly with a strong name stops it from working

A colleague of mine created an assembly in VB.net for use with JScript via COM interop. The assembly used to work fine, but we signed it and now it only seems to work on Windows 7 machines. I've ...
8
votes
4answers
1k views

.NET: Should executables be strong-name signed? What about private DLLs?

My application consists of three assemblies: a single EXE which references a couple of DLLs. The DLLs are private to my application - they are used only by this executable. Should these assemblies be ...
8
votes
4answers
767 views

I can't seem to understand this .NET assembly signing thing

Ok, I must be dumb cause I've already read this: http://www.csharp411.com/net-assembly-faq-part-3-strong-names-and-signing/ And I still don't get it... Let's say I open my project's properties and ...
8
votes
2answers
3k views

Checking an assembly for a strong name

Is it possible to check if a, dynamically loaded, assembly has been signed with a specific strong name? Is it enough / secure to compare the values returned from AssemblyName.GetPublicKey() method? ...
7
votes
1answer
742 views

Do you strong name all assemblies your product uses?

I have a product which has around 10+ assemblies. We used to ship it without strongly naming the assemblies. But after reading about strong naming, I guess it is a wise idea to strong name assemblies. ...
6
votes
2answers
123 views

benefit of signing dll with strong name

I have a c# solution that contains multiple c# class libraries. I am being doing some research recently and it is suggested that the outputted assemblies from my libraries should be signed, making ...
6
votes
2answers
202 views

Is it possible to replace a reference to a strongly-named assembly with a “weak” reference?

I'm writing a .NET tool that requires the SQL Server SMO library. I don't care if it's the version from Server 2005 (9.0), 2008 (10.0) or 2008 R2 (probably 10.5, didn't check). The SMO library is ...
6
votes
3answers
508 views

Deserialize object into assembly that is now signed and versioned

I used to serialize a treeview with the BinaryFormatter (c#). The Assembly that did just that and which contains the all the serializable classes has now a strong name and is signed and also got a new ...
6
votes
6answers
2k views

sn.exe fails with Access Denied error message

I get an Access is Denied error message when I use the strong name tool to create a new key to sign a .NET assembly. This works just fine on a Windows XP machine but it does not work on my Vista ...
5
votes
1answer
102 views

WF Custom SQL Tracking Service Stopped Working for old workflows?

I have a custom tracking service that has been running for a while now with over 1500 live workflows ticking along, I'm now in the process of versioning the workflows so that I can release some change ...
5
votes
1answer
416 views

How to generate strong-naming SNK key file with .net libraries

My product needs to be able to generate .snk files (without having Microsoft SDKs installed on the system). I can generate a working SNK file, but I can not seem to get it to work when specifying a ...
5
votes
5answers
2k views

VS 2010 Profiling Problem with Signed Assemblies

I have a website that uses AjaxControlToolkit.dll and Log4Net.dll; When I try to run the performance profiling tool in VS 2010 on it it gives me the following warnings "AjaxControlToolkit.dll is ...
5
votes
1answer
295 views

How does the .NET Runtime Locate Non Strong-Named' Assemblies?

We have different versions of non strong-named assemblies, and no binding redirects/probing paths to them in app.exe.config. For example, MyDll (1.0.0.0_null_neutral) and MyDll (2.0.0.0_null_neutral). ...
5
votes
3answers
203 views

How hard is it to tamper with a strong named assembly?

Assume I have a .NET assembly which is strong named. Only I have access to the private key. I then distribute the assembly to some client system. How hard is it for the client to modify the assembly? ...
5
votes
2answers
933 views

Should interop assemblies be signed?

We have a set of COM components developed in VC++. When a reference to such component is added to a .NET project Visual Studio generates an interop assembly. We have a set of such assemblies now. ...
5
votes
2answers
1k views

How do you programmatically (re)sign a .NET assembly with a strong name?

Aside from invoking the command line to add a strong name to an assembly, is there any APIs out there that let you resign an assembly once it has been stripped of its strong name?
4
votes
1answer
81 views

Quite special PublicKey in .NET core assemblies

I've noticed that core .NET assemblies have PublicKey = 00000000000000000400000000000000. Not only it's shorter then those sn.exe allows to generate (min 384 bits) but also it has a lot of zeros. ...
4
votes
1answer
154 views

Force Code Contracts to use sn.exe 4.0

The Code Contracts rewriter uses the Strong Name (sn.exe) utility to resign the rewritten assembly. However in the Output pane of the VS 2010 I see: Microsoft (R) .NET Framework Strong Name ...
4
votes
2answers
183 views

How does signing with a strong name protect against forging a set of assemblies?

Signing with a strong name (keypair stored in a .snk file) is (among other uses) meant to protect against forging assemblies. For example: I ship my assembly signed with a strong name, then some ...
4
votes
1answer
323 views

.NET: Strong naming vs. Authenticode

Having read about strong names in .NET here, for example, I have the following question: We have an Authenticode code signing certificate with which we sign all our EXE, DLL and MSI files. The ...
4
votes
2answers
196 views

Strongly name three assemblies that reference each other

This is probably really easy, but I'm stumped (and I'm a noob with c#). I have 3 assemblies that reference each other (for example, registering for notification of a delegate method, or calling a ...
4
votes
2answers
508 views

What is the recommended way to manage a strong-name key pair for an open-source project?

I manage an open-source project and would like to sign the binaries that are released in the project's binary package. I use Visual Studio csproj and sln files to manage and build my project, and ...
4
votes
1answer
1k views

Is it possible to register a .net assembly as COM without strong naming it?

Ok, so i know how to strong name an assembly and regasm it, so I can access it from a an ASP page. By strong naming it, it can be placed in the GAC and thus be easily accessible from an ASP page. Is ...
4
votes
2answers
460 views

Strong name, Manifest, and Code Signing

What order should these be done in? I'm doing this from the command prompt for a .Net app. I was able to do just strong name and code signing successfully, but when I tried all three, it doesn't ...
4
votes
6answers
3k views

How do I find the fully qualified name of an assembly?

How do I find out the fully qualified name of my assembly such as: MyNamespace.MyAssembly, version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 I've managed to get my ...
4
votes
2answers
366 views

Do I need a new .snk keyfile for each version of a strong named library?

If I strong name a class library with a .snk file, do I need to replace this .snk file with a new if I create a new version of the same library?
3
votes
1answer
92 views

C# Application crash cause

I am investigating a crash happening in one of my applications: I have found out that it is because I am subscribing to the EventLog.EntryWritten event to monitor the event log for EntryWritten ...
3
votes
1answer
59 views

How to use StrongNameKeyPair with a password protected keyfile (pfx)?

I am trying to programatically sign an assembly using a password protected keyfile (pfx). However when I try to use the StrongNameKeyPair I get the following exception. Unable to obtain public key ...
3
votes
3answers
205 views

Any reason to ship .snk file with the project sources?

Every now and then I see a sample project on the network which contains a .snk file used for signing the compilation results with a strong name. AFAIK this is plain wrong - once a .snk file is ...
3
votes
1answer
338 views

Why is it possible to load types in an unsigned assembly from a signed assembly using reflection?

I have two assemblies A and B. A is strong named and B is not. According to MSDN I cannot reference B from A because a strong named assembly can only reference another strong named assembly. But ...
3
votes
2answers
218 views

Can I convert an assembly to a Strong-Named assembly without recompiling?

I found Microsoft KB article: But it looks like they want me to recompile after I have created a key pair. Is there any way to just convert the assembly to a strong named assembly without ...
3
votes
3answers
883 views

StrongNameKeyPair problem when attempting to use MoQ

I'm trying to create a mock HttpContextBase for unit test. var fakePrinciple = new GenericPrincipal( new GenericIdentity(userId), rolesList.ToArray()); var ...
3
votes
5answers
526 views

Validate Strong Name of Running Assembly

Is it possible for one to check the strong name of a .NET application that is already currently running separately from your own running applications process? EDIT: For clarification, a solution ...
3
votes
2answers
390 views

C# - Using strongname isn't protecting the assembly

I have signed my assembly with strong-name. I have done it from VS2005 Solution Explorer -> Assembly Right-click -> Signing. But still RedGate's .net reflector is able to browse through the code. ...
3
votes
1answer
1k views

Cryptographic failure while signing assembly '<assemblyname>.dll' – 'Bad Version of Provider'

I purchased an authenticode certificate from a well known provider. Now I want to strong name an assembly and later on digitally sign it. This is what I've done so far: Extracted public key from ...
3
votes
2answers
1k views

How to force WPF to use resource URIs that use assembly strong name? Argh!

O.k, this is really irritating, I had noticed previously that the code generated by WPF for loading XAML resources did not appear to use strong names and therefore may be problematic for scenarios ...
3
votes
3answers
1k views

C# Plugin Architecture with Strong Names: A Misunderstanding

I have a server executable that talks to Active Directory to retrieve user information. In addition to AD, this exe allows customers to write their own plugins to talk to custom user directories. ...
3
votes
2answers
2k views

Where is the Wrapper Assembly Key File setting in VS 2008?

I'm trying to build an application that is strongly named. It is referencing a COM interop library that I add via the Add References dialog. It's been a while, but I seem to recall that in older ...
3
votes
2answers
479 views

Can strong naming cause problems with object serialization in C#?

I serialize some configuration objects and store the result bytes within a database. new BinaryFormatter().Serialize(memoryStream, instance); Convert.ToBase64String(memoryStream.ToArray()); These ...
3
votes
3answers
1k views

Do I need to publish the public key from .snk file?

From the description of sn.exe utility and this question I see that a copy of the public key is added to every assembly signed with the strong name. This is enough to validate that the assembly binary ...
3
votes
2answers
733 views

How do you sign an assembly that was generated by an ILMerge operation?

I managed to use ILMerge to merge all the assemblies I have in my project into a single assembly, but the problem is there doesn't seem to be a way to sign the merged assembly. Is there some sort of ...
3
votes
1answer
1k views

how do i create a strong named interop dll for shdocvw.dll

I have a Browser Helper Object project in c# that (obviously) references shdocvw.dll. I think I want to create a strongly named interop dll for shdocvw.dll. How do I do this - I've seen a bunch of ...
2
votes
2answers
51 views

location of .snk file and management of it

I am currently setting up my .net libraries to be signed with a strongly typed key. I am using .snk file to sign my dll's on a per solution basis. So for each solution, it has its own .snk file. Is ...
2
votes
1answer
90 views

How to convert a strongname public key (snk) to <RSAKeyValue>?

I have a file testpublic.snk which holds a public key. I have created it with sn -p c:\test.snk c:\testpublic.snk. Now, how can I convert testpublic.snk to a string like ...
2
votes
2answers
218 views

How to create .Net assembly with strong name programmatically?

Is there a way to create a strong-named assembly using CSharpCodeProvider? Regards,

1 2 3