Tagged Questions
The assembly-signing tag has no wiki summary.
11
votes
5answers
728 views
Signing of .NET Assemblies
What does digital signature have to do with strong named assemblies. I read that a strongly named assembly has public key and digital signature with it.
Reference:
Signing the assembly involves ...
9
votes
3answers
2k views
Is there an easy way to sign a C++ CLI assembly in VS 2010?
Right now I am setting the Linker/Advanced/KeyFile option.
I am getting the "mt.exe : general warning 810100b3: is a strong-name signed assembly and embedding a manifest invalidates the signature. ...
7
votes
2answers
1k views
How to declare a friend assembly?
I have 2 projects in my solution:
Assembly (Basic Library)
Test Assembly (NUnit)
I had declared the test assembly as friends assembly in first project:
[assembly: InternalsVisibleTo ...
6
votes
2answers
125 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
506 views
Do I need to secure my strong name key file for an open-source project?
I'm creating a starter kit that installs the compiled assemblies from an open-source project into the GAC to make it easier to reference the assemblies in the template. Since they're going in the GAC, ...
5
votes
1answer
202 views
signing assemblies with a strong name, ok, but what if some 3rd party DLL isn't signed?
I understand the basic idea behind signing assemblies but have a problem when using Telerik or 2rd party DLLs.
I have an .exe that uses 2 of my own .DLLs, the DLLs in turn make use of the Enterprise ...
5
votes
3answers
138 views
Releasing class library source, without signing key file, but unit-tests requires access to internal classes, what to do?
The situation is as follows:
I want to release the full source to a class library
I want to release binaries as well, signed by me, with a key file I don't want to publish
I will provide batch ...
5
votes
3answers
756 views
Best practices for signing assemblies with multiple projects and developers
I’m looking for recommendations and best practices for applying signed assemblies in an organization with 30+ developers, 20+ solutions and 60+ projects. We’re using Visual Studio Team System 2008 and ...
4
votes
3answers
315 views
Pros/Cons of strong-named/signed assemblies
We have a solution with many projects in it (probably 20 or more). Recently we've made some changes that require a couple of those assemblies to be callable from COM, which means we need to ...
4
votes
2answers
240 views
Problems signing a dll in F# on Mono
I'm getting an error trying to sign a dll in F# on mono:
$ mono /usr/local/share/FSharp-2.0.0.0/bin/fsc.exe\
--target:library \
--keyfile:../../external/MyKeyFile.snk\
AssemblyInfo.fs\
...
4
votes
2answers
462 views
How might I strongly sign an external DLL while retaining its assembly metadata?
I have a few libraries I use in my project that are unsigned. Because my application is strongly signed, the libraries must be as well.
I sign these libraries using:
"%PROGRAMFILES%\Microsoft ...
4
votes
3answers
963 views
c# - can you make a “weak” assembly reference to a strong named assembly
For various reasons i would rather not use strong named (signed) assemblies in my project. however, one of the projects is referenced by a sharepoint web part which means it must be signed.
is it ...
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
453 views
When should you protect a strong name key file with a password?
In the visual studio project settings you can choose a strong name key file for signing the assembly. When creating a new one you can choose to protect it with a password. When should you do this? And ...
4
votes
4answers
1k views
How I do a sign an assembly that has already been built into a dll specifically flute.dll
The reason I want to sign the dll is because I want to add it to the Global Assembly Cache. The assembly is a css parsing engine written in Java and ported to J#. I use VS2008 so I can't make J# ...
3
votes
1answer
113 views
Why isn't my C++ assembly signed?
I have a C++ project, set to /clr, which is referenced by C# projects in the same solution. Unfortunately, it seems the C++ doesn't get properly signed, leading to the error message "assembly doesn't ...
3
votes
1answer
60 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
2answers
844 views
What is the 'module name' when using al.exe to sign an assembly with a strong name?
I am trying to sign an assembly with a strong name by following the guide from here: http://msdn.microsoft.com/en-us/library/xc31ft41.aspx
The key instruction is:
al /out:<assembly name> ...
2
votes
3answers
923 views
How to programmatically verify an assembly is signed with a specific Certificate?
My scenario is we have one program (exe) that will start other programs if found in a particular folder. I want to ensure it only ever starts programs which are signed with our Corporate certificate ...
2
votes
1answer
555 views
difference between signtool and sn or al for assembly signing
I see tool like SN which generates private/public key pair for signing an assembly.
and using AL tool we can assign a strong name to an assembly
And we have also Sign tool which is used for signing ...
1
vote
1answer
55 views
Using Codebase to load assembly
Based on this question, I tried using <codebase> to locate an external assembly. Now, when I run the program, I get an error message saying that the private assembly was located outside the ...
1
vote
2answers
109 views
Only sign assemblies with strong name during release build
The scenario is: I'm building my solution with TeamCity, I'm not running the build account as an administrator; so I get problems with the strong name keys.
I know of a few solutions out there, like ...
1
vote
1answer
196 views
How to convert .snk file to .pfx file
How does one convert a .snk file (for strong-name signing .NET assemblies) into a password protected .pfx file suitable for the same purpose?
Edit: to clarify, suppose I create a project in VS and in ...
1
vote
1answer
22 views
Does the existence of a “strong name assignment” should ensure that the assembly is stored in GAC?
If I say, 'The existence of a "strong name assignment" ensures that the assembly is stored in GAC' would I be correct in terms of best-practices?
If I rephares it differently: No strong name should ...
1
vote
1answer
59 views
creating own certificate for signing the assembly
I have created an assembly and signed it with strong name.
I need to create my own certificate to sign my assembly and I need to display the certificate and the signature.
Please give me some ...
1
vote
1answer
46 views
When publishing official releases of open source .NET projects, should I use one signing key for all libraries, or one key per library?
I have a few open source libraries on CodePlex, and I intend to publish more when I have them at a stable and useful state.
I add a development signing key to the projects repository so that anyone ...
1
vote
1answer
179 views
signing unsigned interdependent third party libraries
My project uses a set of unsigned third party libraries (compiled in .Net 2.0). I already know how to sign these libraries using ildasm and ilasm. However, the problem is that the thirdparty libraries ...
1
vote
1answer
261 views
Why 'strong name key file' is copied into project?
I want to sign one assembly in my project (to be used by another team). From my experience, soon I will need to sign other projects too and I want to sign them all with one file.
I have done the ...
1
vote
0answers
100 views
ClickOnce Strong-Name dependency signing
I have a windows application that that a lot of dependant DLLs.
When I publish this application it returns an error for one of the DLLs that it must be strongly signed in order to be marked as a ...
0
votes
0answers
48 views
Can't step into signed assembly with no password set
In VS2010, when I tell a project to be signed with a key file, but DON'T check the "Protect my key file with a password" box (so a .snk file is generated), I can't step into any code in that assembly ...
0
votes
3answers
76 views
risks of signing application assemblies
We consider to put one of our assemblies in the GAC for the purpose of versioning.
This means this assembly must be signed and each other assembly it uses (e.g. 3rd party) must also be signed. Only ...
0
votes
1answer
195 views
How to get Container name for PFX key?
Some time ago I installed my PFX key into Container using command like this:
sn -i mykey.pfx VS_XXX
but two months later I forgot the Container name (VS_XXX), so my question is:
How to get than ...
0
votes
0answers
141 views
Compiling a .NET project under a different account fails at the signing step
I have a projects that compiles fine under the logged in account. Now, I have opened a console window under a different account using runas and try to compile from there. Compilation fails with the ...
0
votes
2answers
54 views
Digitally signing an executable, trusting its requests on the server
I'm building a cross-platform app that will communicate with the server. Security is very important.
Is there a scheme that will allow me to "trust" that the executable is genuine and hasn't been ...
0
votes
1answer
636 views
Deleting a digital signing certificate (.PFX file)
I previously installed an incorrect .PFX file to sign assemblies. I now need to remove this in order to correct a build error. Is there anyway to remove the invalid signing certificate? I've tried ...
0
votes
1answer
101 views
Need help understanding assembly signing process
I have a .NET assembly that I am signing. Here is my understanding of the process and related question.
For signing assemly, compiler performs a one way hash of assemnbly and then encrypts the hash ...
0
votes
1answer
89 views
I modified NHibernate; how can I get Castle to use a different-keyed NH assembly?
I made a change to NHibernate 2.1.2, and as such have been doing battle with .NET and strong assembly names. I've set up a ResolveEventHandler to load my version of NHibernate, which I've signed, ...
0
votes
1answer
75 views
Use application signing to control the execution
I have a .NET application (.exe C#) that calls different DLLs (C# DLLs and C++ DLLs) - I have their source code to recompile ...
Now, my goal is to sign my application (exe + dlls) with a
certificate ...
0
votes
1answer
255 views
Be careful with version numbers for loading signed assemblies
I've spent an hour debugging this, and I finally eliminated the PEBCAK issue.
I have an internationalized application. A key part of the application uses reflection to load types from configured ...
0
votes
1answer
163 views
Intergrate a non-signed assembly into an existing application
I have a problem which I'm pretty sure that I can't solve without going back to the vendor, but I thought I would float the problem here first.
Anyway, I have an assembly from a 3rd party that I have ...
0
votes
1answer
103 views
Do I need to sign my assemblies for an asp.net mvc app?
If I'm deploying an asp.net mvc app, do I need to sign my DLLs? They won't be placed in the GAC.
0
votes
1answer
101 views
Error calling ctor of signed COM .Net DLL
if've got a problem with a sigend .Net COM DLL and I try to call the ctor of this class in VB6 but it only works on my machine, but not on the other developer machines. The error is 0x80131534.
The ...
0
votes
1answer
307 views
Remove signing of dll in Visual Studio with script
We have a C# solution with ca. 55 projects, including test projects.
Since part of the project is sharepoint all dll's are signed.
We would like to run unit tests with code coverage. We then get the ...