[android-developers] Re: Reading from CERT.RSA from META-INF directory

2011-06-21 Thread Nate Totura
Ahh, I see what you are saying now, I have never used those (JarFile/ JarEntry) APIs before. Thank you! On Jun 15, 6:25 pm, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Thu, Jun 16, 2011 at 3:18 AM, Nate Totura ntot...@gmail.com wrote: To clarify, I would like to do this at runtime

[android-developers] Re: Reading from CERT.RSA from META-INF directory

2011-06-15 Thread Nate Totura
To clarify, I would like to do this at runtime. Access to the certificate information at runtime is really what I want. -Nate On Jun 14, 7:39 pm, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Wed, Jun 15, 2011 at 2:57 AM, Nate Totura ntot...@gmail.com wrote: Is it possible to read files

[android-developers] Reading from CERT.RSA from META-INF directory

2011-06-14 Thread Nate Totura
Is it possible to read files in the META-INF directory such as the CERT.RSA file? I have tried the following: AssetFileDescriptor afd = am.openNonAssetFd(META-INF/CERT.RSA); but I get the exception: java.io.FileNotFoundException: This file can not be opened as a file descriptor; it is

[android-developers] Re: In-app purchase signature verification with PHP openssl

2011-04-25 Thread Nate Totura
Thanks for the help, you were correct, the data I was using to test everything was in a file an had an extra newline appended to the end. On Apr 20, 7:37 pm, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Thu, Apr 21, 2011 at 6:24 AM, Nate Totura ntot...@gmail.com wrote: Still no luck, I

[android-developers] Re: In-app purchase signature verification with PHP openssl

2011-04-20 Thread Nate Totura
-A signature.bin the openssl dgst ... command returns: Verification Failure Thanks, Nate On Apr 13, 7:48 pm, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Thu, Apr 14, 2011 at 2:05 AM, Nate Totura ntot...@gmail.com wrote: Thanks, the openssl_sign() php function is just being

[android-developers] In-app purchase signature verification with PHP openssl

2011-04-13 Thread Nate Totura
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 on a server instead of in the app iteself. I would ideally like to use the php openssl libraries

[android-developers] Re: In-app purchase signature verification with PHP openssl

2011-04-13 Thread Nate Totura
On Apr 13, 12:27 am, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Wed, Apr 13, 2011 at 3:44 PM, Nate Totura ntot...@gmail.com wrote: I am trying to do signature validation on a server instead of in the app iteself. I would ideally like to use the php openssl libraries and it looks

[android-developers] Proguard configuration question

2010-12-27 Thread Nate Totura
I have a version of file android.webkit.WebViewClient in my application source directory in order to handle onReceivedSslError in my own extended version of WebViewClient. When I use the new ProGuard integration in sdk-9 I get the following warning which breaks the build: [proguard]

[android-developers] Numeric soft keyboard in webviews

2010-07-23 Thread Nate Totura
I am having a tough time finding an official answer to the question, Is there a way to automatically show a numeric soft keyboard when the user clicks on an html input box in a webview? So I understand that Android 2.1 and earlier does not support the Input type=number html tags, but there has