Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
6answers
812 views

Where do programs save their secret license?

where do programs save their secret license or install related information? I notice that often times when you uninstall a program, clear out appdata references, check registries to make sure there is ...
6
votes
5answers
976 views

What is the best way to read the Rails session secret?

I would like to access the Rails session secret programmatically (I am using it to generate a sign-on token). Here's what I've come up with: ActionController::Base.session.first[:secret] This ...
4
votes
3answers
387 views

What are your suggestions for storing AWS authentication data?

Scenario: a web application written in PHP utilizes an Amazon Web Service and must keep the Access Key ID and a Secret Access Key handy in order to function. Are there current recommendations and/or ...
3
votes
4answers
49 views

Open sourcing code without including specific set-up values in source

I am creating a few small experiments / examples which I am open sourcing on git hub. How have people dealt with user specific config/set-up vars in the past? I would ideally like to commit the ...
2
votes
1answer
442 views

When working with most APIs, why do they require two types of authentication, namely a key and a secret?

I have been working with APIs and I've always wondered why you have to use a key and a secret? Why do you need two types of authentication?
1
vote
2answers
75 views

Go - password security in binary

I intend to save a password/secret key in my Go application to be used in communication with some other applications. I wonder how to secure it from for example someone obtaining the binary and ...
1
vote
4answers
43 views

How to ONLY be able to send a request from an app

I think this is a little hard to explain. Basically, I have an android app which connects to a web app. I want requests that I make from the web app, to not be made anywhere else. I am using PHP, by ...
1
vote
1answer
51 views

Twitterizer: what is the workflow in order to publish messages on user's profile?

as I started to work with Twitterizer in order to publish on someone's wall I am in confusing time. There is a page, my case, DefaultTwitter.aspx where is link to authenticate on twitter with token ...
1
vote
3answers
112 views

Why an Facebook/Twiter app has to need 2 key?

I'm developing an mobile app on iPhone. After creating an app on Facebook/Twitter, I received 2 keys: - Facebook call them as app ID and app Secret - Twitter call them as consumer Key and consumer ...
1
vote
1answer
188 views

Encrypt information on Android devices (protect reasonably from access by user)

We are in the making of an Android app, a quiz game, which we would like to cache questions + answers for when the user is offline. The problem with this is that we would need to withhold this data ...
1
vote
1answer
692 views

Android+Facebook: where are API KEY and API SECRET used?

I am using FBConnect on Android, it seems that the only ID I need is the app id, which is a string of digits: Facebook mFacebook = new Facebook(FacebookConstants.APP_ID); But I also got API Key and ...
1
vote
1answer
318 views

how to get access_token from twitter without registration

i am creating iphone app with full functionality of twitter and at the first time user loging page with access_token so i want this token without login after login i replace this one with new but at ...
1
vote
2answers
513 views

session secret? what is it

I don't know anything about cryptography. I'm wondering what the session secret is. I see code like this: app.use(express.session({ store: mongoStore({url:app.set('db-uri')}), secret: 'topsecret' ...
1
vote
1answer
145 views

how to solve ax + by = c mod n equation of line given co-ordinates of 3 points?

I have three points and a equation of a line modulo n. How do i find the equation of line?
1
vote
5answers
345 views

Is it safe to leave my password-protected PGP secret key available publicly?

My PGP secret keys are always password protected, which means you need to decrypt it using a symmetric key to get access to my private key. I am interested in making my password protected PGP secret ...
1
vote
3answers
198 views

How to use a key and secret for verification?

On most API's such as facebook and bebo to use there API you must get a Key and secret, I am just wondering what is some good methods of doing a system like this. I will be using PHP/MysQL. How can ...
0
votes
1answer
36 views

What are secret passphrases in URL

I don't know much about the use of some random strings in URL. As far as I used, I learned that it can be used where any user simply cannot guess the URL. First noticed in phpmyadmin, as blowfish ...
0
votes
0answers
28 views

Did a Facebook user really post on that website? How to check if a website is telling the truth? How to check if the user really authorized it?

Real life example: - I am now logged in on stackoverflow through Facebook Connect. - I have posted this message - Stackoverflow shows to you that I posted it (because you are reading it now). How can ...
0
votes
1answer
53 views

Secret key when use Facebook SDK for ANdroid

this code works fine: Bundle params = new Bundle(); params.putString("to", String.valueOf()); mFacebook.dialog(, "feed", params, ); /code from facebook developer site/ This code doesn't work ...
0
votes
1answer
100 views

How to create a test account for development purpose

I want to create a test account for creating a application. How should I go about it? I referred to a tutorial and it seems like I will be needing an application id and a secret to create an account. ...
0
votes
0answers
4 views

Where is the API and Secret for Page? It's not in usual location?

I created a new Facebook page, but the API and Secret are not showing up in the usual location which is here: https://developers.facebook.com/apps Where can I find them? Has Facebook put them ...
0
votes
2answers
169 views

OAuth Twitter with only Consumer Key (not use Consumer Secret) on iPhone and android

I'm programing an Twitter/Facebook app for iPhone. I have my own Apache/PHP server. I want to only place the Consumer Key in the app, then I place the Consumer Secret in my own server, so the Consumer ...
0
votes
1answer
29 views

OAuth consumer token = publick key?

in Oauth lingo, is the consumer token really just the public key and consumer secret the private key? I can just use JCE to generate them, correct ? thx
0
votes
0answers
31 views

Blackberry Java (eclipse) making secret keys unreadable in the application

I have produced an app that uses several secret keys. As I dont want this in plain text within the code, is there anyway to make them unreadable? Cheers
0
votes
0answers
39 views

Encryption and decryption “ any type of files”

I want to do a code for Encryption and Decryption for "files" using Python26. My OS is Windows 7 I checked out the M2Crypto, PyCrypto but they only do for "strings" and also I used the "Chilkat" ...
0
votes
2answers
103 views

How is a file/folder “fully” hidden in Windows?

A year ago I was investigating into being secretive and hiding/encrypting data when I came across a program(can't remember its name). It basically hid any file or folder and it could not be discovered ...
0
votes
1answer
360 views

Dynamic Manifest File for “android_secret_code”

Hi I'm following http://android.amberfog.com/?p=422 to start an activity by a secret code using below code: <action android:name="android.provider.Telephony.SECRET_CODE" /> <data ...
0
votes
3answers
7k views

Where do I find API key and API secret for Facebook?

Trying to connect to Facebook to make a statusupdate through my Android application. Got the whole thing running but I need API key + secret. Where can I create/get a hold of these? private static ...
0
votes
1answer
3k views

Session Problem in Rails 2.2 “ActionController::InvalidAuthenticityToken in User#register”

I am reading and learning from this very cool book Railspace - Building Social Networking sites. I understand everything but i am stuck with the sessions section. Its something i would really like ...
-3
votes
4answers
384 views

Solution for writting a program for keep secret photos

Solution for writing a program for keep secret photos. I have many secret photos of me and my friends and I don't want anyone to see it for now I just use Winrar and Set password feature and ...