|
How do I create a self-signed certificate for code signing using tools from the SDK?
Started by Roger Lipscombe on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can now use this certificate for signing code:
signtool sign /v /f PVKIMPRT or the MMC....
Code-signing (SPC) certificate in one go, I prefer to do the following:
Creating a self-signed a PFX file with no passphrase.
|
|
Hello,
How do I use Single Sign on with Kerio Winroute Firewall?
Thanks
Started by Josh on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
So,In my opinion atleast,there is no single sign on feature in KWF.They claim.
As of today,the version they have has a feature called NTLM (browser for firefox from the server .
NO support for single sign on.
|
|
How do I create a self signed SSL certificate for an Apache Server to use while testing a web app?
Started by ScArcher2 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Faq.html#selfcert
How do I create a self-signed SSL Certificate for testing purposes?
Make sure OpenSSL.
|
Ask your Facebook Friends
|
I'd like to use TLS encryption with Virtual Machine Remote Control (VMRC) for Microsoft Virtual Server 2005 SP1.
Virtual Server doesn't allow you to upload an arbitrary self-signed certificate; it generates a certificate signing request (CSR) that then...
Started by Roger Lipscombe on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Provided.
JR
OpenSSL is pretty comprehensive I'd be surprised if it can't do what you need.
Of Windows ...
|
|
On my site i would like to sign in with a google account. I plan to use openid but i would like to see signing in with google has more benefits. I notice in the past a few sites has the ability to sign in with a google (gmail) account and IIRC they all...
Started by acidzombie24 on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Google....
If you plan to use OpenID, use that.
I think what you want is Google Friend Connect
You can look into openId ( http://openid.net/ ) which is what SO uses, and is supported by Google .
I believe what you're looking for is the Google Accounts API .
|
|
Hi,
I have a PHP Object with an attribute having a dollar ($) sign in it.
How do I access the content of this attribute ?
Example :
echo $object->variable; // Ok echo $object->variable$WithDollar; // Syntax error :-(
Started by kevin on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
The dollar sign has a special.
$object->getProperty('variable$WithDollar');
You don't.
Thanks to your answers, I just found out how I can do.
Then go and chop off their fingers.
|
|
I'm not very experienced with builds - this may be really easy! I have a simple application with a simple deployment project. I went to the directory where the release-compiled versions of the DLLs are, signed all of them (verisign), and then went to ...
Started by CindyH on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To do this is to add a dummy project that has a build event that signs your assemblies.
|
|
Our product is halted at Java version 1.5.0_13 and we would like to upgrade. Our software deploys a large number of jars via Java Web Start; all of these jars must be signed. However, a couple of the jars do not contain class files, and starting with ...
Started by skiphoppy on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
C:\temp>jarsigner -signedjar test.
It's a long shot, but the SignJar Ant task might be able to convince jarsign to do the right thing%)
Let's sign the jar: I'm using a self-signed certificate.
|
|
I have created a self generated certificate to sign a DLL. When I load this DLL into my C++ application I am able to validate if the code signing certificate is valid or not by using the WinVerifyTrust api.
But I am not able to find a way to detect that...
Started by Arkonis on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I am puzzled how to code sign my DLL ....
Now the part I do not understand: How canCryptVerifyCertificateSignature isn't what you want?
Thank you for your reply.
Have been signed with the ABC certificate provide by me.
|
|
Let's suppose I have a sign-in form. When I sign in successfully I am redirected to the logged in home page. Currently, when I close this page without signing out, and re-open Firefox, this logged in home page is started again.
I want it so that when ...
Started by Deepak Narwal on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You cannot catch.
You may want to read this:
http://stackoverflow.com/questions/520237/how-do-i-expire-a-php-session-after-30-minutes
Set your session timeout to 15 minutes, this should do the job.
|