Tagged Questions
The signature tag has no wiki summary.
17
votes
5answers
5k views
How do you verify an RSA SHA1 signature in Python?
I've got a string, a signature, and a public key, and I want to verify the signature on the string. The key looks like this:
-----BEGIN PUBLIC KEY-----
...
15
votes
2answers
2k views
Android in-app purchase server signature verification using php OpenSSL
In an attempt to follow some of the security guidelines for in-app purchase here:
http://developer.android.com/guide/market/billing/billing_best_practices.html
I am trying to do signature validation ...
11
votes
1answer
389 views
How can I access Amazon AWS S3 using GSOAP for C and C++?
I have searched everywhere for this and I could not find a single decent code. How can I access Amazon AWS S3 service using GSOAP?
11
votes
7answers
8k views
Is there a library for iPhone to work with HMAC-SHA-1 encoding
For all operation with Amazon services(S3, EC2, SimpleDB) You need to sign all resquest with HMAC-SHA-1 Signature(http://en.wikipedia.org/wiki/HMAC , ...
9
votes
6answers
274 views
How can I create a repeatable signature of a data structure?
I have a situation where I want to create a signature of a data structure:
my $signature = ds_to_sig(
{ foo => 'bar',
baz => 'bundy',
boing => undef,
number => ...
8
votes
1answer
132 views
Const-Qualification of Main's Parameters in C++
The C++ standard mandates that all conforming implementations support the following two signatures for main:
int main();
int main(int, char*[]);
In case of the latter signature, would the addition ...
8
votes
5answers
2k views
what is the difference between function declaration and signature?
In C or C++ what is the difference between function declaration and function signature?
I know something of function declaration but function signature is totally new to me. What is the point of ...
7
votes
1answer
134 views
verify signatures of downloaded pom/jar files
I was trying to find if there is SSL enabled central repository but there probably isn't. I noticed that there are signatures for every jar and pom file in maven central repository. So at least I'd ...
7
votes
1answer
457 views
In-app purchase signature verification with PHP openssl
In an attempt to follow some of the security guidelines for in-app
purchase here:
http://developer.android.com/guide/market/billing/billing_best_practices.html
I am trying to do signature ...
7
votes
2answers
392 views
how to manage debug and release version on android device?
I'm new to Android dev and I'm almost ready to release a first version of my app :)
While testing the signed release apk on my phone, it refuse to install because the debug version is installed with ...
7
votes
7answers
1k views
Main's Signature in C++
The standard explicitly states that main has two valid (i.e., guaranteed to work) signatures; namely:
int main();
int main(int, char*[]);
My question is simple, would something like the following ...
7
votes
3answers
21k views
How to Embed Image in Outlook Signature?
Is it possible to create an HTML email signature for Outlook 2003 or above that doesn't reference external images?
That is, using those special "cid" reference but embed the image itself in the ...
6
votes
2answers
313 views
How to get the signature of a C++ bind(…) expression
I am trying to write a metafunction named signature_of which, given the type of a function (pointer), functor, or lambda, returns its signature.
Here's what I have so far:
#include ...
5
votes
1answer
924 views
How to view the identity of person who signed the apk on Android device?
I need to view who signed the application I have installed onto my device. Is this generally possible to do on the device or on PC?
5
votes
2answers
232 views
signatures/types in functional programming (OCaml)
I started learning functional programming (OCaml), but I don't understand one important topic about fp: signatures (I'm not sure if it's a proper name). When I type something and compile with ocaml, I ...
5
votes
2answers
200 views
public List<(Of <(<'T>)>)>..::..Enumerator?
I'm looking at the MSDN docs about List.GetEnumerator.
They say the C# method signature is:
public List<(Of <(<'T>)>)>..::..Enumerator GetEnumerator()
I was expecting this much ...
5
votes
4answers
4k views
How to verify a jar signed with jarsigner programmatically
I'm wanting to sign a jar using jarsigner, then verify it using a Java application which does not have the signed jar as part of it's classpath (i.e. just using a filesystem location of the jar)
Now ...
5
votes
2answers
948 views
How to send signed emails from java?
What APIs/Libraries do you recommend for sending signed emails from Java code? What are the requirements on our company's SMTP-Server to make it transport these signed mails, if any?
We already hava ...
4
votes
1answer
168 views
PHP: Problems with Microsoft Exchange, no have body of email in PHP
I have a litte problem with imap_fetchstructure, Microsoft SMTP Server (?) and signed mails by application/pkcs7-signature. Normally when I send signed email to gmail server I don't have any troubles. ...
4
votes
2answers
70 views
What is the difference between “descriptor” and “signature”?
I am now using ASM (Java bytecode instrumentation library). To retrieve the signature of given method, there is a field which is named "desc". I guess this is an abbreviation of "descriptor", but why ...
4
votes
1answer
179 views
Before signing a mac app and uploading it to the app store
I've been dealing with an issue for a while. The issue is that when I submit my mac app to the app store I'm always getting invalid binary and they are saying it's because of an invalid signature. And ...
4
votes
1answer
175 views
OCaml interface vs. signature?
I'm a bit confused about interfaces vs. signatures in OCaml.
From what I've read, interfaces (the .mli files) are what govern what values can be used/called by the other programs. Signature files ...
4
votes
1answer
726 views
Foursquare user check in V2
I am using Foursquare's v2 to allow a user to sign in to a given venue. I am trying to sign the request, but so far I am getting the following
u'meta': {
u'errorType': u'param_error',
u'code': ...
4
votes
5answers
254 views
I need an API. Where should I start?
I'm building a PHP application from scratch (using Kohana3 framework). I'm going to architect it so that I can use an API to access the data internally. At the same time, I want to eventually offer it ...
4
votes
2answers
63 views
Including two signatures, both with a 'type t' [Standard ML]
A contrived example:
signature A =
sig
type t
val x: t
end
signature B =
sig
type t
val y: t
end
signature C = sig include A B end
Obviously, this will cause complaints that type t occurs ...
4
votes
2answers
2k views
SAML: Why is the certificate within the Signature?
I have to implement SSO with SAML for my company's website (as the relying party). An essential part off course is the verification of the signature. Here is the signature part of a sample SAML from ...
4
votes
2answers
7k views
Using a PEM (X.509) private key to sign a message natively
I'm trying to use a PEM(X.509) certificate (stored in a privateKey.pem file on disk) to sign messages sent via sockets in Java, but am having a lot of trouble finding an example that's close. I'm ...
3
votes
2answers
40 views
Define recursive signatures for modules
I know that it is possible to define recursive modules, does anyone know how to define recursive signatures? For instance, I would like to realize:
module type AAA = sig
module Bbb : BBB
type 'a ...
3
votes
1answer
57 views
Validate signed PDF with PHP
I have PDF file with digital signature. Also i have certificate (public accessed).
How can i check with PHP signature of this PDF file (to be sure that signature is correct)?
3
votes
1answer
69 views
Java collections. add(E obj), but remove(Object obj) [closed]
Possible Duplicate:
Why aren't Java Collections remove methods generic?
I have a question about signature of java functions declared in Collection.
The question is: why signature of ...
3
votes
6answers
135 views
C++ Function Callbacks: Cannot convert from a member function to a function signature
I'm using a 3rd party library that allows me to register callbacks for certain events. The register function looks something like this. It uses the Callback signature.
typedef int ...
3
votes
1answer
87 views
SML: What's the difference between using abstype and using a signature to hide the implementation of a structure?
I've done a little work in SML in the past, but I'm now starting to get to the more interesting parts.
Using the abstype...with...end construct, I can make things but keep their implementation ...
3
votes
1answer
265 views
Android In-App Billing : Security.java says “Signature Verification Failed”
I have implemented a test app with Android's In-App Billing. I have filled in my Public Key in the Security.java file. Everything works, but when I submit the payment, the app crashes. I receive an ...
3
votes
5answers
242 views
Simple way to implement public-key cryptography in C++?
I want to be able to sign a file. By that I mean that the recipient can check that the file is indeed from me and can view its content. Is there any simple way to do that in C++?
I just had a look at ...
3
votes
2answers
525 views
3
votes
5answers
349 views
Type-signature vs. function equation in Haskell
I'm new to Haskell and to functional programming. I'm reading through Real World Haskell, and I've realized I'm confused by a few examples.
Specifically this is in Chapter 9, in the section "A ...
3
votes
4answers
1k views
How to produce XML signature with no whitespaces and line-breaks in Java?
I work with the brazilian "Nota Fiscal Eletronica" project, in which they define a standart way to sign XML documents.
Recently, they started to require that there are absolutely no whitespaces ...
3
votes
1answer
328 views
Allow signing of pdf using iText
I'm trying to allow signing for a pdf using iText and Java. I'm not interested in actually signing it, just enabling the "Signing" flag as seen in the image below. Also, I don't need the signing to ...
3
votes
4answers
1k views
Get timestamp from Authenticode Signed files in .NET
We need to verify that binary files are signed properly with digital signature (Authenticode). This can be achieved with signtool.exe pretty easily. However, we need an automatic way that also ...
3
votes
3answers
3k views
XML Signature: How to calculate the digest value?
I have an XML like this
<?xml version="1.0" encoding="utf-8"?>
<foo>
<bar>
<value>A</value>
</bar>
<bar>
<value>B</value>
...
3
votes
0answers
68 views
How do I generate a signature for a settle request in Amazon FPS Marketplace?
The documentation is really awful, and while creating a button to reserve a credit card payment is fairly straightforward, being able to release that payment is a pain. I'm having most trouble with ...
3
votes
4answers
1k views
How to sign a custom JCE security provider
Sun's PKCS11 JCE security provider is lacking some functionality we need.
So I wrote an enhanced version of it using the original sources.
Unfortunately the JCE infrastructure rejects the new ...
2
votes
2answers
23 views
Android - Keystores, In-App purchasing, and outsourced development
I am currently having an Android application developed by an outside third party. We are at the point where we are ready to implement/test In-App purchasing, but in order to proceed with that we must ...
2
votes
1answer
59 views
Can't verify signature after reading signed file
sign.verify(signature) returns false in the verifySignature method; and I think it has something to do about how I use outputstreams and inputstreams with the signedobject.obj file (certificate passed ...
2
votes
5answers
78 views
Java. Howto change methods signature
Is it possible to change a methods signature in Java depending on the parameter?
Example:
Given a class, with a generic parameter MyItem<T>.
Assume this class has a method, which returns T
...
2
votes
1answer
95 views
Sign a multipart mail using PGP/MIME
I'm trying to sign a mail using PGP in php. I could bring the boundaries and headers to work correctly but the mail signature isn't valid (as Thunderbirds Enigmail states).
My question here is what ...
2
votes
1answer
189 views
Get SSL certificate details
I want to examine the SSL certificate that -(void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge receives and I have the following ...
2
votes
2answers
96 views
Haskell: Types don't match
I just tried to write a simple function to calculate the average of the input-Ints:
avg :: Int -> Int -> Int -> Float
avg x y z = (x+y+z)/3
When I exchange the signature to
avg :: Float ...
2
votes
1answer
164 views
Xcode 4 'invalid signature' error
I have developed a mac app, and am trying to upload it to the mac app store, but am running into difficulties. Every time i try and submit or validate in Organiser, it comes up with the following ...
2
votes
0answers
129 views
PADES-LTV Document timestamp verification error
I am signing a pdf document in PADES-LTV signature format with a Document timestamp signature.
Usually, signed files are OK. Both signature and document timestamp signature is verified and everything ...