Tagged Questions
The sign tag has no wiki summary.
16
votes
3answers
295 views
What's the point of signing code, like jars?
What is the point of signing your code like Java's jars when everyone can do it with jarsigner?
How does it provide security?
12
votes
2answers
6k views
Signing a Windows exe file
I have an exe file that I should like to sign so that Windows will not warn the end user about an app from an "unknown publisher". I am not a Windows developer, the app in question is a screensaver ...
10
votes
4answers
2k views
Why should I sign my JAR files?
Why should I sign my JAR files?
I know that I need to sign my client-side JAR files (containing Applets) so that special things like filesystem access can be done, and so that the annoying bit at the ...
9
votes
3answers
223 views
Number.sign() in javascript
Wonder if there are any nontrivial ways of finding number's sign?
May be shorter / faster / more elegant solutions than the obvious one
var sign = number > 0 ? 1 : number < 0 ? -1 : 0;
...
9
votes
4answers
295 views
what's the meaning of %r in python
what's the meaning of %r in the following statement?
print '%r' % (1)
I think I've heard of %s, %d, and %f but never heard of this.
6
votes
1answer
7k views
How do you sign a Java Midlet?
A simple question with a fairly complicated answer:
How do you sign a Java Midlet so you can load it onto a mobile phone with less security prompts?
6
votes
17answers
3k views
Simplest way to check if two integers have same sign?
Which is the simplest way to check if two integers have same sign? Is there any short bitwise trick to do this?
5
votes
2answers
586 views
Creating a strongly-named managed (/clr) C++ assembly
I have a managed C++ assembly using the /clr switch that I am trying to sign as per this question with the following post-build step:
sn -Ra "$(TargetPath)" MyKey.snk
However this is giving the ...
5
votes
2answers
292 views
Can I compile an iPhone app on one computer and sign it on another?
Suppose my client doesn't want me to own his iPhone Distribution Certificate, is there a way I can send him the compiled app and let him adjust all App Id, Provisioning etc parameters, then sign and ...
4
votes
4answers
738 views
Fastest way to flip the sign of a double / float in C
What is the fastest way to flip the sign of a double (or float) in C?
I thought, that accessing the sign bit directly would be the fastest way and found the following:
double a = 5.0;
...
4
votes
2answers
439 views
How to efficiently compare the sign of two floating-point values while handling negative zeros
Given two floating-point numbers, I'm looking for an efficient way to check if they have the same sign, given that if any of the two values is zero (+0.0 or -0.0), they should be considered to have ...
4
votes
6answers
7k views
C++ What does the percentage sign mean?
I got this c++ macro and wonder what they mean by code%2 (the percentage sign) ?
#define SHUFFLE_STATEMENT_2(code, A, B)
switch (code%2)
{
case 0 : A; B; break;
case 1 : B; A; break;
}
4
votes
4answers
2k views
Euro sign in HTML
The euro (€) is the official currency in 22 European states.
In HTML there are different possibilities to display the sign €:
€
€
€
Which one would you use in HTML? ...
4
votes
2answers
4k views
Sign a jar file exported from Eclipse 3.5?
Is it possible to sign a jar file as you export it from Eclipse 3.5? Or a plugin to allow this to happen?
I can easily export a runnable jar, and sign it myself using jarsigner, but manually doing ...
4
votes
1answer
925 views
How to install an application signing certificate on a Motorola Phone?
Motorola phones do not have Verisign/Thawte root certificates for code signing. They only embed Java UTI certificate, that requires you to pay to sign your application for every phone model you want ...
3
votes
1answer
138 views
Why does AIR badge always say 'install' when I have already installed the AIR application?
I have developed an Adobe AIR application which users install and launch from my web page. I use the install badge to install the AIR app if it is not already installed on the users computer. Before I ...
3
votes
0answers
302 views
Providing private key for SGEN
My .NET assembly is signed with digital certificate from comodo. I use SGEN to generate serialization assembly. SGEN requires a key file in order to generate such assembly for a signed source. I tried ...
3
votes
10answers
148 views
Feedback on implementation of function which compares integer signs in Python
I've made a small function which, given a tuple, compares if all elements in this tuple is of the same sign.
E.g., tuple = [-1, -4, -6, -8] is good, while [-1, -4, 12, -8] is bad. I am not sure I've ...
3
votes
1answer
400 views
WCF general fault is encrypted where protection level is sign only
If a general fault is raised on my service endpoint the fault response is undesirably and unexpectedly encrypted.
I have created an endpoint with a custom binding for interoperability reasons with a ...
3
votes
3answers
479 views
C compiler flag to ignore sign
I am currently dealing with code purchased from a third party contractor. One struct has an unsigned char field while the function that they are passing that field to requires a signed char. The ...
2
votes
1answer
117 views
Is it recommended to Sign and Encrypt SAML AND use SSL?
Is it necessary to encrypt a SAML request if I am signing it with a my private key and sending it over SSL? Or would it be better practice to sign it using my private key, encrypt it using the ...
2
votes
1answer
48 views
How do I add a string to .attr('', '') value
I would like to add a value with this signs
_gaq.push(['_trackEvent', '', '', '']);
.attr('', '_gaq.push(['_trackEvent', '', '', '']);')
how do I print that into the variable into the attribute?
...
2
votes
1answer
130 views
How do you programmatically sign jar files in Java?
Has anyone done this before? The only reference I have found on google has been: http://onjava.com/onjava/2001/04/12/signing_jar.html which still uses sun.* classes that will cause issues...
Found ...
2
votes
5answers
186 views
How to get sign of a number?
Is there a (simple) way to get the "sign" of a number (integer) in PHP comparable to gmp_signDocs:
-1 negative
0 zero
1 positive
I remember there is some sort of compare function that can do this ...
2
votes
1answer
109 views
Sign string using given Public Key
how can I get the signature of a String using SHA1withRSA if I already have the Public Key as byte[] or String ?
Thanks.
2
votes
2answers
152 views
Sign or password any exe in c#
I have executables written in C#. I want to try this situation on my windows service. Normally we started the executable in our program using the code below:
Process process = new Process();
...
2
votes
0answers
100 views
JarSigner done within java?
Is it possible to use the JarSigner class to sign a jar file within java? Currently I am using:
String args[] = {"-keystore", keystore, "-storepass", password, jar, keyname};
JarSigner js = new ...
2
votes
2answers
85 views
Python: Pass inequality as string in dict for evaluation
I need to pass inequalities to a function for evaluation within the function. Is there a way to evaluation the inequality if passed as a string? Or must I pass a representation of the inequality and ...
2
votes
1answer
42 views
Benchmark the throughput of digital signatures primitives?
Is it meaningful to benchmark the throughput of digital signature primitives?
2
votes
0answers
103 views
Sign S/Mime message with Sha-1 and certificate in Delphi
Context: Delphi 2007
I am about to send an S/MIME message. There is a certificate which shall be used to sign the message. Also have a certificate which I guess includes the key(s) needed to do the ...
2
votes
1answer
1k views
Code Signing Identity does not match in my keychain, for mac app store developing?
1, I already download the "Apple Worldwide Developer Relations Certification Authority",and add it into my keychain.
2, My team leader already had created two Cers for Mac App store developing, I ...
2
votes
2answers
587 views
How to reference pound sign (#) in jQuery?
I've been trying a new way to set up a website using jQuery to dynamically get the content when a link is clicked. Here is the jQuery code:
$(document).ready(function() {
var content_loader = ...
2
votes
3answers
242 views
Compare sign of two doubles
What's the fastest way to compare sign on a double?
I know that a double has a "sign bit" but I'm not sure if the way I'm "looking for it" in its binary rep is a good idea or not.
Barring ...
2
votes
2answers
263 views
Add Currency Sign £, $ to certain fields ORACLE
I want to display the dollar or pound sign in my fields that hold job_salary any one knows? how to
2
votes
4answers
2k views
How to digitally sign a PDF(or another document) in Java?
What libraries can be used to digitally sign documents in Java?
2
votes
3answers
2k views
Can maven sign not only produced jar, but also dependencies
I managed to create main jar, copy dependencies to a single directory, the only step left is to sign all jars.
I can sign my own produced jar as a part of jar:sign, but how do i sign dependencies?
...
1
vote
1answer
44 views
Asp.Net C# x509 Certificate Creation and Installation
I have an online B2B app that needs to
Create a Certificate Request on the Client (Browser).
Generate the requested Certificate on the Server.
Return the Certificate + Private Key to the Client and ...
1
vote
1answer
30 views
Is possible PrintScreen or save in an image some part of the screen?
Is it possible? I need save the sreen and send from iPad to a WebService... Concretly the problem is that i want simulate a sign in the screen and later save this sign in a NSData and send by email.
...
1
vote
3answers
79 views
Sign check for NaN value
My program during calculation can generate nan or -nan values.
I check if the values are nan/-nan using isnan method.
I also have to distinguish if the nan value is positive or negative (nan or ...
1
vote
1answer
29 views
Using bit operation to determine if a int is a power of 2
I once encountered a method of determining if a number x is a power of 2 by doing the following:
X&(x-1) followed by a 0 test, if the result is 0 then it means there is only one 1 bit in the ...
1
vote
1answer
31 views
Accessing linkedin api without repetitive sign in?
I am new to linkedin api. I have a doubt regarding the api.
I am integrating the api in my application, so different user have to register in the linkedin to get the data using that api? Can it be ...
1
vote
1answer
90 views
Facebook Login/Register with my database
I have a website with my custom register system (really simple - username, password and e-mail).
I want to make Login with facebook as my new and only register/login system.
I want to put a login ...
1
vote
1answer
89 views
Why does Request.QueryString[“path”] converts all + signs to spaces?
I have a javascript code like this :
function OnRequestComplete(result) {
// Download the file
//Tell browser to open file directly
alert(result);
var requestImage = ...
1
vote
2answers
117 views
Wordpress and Drupal SSO/Single Sign On
I've made my front end website in Wordpress and this is fine for me, i want to create the member/staff area in Drupal as it has more functionality with Google docs and Mediawiki.
I was wondering if ...
1
vote
2answers
81 views
blackberry, how test on device
I develop an app in BlackBerry JDE 4.5, I use ksoap library too.
When I try to test the app in simulators, I need to Load two files:
ksoap2.cdo
MyApp.cdo
But... If I want to distribute for test in ...
1
vote
1answer
88 views
How To Sign a Jar File for an Applet?
Does Singing a Jar File For an Applet use the same process as signing a Jar file for an application?? If so, can someone tell me how to sign it? I have an Applet that writes to your APPDATA, kinda ...
1
vote
1answer
92 views
Digitally Sign tar.gz file
I need to digitally sign a tar.gz file, and have no idea how to do it. I understand the concept, and I know how to sign a jar/zip file. But I cannot find a way that will work with a tar.gz file.
Can ...
1
vote
2answers
256 views
Found unsigned entry in resource … .jar
I'm using Netbeans to compile and sign all my jars, all with the same certificate. However, when I run Webstart with Sun Java SE 6, I get the error Found unsigned entry in resource .. .jar.
I messed ...
1
vote
2answers
450 views
How to check if a file is signed in C#? [closed]
I'm writing a program that need to load a few other files.
is there a way to check if those files are signed or not, without right clicking them and check? I use 300-400 files that change every few ...
1
vote
1answer
66 views
GMP IMPORT/EXPORT
I have a problem with import/export GMP function.
I try to convert a negative and positive Big Integer but when i work with negative number
i lose the sign.
Are there example about it?
Export:
...