|
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 used WinVerifyTrust
-The DLL must have been signed with the....
Exe Now I have a DLL that has been signed with certificate ABC that:
-The DLL has been signed and that the signature is valid.
To code sign my DLL using signtool.
|
|
What's your guys take on signed a signed dunny? Do you like it more or less than a normal dunny? Would you pay more for it?
I am not talking about a custom dunny, but just a dunny in a serie and than signed by an artist later on.
Thanks!
Started by KidroboWizard on
, 14 posts
by 14 people.
Answer Snippets (Read the full thread at kidrobot):
I've got quite a lot of signed items from particular artists, but I tend to get them to sign it with my name where possible, since its for my enjoyment etc, not to increase its value, buying....
Or something, maybe a few extra $$ but not much .
|
|
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):
While you can create a self-signed code-signing (SPC) certificate in one go, I prefer to do the following:
Creating a self-signed -sv MyCA.pvk MyCA.cer
(watch for ....
It on machines where the devtools/sdk haven't been installed....
|
Ask your Facebook Friends
|
Players we could've signed, should've signed... ie. Players that have trained with us, but weren't snapped up, and moved on to bigger/better things.
OK Go...
- Matthew Spiranovic
- Paul Giannou
- Sasa Ognenovski
- Massimo Murdocca Originally Posted by...
Started by s3tTz on
, 15 posts
by 11 people.
Answer Snippets (Read the full thread at melbournevictory):
Would you change who we signed up until the end of season 5? I wouldn't with the exception.
Would you change who we signed up until the end of season 5? I wouldn't with the exception this thread.
This thread.
|
|
Are signed/unsigned mismatches necessarily bad?
Here is my program:
int main(int argc, char *argv[]) { unsigned int i; for (i = 1; i < argc; i++) { // signed/unsigned mismatch here } }
argc is signed, i is not. Is this a problem?
Started by Rosarch on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Bad things can happen....
When comparing two values of the same base type, but one signed and one unsigned, the signed value indirectly a problem.
In your question, you are asking about comparisons.
signed/unsigned mismatches" can be bad.
|
|
Does anyone know where I can get an inexpensive Java code signing certificate? Everywhere I look wants $200 to $300 per year! Unfortunately I cannot use a self-signed one, I'm trying to get rid of the scary warnings so that users will be more likely to...
Started by davr on
, 7 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
If it isn't, then it will warn the users.
How is in this file, then Java will not complain about the signed code.
I don't know if they are different than what you use to sign Microsoft based stuff.
About Java.
|
|
How would you write (in C/C++) a macro which tests if an integer type (given as a parameter) is signed or unsigned?
#define is_this_type_signed (my_type) ...
Started by botismarius on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
#include <limits> std::numeric_limits<int>::is_signed - returns true std::numeric_limits<unsigned int>::is_signed - returns is a simple macro, this should ....
In C++, use std::numeric_limits<type>::is_signed .
|
|
When a compiler finds a signed / unsigned mismatch, what action does it take? Is the signed number cast to an unsigned or vice versa? and why?
Started by Neil on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you look at the Question " Should I disable the C compiler signed/unsigned mismatch warning? " you see that in case of "litb" the variable the signed-var got of bits used to represent the unsigned type).....
It could be compiler-specific.
|
|
I ask because I have an unsigned jar that runs and a signed version that doesn't. Looking at the manifests, I see no main class thing for the signed one.
Do I have to run a signed jar from web start?
Started by William on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Myjar.jar MyClass
you need to sign your jar to run outside of the web start sandbox
google here.
|
|
Is it safe to convert, say, from an unsigned char * to a signed char * (or just a char * ?
Started by Dave17 on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
I've seen it go wrong in a few....
Number once the pointer is converted to a signed char* and you dereference it.)
It depends on how you expected, so just make certain that what you have in your unsigned array is valid for a signed array.
|