The tag has no wiki summary.

learn more… | top users | synonyms

-2
votes
1answer
25 views

Vernam Cipher shared secret key

A and B share the secret key K. They agree the following protocol for the instigator of communication between them to authenticate the receiver when communicating over an insecure channel. The ...
1
vote
4answers
57 views

how to secure my secret key in strings.xml file in Android

I am placing my secretkey in strings.xml. I checked by reverse engineering with apktool and I got my strings.xml file as R$string.smali when I checked in that file to see whether key is visible or not ...
0
votes
0answers
137 views

Django error “The secret_key setting must not be empty” after upgrading from 1.4.3 to 1.5.1

I just upgraded my Django from 1.4.3 to 1.5.1 using pip install django --upgrade. After the upgrade, my dev site started getting Internal Server Error. I tried to run ./manage.py command but it told ...
1
vote
1answer
43 views

Define a key to generate keys

I'm making a project about security in Java. The Server receives a password and with this password is supposed to insert in MAC to verify the consistency of one specific file. Mac m; SecretKey sk; sk ...
0
votes
0answers
221 views

AES 256 bit encryption. Convert SecretKey into byte and back in android

So, I am doing an AES encryption/decryption. Once the key is generated I want to save it in an SQLite database. For this I am converting my SecretKey to byte[]. My problem is, that when I want to ...
0
votes
1answer
68 views

How to manage/store encryption key in .Net smart card?

I've been doing search here and read a lot of Q about the key but unfortunately no one was asking about smart card or any portable device. Here is my question: I have smart card storing sensitive ...
0
votes
0answers
53 views

How to limit Facebook app access on video upload

Can you please tell me how to restrict Facebook app access from anonymous posters? I'm assuming there might be spam trollers that look for dangling Facebook App ID's that allow anonymous posting, and ...
1
vote
2answers
89 views

How Can I Securely Store a SecretKey?

I'm building a basic webapp that takes in a user input and returns an encrypted password. Problem is, currently the SecretKey I am using is stored in the src for the Java class. To me, it seems this ...
0
votes
1answer
406 views

convert Byte Array to Secret Key

I've been trying to convert a byte array to its original SecretKey, but I've no more ideas left. The most promising attempt was this one: byte[] encodedKey = Base64.decode(stringKey); SecretKey ...
1
vote
2answers
351 views

Why does my AES Cipher throw an InvalidKeyException on init of DECRYPT_MODE

Why would this init succeed: Cipher AESCipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); AESCipher.init(Cipher.ENCRYPT_MODE, secretKey, secRandom); while this fails: Cipher AESCipher = ...
0
votes
1answer
128 views

How to get hash value from PBE key generator

I want to use the PBE to generate other encryption keys. public SecretKey generateKey(String Ags) throws Exception { // make password PBEKeySpec keySpec = new ...
2
votes
1answer
60 views

after getencoded the key is still the same as password

I have a function to generate the key using PBE, and I have searched on internet and find out the following code. class PBE{ public PBE(String pw) { this.password = pw; } public ...
1
vote
2answers
87 views

how does RSA distribute keys to the sender and receiver?

I'm working on a cryptography project that involes using RSA encryption algorithm, i have implemented the RSA algorithm and understand it, but how can i securely send the private key to the receiver?
2
votes
1answer
236 views

How to store secret key in Android?

In my app I'm generating secret key based on device id + random garble. What's safiest way to store those secret key in a way that it can be easily retrieved if user will transfer data from one device ...
0
votes
0answers
343 views

fb:app_id' could not be parsed as type 'fbid'

Facebook debugger says: "Object at URL 'http://www.domain.com/' of type 'website' is invalid because the given value '1234567890' for property 'fb:app_id' could not be parsed as type 'fbid', It ...
0
votes
1answer
329 views

How to generate a javax.crypto.SecretKey from a String

The follow line allow me to generate a SecretKey SecretKey key = KeyGenerator.getInstance("DES").generateKey(); But I want to generate a SecretKey related to a specific String. For example ...
0
votes
0answers
181 views

InvalidKeyException AES256-CBC mode encryption

I'm using the following code for AES256-CBC mode encryption in my application SecretKeySpec skforAES = null; String secretKey = "secretkey"; try { skforAES = new ...
4
votes
2answers
2k views

Anti-hack solution for a secret key in Android app?

I need to store a private string key inside of the app. Its value will never change and is set manually in code. I cannot obviously just store it as a String as reverse-engineering method would reveal ...
0
votes
1answer
64 views

storing a key in unmaned devices in a secure way

Do you have any solution for storing a key (for encryption and decryption for communication) in unmanned devices , where a hacker can access the devices completely and there is no possibility for ...
1
vote
1answer
207 views

IOException, Invalid Stream Header when using SealedObject.getObject()

I'm trying to use SealedObjects to send data over an RMI connection target is a SealedObject, cipher is initialised beforehand (properly, as far as I'm aware), but when I run the following code, I ...
0
votes
2answers
183 views

Ajax to API without exposing KEY

I'm pretty sure the answer of what I'm going to ask is NO but maybe someone can give me a different idea so I'm asking anyway. I'm developing a control panel that fetches information form a 3rd party ...
2
votes
0answers
87 views

Safely unlocking a Facebook achievement without a server component?

Unlocking a Facebook achievement requires you to use an application access token rather than a user access token - presumably so that users cannot unlock their own achievements with a graph API call. ...
0
votes
1answer
6k views

Getting Facebook App ID's via API Key/Secret

I have a whole bunch of API Keys/Secrets from all of my old Facebook Apps stored in my database. However, Facebook does not support the API Keys only the App IDs, which I don't have. I have tried ...
4
votes
1answer
3k views

Java AES: No installed provider supports this key: javax.crypto.spec.SecretKeySpec

I'm trying to set up 128 bit AES encryption, and I'm getting an exception thrown on my Cipher.init: No installed provider supports this key: javax.crypto.spec.SecretKeySpec I'm generating the Key on ...
0
votes
2answers
414 views

Event App Secret Key

How do I find my standard Facebook Event App Secret Key? I need it for using a Facebook Event Widget in Wordpress
2
votes
2answers
274 views

Should I use the same secret key multiple times?

I am developing a Java SE based application (university intranet) for a computer security course that sends a password (AES ecrypted) of a registered user to a server via a HTTP request. It performs ...
0
votes
1answer
121 views

Why can't I seem to generate identical password based encryption keys?

I'm working on some Java software which entails encrypting and decrypting information on both ends of a network connection using two separate pieces of software. To ease this, I have one class, ...
0
votes
2answers
388 views

How to decrypt an encrypted file by passing the “gpg passphrase” in the command using PHP?

I would like to know how can i decrypt a file by passing the passphrase/secret key in the command line. I tried using this, but its still giving me a prompt to enter the passphrase. echo ...
2
votes
7answers
384 views

How do I zero-ise a secret key in java?

Is the following java code sufficient for clearing the secret key in memory (setting all of its byte value to 0)? zerorize(SecretKey key) { byte[] rawKey = key.getEncoded(); ...
1
vote
2answers
484 views

Where is the most secured place to store Amazon AWS Id and secret key?

I am developing an application using ASP.NET. I wonder Where is the most secured place to store Amazon AWS Id and secret key? I thought about two possibilities: In the actual AmazonAPI.cs (class) ...
2
votes
2answers
3k views

Java - Converting string into DES key

I have been given a key as a string and an encrypted file using DES. That is all I know. I don't know how the key was encoded. There is also a des.exe that I can use to decrypt, this is all I found ...
5
votes
2answers
3k views

Why does my AES encryption throws an InvalidKeyException?

I'm currently working on a function that encrypt/decrypts a specific file with a secret key. I have written three classes, one which generates a key, one which encrypts a file with the key and one ...
1
vote
1answer
2k views

How to use a key generated by KeyGenerator at a later time?

I'm writing a program which does both encryption and decryption in DES. The same key used during the encryption process should be used while decrypting too right? My problem is encryption and ...
4
votes
1answer
194 views

How safe is the apple binary (secret key saftey)

I'm developing an application for iPhone which uses a HTTP request to get quote data from a webserver. I am working with another developer who is managing the web service. We are using an MD5 ...
2
votes
2answers
2k views

Perl code to generate secret key for HMAC SHA256 signing?

I'm planning to use code similar to Amazon AWS samples to authenticate signed API requests. So users will have something like: use Digest::SHA qw(hmac_sha256_base64); my $digest = hmac_sha256_base64 ...
2
votes
2answers
629 views

Is there any best way to implement Encryption in Flex 3

we have one application where we are pulling some confidential information from one of the product design tools. So we have used HTTPS as the channel and also we are encrypting the Request Parameters ...
16
votes
4answers
3k views

How to store a secret API key in an application's binary?

I am creating a Twitter client for Mac OS X and I have a Consumer secret. It's to my understanding I should not share this secret key. The problem is that when I put it as a string literal into my ...
12
votes
3answers
2k views

when you have secret key in your project, how can pushing to GitHub be possible?

I am trying to push a brand new, empty Rail 3.0.4 project to GitHub, but just realize that the cookie session store has a secret key: In config/initializers/secret_token.rb ...
1
vote
1answer
821 views

Deploy C# client application (S3) with Amazon AWS secret key?

I've written my hello world AWS program today - simple file upload to a premade S3 bucket. In the context of this program deployed to a client desktop (for arguments sake), is my Secret Access Key ...
11
votes
1answer
601 views

Deterministically Generating cryptographically secure keys and IVEC's

Background I am designing a system which enables the development of dynamic authentication schemes for a user of static web content. The motivation is to pre-generate large amounts of ...
10
votes
1answer
991 views

Making a Git project open source when you have secret keys

I have a project on GitHub behind a private repository. I want to make the repo public. However, my project uses secret keys. How can I make the project public while still protecting the "history" of ...
2
votes
1answer
429 views

OAuth consumer keys in plugins

What is the best way to handle consumer secret keys for OAuth in plugins that will be distributed with/as source code (e.g. Wordpress plugins that access Delicious or Twitter)? I know OAuth is not ...
8
votes
1answer
6k views

For RSA, how do i calculate the secret exponent?

For RSA, how do i calculate the secret exponent? Given p and q the two primes, and phi=(p-1)(q-1), and the public exponent (0x10001), how do i get the secret exponent 'd' ? I've read that i have to ...
0
votes
1answer
163 views

BAD_UID error while exporting key in CryptoAPI

I am writing a test application for Microsoft CryptoAPI. I want to export the secret key of one party using the public key of the second party, and then import that secret key as the second party's ...
2
votes
2answers
1k views

Storing secret keys on iPhone source and project resources

Is storing secret keys (internal use passwords and such) on iPhone source code and project resources (such as plist files) secure? Obviously nothing is 100% secure, but can this information be ...
0
votes
2answers
772 views

What one-time-password devices are compatible with mod_authn_otp?

mod_authn_otp is an Apache web server module for two-factor authentication using one-time passwords (OTP) generated via the HOTP/OATH algorithm defined in RFC 4226. The developer's has listed only ...
1
vote
2answers
739 views

javascript hide code for secret keys etc

I am using the Ribbit javascript api and trying to figure out how not to show the secrety key and all those application settings which are set in a code block using a Ribit.init function: ...
3
votes
3answers
807 views

app engine secret key for iphone access

How can i make sure only my iphone app is allowed to use my app engine application for sending and receiving data? I probably have to use a secret key, but i don't know how. Can i just use post/get to ...
10
votes
1answer
1k views

Keeping a secret key secret with Amazon Web Services

I'm playing around with using amazon web services in my personal project. I've grabbed their AWS SDK for .NET and I'm using that, but I'm a little confused. Access to the web service (in this case, ...