|
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.
|
|
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....
|
|
Please help! Any one knows how to multiply signed 64bit X signed 64 bit number in ARM using C or assembly ,
I input the two numbers as: long long int x,y;
Started by ahme0307 on
, 13 posts
by 5 people.
Answer Snippets (Read the full thread at edaboard):
Also the output value (122 bit plus sign) need.
Enter the 64bit number as string and then traslate it .
|
Ask your Facebook Friends
|
Hello everyone! I am with RAINN (Rape Abuse and Incest National Network), the nation's largest anti-sexual violence organization, and I wanted to let you know that RAINN is currently hosting a celebrity auction! Up for grabs are two pieces of White Collar...
Started by RAINNjj on
, 11 posts
by 9 people.
Answer Snippets (Read the full thread at usanetwork):
Everyone....
Paraphernalia that can be yours! The first is a White Collar poster, signed by the entire cast, and the second is an actual piece of the White Collar set, signed by the cast members! Both are up it to my framer and have it done.
|
|
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.
|
|
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 .
|
|
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.
|
|
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.
|
|
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.
|
|
I am using asin to calculate the angle. The code is as below :
double FindAngle(const double theValue) { return asin(theValue); }
FindAngle returns a -0.0 (signed zero), when the argument theValue = -0.0. Now, how do i get rid of the minus sign from the...
Started by ratnaveer on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Abs function (c++ reference)
If you just want....
Include <cmath> and use the abs function on your return value, if you want all results to be positive, or check if your return value is equal to -0.0 and take the abs value of it, for just that case .
|