The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
12 views

Trying to update a Samsung store app - getting error “The signing key is invalid. Please check the signing key of the binary”

We are building an update Android apk using Corona SDK - with the Target App Store set to "Samsung". We are definitely using the same keystore file that we used to sign the original build. I've used ...
2
votes
0answers
32 views

Sign JAR programmatically

I want to sign JAR with my code and WITHOUT keystores - using only private user's key (because I have really a lot of users and keys). I've found the same question, but it uses keystores, and I want ...
0
votes
0answers
13 views

How to I recover my certifiates for signing a Mac Java application

So although I didn't fully understand it at the time last year I set up a Mac Developer account, generated some certificates and signed my standalone non appstore application. At build time I just do: ...
1
vote
0answers
29 views

Testing Titanium's In-App Billing module for Android

Does anyone know how to properly test live android in app purchases in titanium debug mode? Previously, I was successfully able to test live in-app purchases and create real transactions when ...
0
votes
1answer
15 views

Will signing my code with a code signing cert allow my app to run in normal permissions mode?

I have an application that needs to run in normal (non elevated) permissions to allow drag and drop from windows explerer with the UAC on in Vista, Win7 and Win8. Can anyone please tell me if ...
0
votes
1answer
12 views

Unable to sign text block with Private Key

I am trying to create a digital signature of a load of clipboard text. I am: Creating a SHA-256 hash of the plain text. Encrypting this hash with my PRIVATE key. Attempting to decrypt this with my ...
0
votes
0answers
15 views

WCF web service using WS-Security without signing

Can anyone please tell me how to expose a WCF web service with WS-Security so that it adds a timestamp, but without the signing that comes with it. I've tried all the config file options I can think ...
0
votes
0answers
32 views

Steps to Create a Signed Desktop App for Windows 8?

I have a desktop application that I created for nopCommerce. One of the features is to allow users to drag and drop images from windows explorer into my app, and the images are uploaded to the ...
0
votes
0answers
19 views

Signing assemblies with pfx in TFS

Has anyone experience with PFX on TFS cloud environment (tfs.visualstudio.com)? I get error: C:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets (1970): Cannot import the ...
0
votes
0answers
42 views

Signed WIX Bootstrap EXE can't use taskkill in custom action

We are using Wix to sign and create MSIs, and then bundle them into a signed EXE. The MSIs are generated fine. Each MSI contains a command to run at the end to kill the application. In the standard ...
0
votes
2answers
55 views

How to sign a Zip file like i would sign an assembly?

I have a Zip file containing signed .net assemblies, is it possible through a tool to sign not code but a zip file containing those too? I'd like to be able to work with this on the code side saying ...
1
vote
4answers
139 views

How can I add private key to the distribution certificate?

Well, I've got my Developer Certificate linked with it's private key. Works Fine. I've donwload my iOS Profile of distributor, but it says Valid signing identity not found. So I checked my ...
0
votes
1answer
38 views

How to sign maven publications with gradle

Have such build.gradle script that uses new publishing plugin: apply plugin: 'java' apply plugin: 'groovy' apply plugin: 'signing' apply plugin: 'maven-publish' // ... publishing { publications ...
0
votes
1answer
86 views

How do I get user profile using Google Access Token

i'm testing getting user information by google access token http://www.mawk3y.net/glogin after clicking sign in button i get redirected to ...
0
votes
0answers
8 views

Can a NuGet package configure a project to use a signing key?

I have created a NuGet package to hold numerous common files across all of our internal projects. One of the items in the package is our signing key. While I can install the key in the correct place ...
0
votes
0answers
72 views

“No code signature found” error when code signing is off xcode

I am trying to put an xcode project on my ipod 2, I've had to downgrade the app which I've done successfully, I have disabled code signing on everything that needs it disabled, my ipod is jailbroken ...
0
votes
1answer
23 views

how do I get iphone public key access?

So, my company has an iPhone app. We are publishing the API to our server, and we need to authenticate the client app (not the user, we want to know if this is the iPhone app that it claims to be). ...
2
votes
1answer
56 views

Why does RSACryptoServiceProvider.VerifyHash have a “hash algorithm identifier” parameter?

Since RSACryptoServiceProvider.VerifyHash verifies an already hashed message - why does it need to know which hash algorithm was used? When asking about the SignHash method , it was suggested that ...
1
vote
1answer
45 views

Why does RSACryptoServiceProvider.SignHash have a “hash algorithm identifier” parameter? [duplicate]

Since RSACryptoServiceProvider.SignHash signs an already hashed message - why does it need to know which hash algorithm was used?
0
votes
1answer
1k views

Parse Error : There is a problem_ parsing the package(after signing the Android application)

I am getting the Parse error after downloading and while installing the apk file of my app on Android phones. Before signing the app works fine on device. Signing done from Eclipse Export wizard ...
0
votes
1answer
32 views

How to sign in once in an android application?

i'm making an app in android, it has more than one option in the menu, and the login information is needed to proceed in every option, so i want to make the user sign only once not each time he's ...
0
votes
1answer
67 views

Building Windows Store app programmatically

We have a requirement of creating several Windows 8 apps for tablets. There is a common solution and news apps are created by passing different resource to the same code. For Mobile it was a cakewalk ...
1
vote
3answers
438 views

Determining if a file has a digital signature in c# without actually verifying the signature

Is there a simple way to check if a digital signature exists on a file without trying to verify the certificate it was signed with? I want to sign a long list of exe & dll files in a directory, ...
0
votes
0answers
101 views

Java Digital Signatures - Inconsistent Signature

I've been using the Java security api and was following the tutorial on how to generate digital signatures: http://docs.oracle.com/javase/tutorial/security/apisign/gensig.html The problem is when I ...
1
vote
1answer
62 views

Authentication using GPG

I've been reading about authentication, both in-band and out-band. I know one can sign his/her own GPG key and then others can verify the signer using their fingerprint. I also read GPG key signing ...
0
votes
0answers
19 views

if user is not signed in twitter, ask user to sign in

I am developing a simple app for twitter. I actually want to know if user is signed in or not. If he is not signed in i have to redirect to sign in page of twitter. Can you help me please?
0
votes
1answer
80 views

Do I need a Mac Device to have a 'signing key'?

I am developing mobile application on PhoneGap. I do not have a 'signing key'. But in case, if i pay $99 to get a Apple Developer account, do I need to have an MacOS computer to develop phonegap ...
0
votes
2answers
49 views

Create my own intermediate cetification authority from commonly trusted certificate

I have a simple question (maybe stupid) and i didn't find any clear answer to it. If i get a certificate from a trusted signing company (like verisign...) for one of my server (web for instance), i'll ...
0
votes
1answer
44 views

Url signing in from PHP to Python

I'm very new to Python and I'm working with an API which recently started required url signing. I have been advised that in PHP this code which will sign the url look like this: function ...
1
vote
1answer
74 views

Subprocess seems to end, but does not release file handle

Running under Windows 8, Python 3.3, I am spawning 3 processes that should run one after the other: first, signing an executable, second, building a kit using Inno Setup (it involves the executable ...
1
vote
1answer
61 views

C# strong naming and versioning

we need to have a C# application I've written perform an automatic update of one of its main DLLs. The idea is when the .exe launches, it first checks the internet for an update - then downloads ...
0
votes
1answer
43 views

Jersey REST sign xml

I implemented my REST services using jersey. The communication layer is secured with ssl. On the client-side i got the requirement that i should sign the xml before i call the services and verify the ...
0
votes
0answers
175 views

Android - Certificates - Public Key, Private Key

I have .p12 certificate an I need to import it into my Android application. I have manage to import public an private keys but they are wrong. ????? X509 certificate is ok until I put it into ...
0
votes
0answers
25 views

Signing from Rails App Controller

I have two rails applications one is an owned App and the another one has installed Community Engine. The idea I have in mind is that when I'm signing into one application I could also create a ...
2
votes
2answers
336 views

Google+ signin button [class='g-signin']

I am trying to make a google+ siginin button for my site. I went through this link https://developers.google.com/+/web/signin/#button_attributes and tried to make it working but now my styling is all ...
0
votes
1answer
72 views

get private key in google app engine

We are deployed on google app engine and we have a requirement to sign a request that we make to external identity provider(saml based).I read the appidentity documentation and have been able to ...
1
vote
4answers
426 views

How to created signed AuthNRequest?

I am interfacing with an IDP and have a basic AuthNRequest created as follows: <samlp:AuthnRequest xmlns:samlp="urn:oasis:names:tc:SAML:2.0:protocol" ...
0
votes
2answers
211 views

keytool not working for signing android app

Ok I am trying to follow the steps on google's website on how to prepare an app for putting on their market. My problem is when I am trying to use keytool.... this is beyond frustrating... This is ...
3
votes
4answers
673 views

XCode Code Sign error because of no Keys in Keychain

You might think, not again such a question where are already thousands of topics about.. However, I've not been capable of finding the answer I needed to fix this problem. None of these topics go as ...
0
votes
1answer
107 views

BlackBerry10 application is not signing properly due to keystore issue

I am creating a sencha application and i want to run it on BB10 device. I have requested for signin Key files from BlackBerry and received two .csj registration files by mail . For signing my ...
0
votes
1answer
113 views

Which code signing certificate should I obtain for adobe air application (.exe,.dmg,.deb,.rpm)

I need to sign my adobe air application which is a native installer. Right now I just have windows version. But soon I'll be porting it to other OSes including mobile OS. My query is whether I need to ...
0
votes
1answer
138 views

Signing executable with PKCS #7 SPC file using console version of signtool.exe

I am trying to sign an executable with PKCS #7 SPC file issued at Go Daddy. I have CSR (code signing request) file and PrivateKey.key file and .pem file with same name as .spc file. I am trying to use ...
0
votes
0answers
133 views

Unable to sign bootstrapper executable (setup.exe) after embeding manifest

We are using Nant to prepare setup of our software using Clickonce. Using signtool to sign dll(s) and exe(s). signtool command : signtool sign /f ${certFile} /p ${certFilePwd} {path of setup.exe} ...
2
votes
2answers
753 views

How do I sign a PDF document using a certificate from the Windows Cert Store?

I need to sign a PDF document using a certificate that exists in the Windows Certificate Store. I have been digging around all day trying to figure it out, and I am so close yet so far away. All that ...
0
votes
0answers
14 views

Assembly signed and built with VS2008 is not signed

Following the extremely simple procedure for signing an assembly outlined in http://msdn.microsoft.com/en-us/library/ms247123(v=vs.80).aspx (and countless stackoverflow posts), I have attempted to ...
0
votes
0answers
114 views

Get a signing key for ios app with out using the xcode for Phonegap Adobe Build

I'm working on Phonegap to develop an application. And I dont have Mac PC/Xcode right now. While building the app in Adobe Build , it says, You must provide a signing key, first . Since googled for ...
2
votes
2answers
51 views

What is the difference between code signing services? [closed]

We are developing a new software for windows and would like to sign our code to gain users trust. There are several companies that offer this service and the prices are also pretty different. I'm ...
1
vote
1answer
73 views

Sign Mac Application without Mac Developer program

Is it possible to sign application and pass Gatekeeper using code-signing certificate from Comodo or Thawte or I need to have the Mac Developer Subscription for that purpose?
-2
votes
4answers
827 views

Uploading apk to google play [duplicate]

I'm getting this error, can someone help me solve this? I've spent hours creating keystrokes and everything....but still I get this...Thanks if ever. "You uploaded an APK signed with a certificate ...
1
vote
1answer
1k views

Android in app purchase: Signature verification failed

I have tried for several days to solve this problem, using the Dungeons demo code that comes with the SDK. I've tried to Google for an answer but can't find one. In the Dungeons demo, I passed my ...

1 2 3 4 5 7