Encryption is the process of transforming information (called plaintext) using an algorithm (called cipher) to make it unreadable to anyone except those with special knowledge (often called a key). Conceptual questions about encryption may get better answers on crypto.stackexchange.com.
2
votes
2answers
29 views
+50
Authentication android messaging app
This is a messaging app. It has no login (username or password). This means it has to send messsages to a server, and the server must trust it is coming from the phone number it says it is coming ...
0
votes
0answers
6 views
VB.NET File binder not working?
I'm currently trying to bind an application, that has had its data encrypted and saved to a BIN file, to a decrypter. The binded file will be an EXE containing the BIN file and the decrypter, which ...
-4
votes
0answers
16 views
I want encrypt & decrypt .swf file using vb
how to encrypt & decrypt the .swf file in vb. I got some techniques but it was only for text. please answer me.
1
vote
1answer
11 views
NSIS Password Registry Encryption
Right now im storing passwords in plain text in the registry, i'd prefer not to use plugins, but does NSIS have any built in methods to actually encrypting plain text into the registry?
Thanks
0
votes
0answers
5 views
Windows xp sp3 client fails decrypting application data after SSL Handshake done
I am trying to make WPA2 authentication on windows client using PEAPv0 as inner authentication method. I am able to make the handshake and establish the tunnel. When I send the first application data, ...
1
vote
1answer
64 views
+100
How is Azure ACS authentication secured?
Thanks to Gaurav Mantri for answering my earlier question Azure ACS Set Up in C#.
However can someone explains to me, how the following line is secured?
if ...
0
votes
1answer
31 views
Python - Hard time understanding scrypt max time
As I understand the maximum time parameter:
data = scrypt.encrypt('MESSAGE', 'password', maxtime=0.1)
Means python will hash for that amount of time.
However, I can go down as low as .76 and it ...
0
votes
0answers
19 views
Decrypt TripleDES file on Linux
I have a bunch of files encrypted with Triple DES which I need to decrypt.
I have both the Key and the Initialization Vector as byte arrays.
I'm trying to decrypt them with
openssl des3 -d -in $FILE ...
1
vote
1answer
24 views
algorithm - Is the RijndaelManaged Class in C# equivalent to AES encryption?
I am asking this question to confirm whether the RijndaelManaged class in C# is equivalent to AES encryption. From what I have been reading, RijndaelManaged was the algorithm of choice to implement ...
-2
votes
0answers
36 views
c# validate serial in a big encrypted serials file
i built a C# (WPF) application that interacts with thousands of remote devices (3rd-party).
each of those devices has a unique serials number, and the user must have a matching license for that ...
0
votes
0answers
11 views
PAM module and crypt function
I try to developp a pam module but i have a problem on this simple example :
PAM_EXTERN int
pam_sm_authenticate (pam_handle_t * pamh, int flags, int argc,
const char **argv)
{
int ...
0
votes
2answers
24 views
how to get rid of zeros in PKCS7Padding
I am trying to remove the zeros from the padding. I would like to remove the zeros without having to use a for loop, so how would I remove the zeros from the padding?
Here is the ...
1
vote
1answer
21 views
padding is invalid and cannot be removed ERROR firing at cs.FlushFinalBlock() line
I am trying to use the Rijndael method to encrypt and decrypt data. It encrypts fine but when I try to decrypt it it gives padding is invalid and cannot be removed at the line cs.FlushFinalBlock(); ...
81
votes
7answers
22k views
Does my application “contain encryption”?
I'm uploading a binary for the first time. iTunes Connect has asked me:
Export laws require that products containing encryption be properly authorized for export.
Failure to comply could result ...
8
votes
3answers
84 views
Perl encrypting STDIN passwords
I'm producing a Perl module that provides an OO interface for a 3rd party API. I want to capture and store the user's password in an encrypted format before it is transmitted to the 3rd party API. The ...
0
votes
0answers
19 views
RSA Encryption using openssl, variable length for encrypted text with PKCS1 Padding
I am trying to encrypt a string "HELLO" using RSA encryption with PKCS1 Padding.
I am using openssl for generating the keypair and perform encryption.
Problem: I am getting the generated encypted ...
0
votes
2answers
32 views
encrypt/decrypt java class and implment and deploy in tomcat with custom class loader
I have a application war bundled with class files which we deploy into tomcat.
I will be deploying the application at client location server where different people will have access to it.
I want the ...
-6
votes
0answers
26 views
java code for implementing rabbit algorithm for encryption in android [closed]
java code for implementing rabbit algorithm for encryption in android.Also i would like to have the code for merging two arrays into one array by entering the values from the 2 arrays alternatively
-6
votes
2answers
71 views
How to replace several characters on a single string to desired characters (java)?
I made my own way of encryption. now i need to get that encryption to an android app. Can somebody tell me, if you have a message (string) how to replace it's characters to desired characters.
For ...
-1
votes
1answer
19 views
Convert DES encryption code in Java to PHP [closed]
I'm trying to convert following DES encryption code from Java to PHP but I'm not able to reproduce exact same encrypted string. Can someone please help me convert this code from Java to PHP.
private ...
6
votes
4answers
16k views
InvalidKeyException : Illegal Key Size - Java code throwing exception for encryption class - how to fix?
I've been trying to get some working Java code to use for encrypting Paypal buttons. This is no easy task! Even when I get some code, from Paypal, I'm faced with errors..ugh..
So here is what I have ...
0
votes
0answers
22 views
How to manually encrypt and validate password in membership type System.Web.Providers.DefaultMembershipProvider
I have ASP .NET MVC 4 websites which uses default membership provider, the website works fine, now I am developing a separate WCF Rest service to expose the existing DB to android app, below is the ...
0
votes
0answers
18 views
How to manage passwords in a multi-tenant surrounding? [closed]
I am building a multi-tenant application in a shared database model. I would like to encrypt sensitive data so that only a particular tenant could have access to his data. What is the best mode to ...
0
votes
1answer
97 views
Keeping encryption algorithm output in printable ASCII range [closed]
I am using a very simple encryption algorithm that takes an input from the user, makes 1 = 2, a = b and so on. This isn't an encryption at all but my problem is that the user have to copy the ...
8
votes
5answers
21k views
How to encrypt and decrypt file in Android?
I want to encrypt file and store it in SD card. I want to decrypt that encrypted file and store it in sd card again. I have tried to encrypt file by opening as file stream and encrypt is but it is not ...
-2
votes
0answers
46 views
mysqli_query not working with crypted data
Im trying to use PHP crypt to hash passwords on my database. Before, I was able to use mysqli_query to insert the data on the table, but its not working anymore.
Actually, the return value I want is ...
4
votes
4answers
88 views
Protecting crypto keys in RAM?
is there any way to protect encryption keys that are being stored in RAM from a freezer attack? (Sticking the computer in a freezer before rebooting malicious code to access the contents of RAM)
This ...
0
votes
2answers
19 views
ProtectedConfigurationProvider using Rsa and x509 certificate
I'm new to this so please bear with me. I'm trying to encrypt/decrypt a .config section using RsaProtectedConfigurationProvider
Please correct me if I'm wrong but from what i've been reading I need ...
4
votes
1answer
296 views
RSA Decryption across Android - iPhone
I'm trying to implement a system where A generates an RSA key pair and sends the public key to B. B then generates an AES key and encrypts it using the public key, sending the result back to A. A ...
1
vote
1answer
33 views
Unencrypt an excel file (xls, xlsx, 2003 onwards) with the password
I have some excel files that are password protected and encrypted using excel. I know the password but I do not want to use excel or excel automation to open them. Is it possible to remove the ...
1
vote
2answers
63 views
Python and Cryptography: md5
I am very interested in python and cryptography and I would like to know what would be the most simple method in python to crack a hash.
I would like to build a small python script that can crack ...
0
votes
1answer
31 views
Implementing gpg Encryption in Ruby
Trying to convert some old shell/unix scripts into Ruby.
I have the following encryption of a file that's accomplished via the gpg tool in Unix. I can pass in the recipient key, the file I want to ...
2
votes
2answers
59 views
Python Blowfish Encryption
I am struggling due to my incomplete knowledge of Java to convert this encryption code to Python code. The two should have the exact same results. Help would be greatly appreciated.
Java Function
...
0
votes
0answers
28 views
Best way to encrypt data between selected users on a network? [closed]
I am looking for the best design of a solution that will allow a few users on a Windows network to share files in a way that not even the system administrators can read the files. All these users have ...
-3
votes
0answers
38 views
Hide Javascript at client side [duplicate]
What is the best way to hide javascript at client side?
At my PHP page...javascript is developing dynamical using PHP...so I have to find a way where I can dynamically do something to hide/encrypt ...
1
vote
3answers
295 views
How to make auto trust gpg public key?
I am trying to add my GPG public key as a part of our appliance installation process. The purpose of it to encrypt any important files like logs before admin pulling them into his local using admin ...
0
votes
0answers
6 views
How to recover a truecrypt container from a corrupt NTFS drive [migrated]
On my external HDD which is formatted in NTFS I have a truecrypt container. I plugged my drive in today and windows gave me an error that I need to format the disk. How would I go about recovering my ...
0
votes
2answers
31 views
I need to collect credit card information to sell products via a website, what rules are there about this? [closed]
I am working on a website that collects credit card information. What rules are there in the United States, the states of New York and Delaware, and elsewhere regarding the transmission and/or ...
0
votes
0answers
35 views
Creating cipher key from random text on Android [duplicate]
I'm having a little problem. In my app I need to create a key for AES encryption from String written by a user, and I have no idea how to do it. For example: user writes: "abscde" and I need to some ...
7
votes
5answers
5k views
How do I compute the approximate entropy of a bit string?
Is there a standard way to do this?
Googling -- "approximate entropy" bits -- uncovers multiple academic papers but I'd like to just find a chunk of pseudocode defining the approximate entropy for a ...
0
votes
0answers
19 views
Unable to match encrypted attributes in Ldap
I need to match the orclPasswordHintAnswer with the input user provides. I am performing a regular ldap search using Spring ldapOperations. it is not able to bring any matches.I think the reason is ...
0
votes
0answers
20 views
iOS socket encryption
Well, the title says it all. What is a good method to encrypt data from an iPhone client to a server / other client?
I want to make a realtime multiplayer game. To prevent cheating I want to secure ...
0
votes
0answers
31 views
Encrypt and Object
I am using Visual Basic.NET Ultimate and have a question about encrypting and decrypting an object. I am wanting to save and open an encrypted object from file.
Here is my current code:
Public ...
-1
votes
1answer
45 views
php password encryption, key include
I am using hash_hmac to hash my passwords with a key in a text file (protected by htaccess) like so..
$hmac = hash_hmac('sha512', $p, file_get_contents(folder/keys.txt'));
It works fine and all, ...
0
votes
2answers
29 views
Encrypt and decrypt long strings in PHP
I want to encrypt and decrypt data strings that are longer than 2500 characters. Is it possible to encrypt and decrypt such long data strings. It's like essays. Please tell me which encryption and ...
9
votes
5answers
7k views
encrypt data in SharedPreferences
Im currently developing a framework for oAuth 1 and 2 access to webservices and my question is, how do i store sensitive data like an oAuth access key in a secure way?
the problem with this keys is ...
-2
votes
0answers
18 views
Convert vb.net crypto to java [closed]
I'm trying to take vb code that creates an IV and convert it to java. Newcomer to crypto functions. Receiving error
java.security.InvalidAlgorithmParameterException: Wrong IV length: must be 8 ...
7
votes
11answers
467 views
Am I supposed to store hashes for passwords?
User System and Passwords: I was looking through MD5 stuff, and I am wondering what is the normal/good practice for passwords. Right now, I think people super encrypt the passwords and store the ...
0
votes
0answers
16 views
encrypt TLS RSA WITH RC4 128_SHA
Hello I'm trying to write some code for encrypt a string or a file with TLS_RSA_WITH_RC4_128_SHA(0x5) protocol. But I just found examples and references about other protocols. Did someone know some ...
-1
votes
1answer
42 views
how source code to combine plaintext + key into ciphertext + key in java using aes algorithm? [closed]
how source code to combine plaintext + key into ciphertext + key in java using aes algorithm?
I'm developing an sms application with a security system using cryptographic algorithm aes. but I get the ...



