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.

learn more… | top users | synonyms (2)

0
votes
1answer
25 views

JavaScript atob operation using php

I would like to know if it is possible to decrypt the JavaScript encrypted text (which is encrypted using JavaScript's btoa function), using php.
1
vote
2answers
41 views

Encrypt a file and send it through

I need to encrypt a file with AES 192 and send it to a client via socket. I'm using this code to encrypt the file: string outputFile = "crypted"; //Confidentiality ...
1
vote
1answer
14 views

Dycrypt stored secret using HTTPS transport

I am considering developing a software for safely storing files on a server. Let's say I have a secret document initially stored on my client computer that I want to upload to the server. The ...
0
votes
0answers
16 views

Reading encrypted cookie

I have used this example as a base, to read and write an encrypted cookie. Problem is that the decrypted string that gets returned contains invalid characters. i.e. the cookie value is 'MyValue' ...
0
votes
0answers
22 views

What is secured way to store symmetric key AES

I am implementing AES.encryption will take place at server side and decryptionat client side.the key which is used to encrypt the data what is secure way to store the kay and passed to client ...
-1
votes
1answer
28 views

Looking for a obj-c equivalent of this openSSL command [closed]

I am looking for obj-c code that is equivalent to this command openssl enc -aes-128-cbc -k secret -P -md sha1 Once you type the above in command you get this output salt=538C5F5ECAB7BFA2 ...
-1
votes
0answers
15 views

Generate .key file using salt,key & iv

By executing this command: openssl enc -aes-128-cbc -k secret -P -md sha1 I got: salt = 705760957AE3FF9B key = BB7A9DFE339E0187CD6255614CB5C584 iv = 8E113F25E75E840A8A8377A19FFC5CF4 Anybody ...
-2
votes
0answers
35 views

Creating AES-128 encryption file in obj-c [duplicate]

I am working on a mac 10.7 application which needs to spit out a encryption file to the file system like abc.key I am looking for programming steps like this // provide password NSString *pass = ...
0
votes
1answer
26 views

Trouble with javax.crypto.Cipher

I have imported the following into my project import java.security.*; import javax.crypto.*; import javax.crypto.spec.*; import java.io.*; The following is telling me "Unhandled exception type ...
0
votes
0answers
14 views

Chyper SharedPreferences GSON objetcs

I want to store an encrypted Profile object in SharedPreferences using gson. Here's my code: public void saveProfile(Profile newProfile) { try { Log.i(C.TAG, newProfile.toString()); ...
0
votes
0answers
17 views

how to decrypt data with postgresql - dukpt

I recently started working encrypting and decrypting data with the DUKPT scheme. I have successfully decrypted the data with java and ruby, but now I need to know if it is possible to decrypt the ...
1
vote
1answer
42 views

Same hashing + encryption in different platforms generating unidentical values

I am writing some web-services for a social networking website. These web-services would be utilized by android for making android-app. As the person who designed the website is no longer under ...
-2
votes
1answer
57 views

PHP DES Encryption compatible with Delphi - encryption function

I am trying to create the encrypt PHP algorithm from this thread: how to sync encryption between delphi and php using dcpcrypt (see shunty's reply) Here is what I have so far: function ...
0
votes
1answer
18 views

Simple JavaScript encryption & decription without using key

I would like to know if it is possible to encrypt and decrypt a text, using pure JavaScript. I don't want to use a key. It may be an entry lever solution. But I simply want to encode a text ...
2
votes
1answer
30 views

Ways to create a PKCS7 signature file using perl

I have been working on an application that create apples new ios pass.I am new to perl modules and i need some answers about how can we create signature files that uses PKCS7 encryption from a json ...
0
votes
4answers
60 views

PHP String Encrypt and Decrypt? [closed]

In PHP, which is the best method to Encrypt a string and then Decrypt it again? Shall i say, The "Decrypt-able" Encryption (Someone below says it is called, Symmetric Encrypt/Decryption?). What i ...
3
votes
1answer
42 views

AES Encrypt in CryptoJS and decrypt in Coldfusion

We've got a Silent Login service written in Coldfusion9 that accepts encrypted strings from external systems and then decrypts based on an agreed Algorithm/Encoding setup. This has worked without ...
-1
votes
1answer
77 views

explanation what code are doing [closed]

can someone maybe tell me what this particular lines are doing the result = result line and the one after it, i need a explanation of these two lines. Dont understand it clearly. Got it from the ...
0
votes
2answers
23 views

AES key wrap encryption

I need crypto-algorithm AES in key wrap mode. Is there some open-source library or implementation that could be helpful? It is important, that it must be key wrap mode.
0
votes
1answer
19 views

how to encrypt parameters passed in url in django template

I need to encrypt id passed from template to view in django. Actually, user_id have to be encrypted in url so no one can get the id passed in url this code. <tr> {% with ...
0
votes
0answers
22 views

Is it possible to use C# with Salsa 20/12 so that Intel/AMD SSE2 acceleration is used? [duplicate]

I'm interested in the eStream project and using C# to encrypt / decrypt data streams with Intel/AMD acceleration. How can I use C# to interact with Intel/AMD hardware so I can get the following ...
1
vote
1answer
16 views

Should I use Cipher.WRAP_MODE OR Cipher.ENCRYPT_MODE to encrypt a session key?

How should I encrypt a session key on the client side with the public key transported from server side? Should I use Cipher.WRAP_MODE or Cipher.ENCRYPT_MODE? Cipher cipher = ...
0
votes
2answers
41 views

Data Masking in SAS: Scrambling Sensitive observations at character level

I'm working with client data in SAS with sensitive customer identification information. The challenge is to mask the field in such a way that it remains numeric/alphabetic/alphanumeric. I found a way ...
0
votes
1answer
15 views

jquery mobile plugin for encryption/decryption

I want to encrypt and decrypt the json object to be passed as URL parameters. is there a jquery mobile plugin which provides the encryption and decryption for this purpose as I found this link : ...
0
votes
1answer
53 views

How to hide php codes and mysql table schema

We've a Clint requirement in which, all the PHP source codes + MySQL DB will be in their network. So all their data will not be visible to outside world. That's we can do. But, the thing is.. we ...
0
votes
2answers
40 views

AES 256 decryption error

I'm trying to decrypt an AES256 bit but it gives me this error "Length of the data to decrypt is invalid." On line Plain_Text = Stream_Read.ReadToEnd();. My encryption method works but the decrypt ...
0
votes
2answers
58 views

generate a 128-bit string in C#

I am developing a class project in C# that encrypts the users and admins passwords. To encrypt I'm using the TripleDESCryptoServiceProvider. In the configuration app the user enters the key to be ...
0
votes
1answer
29 views

iOS App for emergency response - how to secure the data without a password?

I have a unique use case here: I need to enhance a stand-alone iPhone app "EmergencyResponse" (name changed for this post) that is used by at-risk patients. Patients/Caregivers setup the app with ...
1
vote
1answer
34 views

PHP iOS AES Encryption Inconsistency

In PHP, I have the following code: $key = 'HelloKey'; $data = 'This is a secret'; $mdKey = $key; $encrypted = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $mdKey, $data, MCRYPT_MODE_CBC)); echo ...
0
votes
1answer
14 views

Php mcrypt not decrypting data required while using cbc mode

i have the below code for encryption , but the problem is its not decrypting the data as reqired $salt ='whatever_you_want'; $en= simple_encrypt('data'); echo simple_decrypt($en); function ...
0
votes
0answers
15 views

How to encrypt/decrypt a password using StandardPBEStringEncryptor?

I am trying to encrypt/decrypt password in my application using StandardPBEStringEncryptor. However I think the code I am using is resulting in a memory leak. Am I using this correctly? public static ...
2
votes
1answer
29 views

Encrypting database credentials

Firstly to explain, we have some websites which all connect to a central database. As a rule we don't give clients access to the FTP for their website so they cant access any files with the DB ...
0
votes
1answer
18 views

Malloc in openssl

I got a problem when I encrypt a data with aes encryption. this is the source code: std::string aes_encrypt( std::string text, std::string password ){ EVP_CIPHER_CTX ectx; std::string key ...
-2
votes
0answers
28 views

Methods to crack a message encode algorithm [closed]

I have a tool which encodes/decodes messages. I need to implement this encode/decode algorithm in my software. What methods should I use to solve the problem? Some examples of ecoded/decoded messages ...
0
votes
1answer
26 views

Sign PDF from usb Token Using MSCAPI & ITEXT

can anyone give me a simle example of pdf signing from usb token using MSCAPI and ITEXT. I do not want to use a fixed ocsp string. I tried to follow this Digital Signature book but it did not work. ...
-6
votes
0answers
27 views

What type of aspx encryptation is this? [closed]

Aspx program 000000 encrypted result: FCB7A06D81BDCAFF9FBB Thanks a lot.
2
votes
1answer
27 views

How to use AES_ENCRYPT and AES_DECRYPT in mysql

I created user table CREATE TABLE `user` ( `id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT , `first_name` VARBINARY(100) NULL , `address` VARBINARY(200) NOT NULL , PRIMARY KEY (`id`)) ENGINE = InnoDB ...
-2
votes
2answers
37 views

Blowfish C example for char*

I need help in Kocher's blowfish algorythm to implement in C. Its url is(http://www.schneier.com/code/bfsh-koc.zip). I could do the basics (initialize), but decryption isn't well. I know I should work ...
1
vote
1answer
37 views

Fast RC4 cipher stream for Python?

I'm trying to write an app that needs large numbers of cryptographic strength pseudorandom bytes. The RC4 cipher would be ideal for this; it's lightweight and simple to understand conceptually. So, ...
0
votes
2answers
71 views

Crypt information in a file

I'm developing a desktop application, and I have a login form which the user has to fill in order to access the application. In this login form I have a JCheckBox which is "Remember me". When the ...
1
vote
2answers
51 views

Encrypt/Decrypt pdf file with Java

I want to encrypt/decrypt a pdf file on Android (but it's a java common issue) I have this code to generate my key : public static byte[] getRawKey(byte[] seed) throws Exception { ...
0
votes
1answer
94 views

How to do Encryption and Decryption of a File?

I use CipherOutputStream to encryption and decryption file in java, but input file > 117 byte cannot encryption. I use RSA algorithm public key lenght 1024 byte. cipher.init(Cipher.ENCRYPT_MODE, ...
0
votes
0answers
29 views

Secure communication between 2 (or more) computers [closed]

I am looking for some information, how to create private and safe communication between group of computers on home LAN site. For example, in my Java program, I want to send short text information ...
0
votes
0answers
38 views

Decrypt a string in Ruby based on VB source

I have an original VB project that decodes a string using (roughly) the following code: Private TripleDes As New TripleDESCryptoServiceProvider key = ...
2
votes
2answers
64 views

how to store mysql connection data safely? [duplicate]

I'd like to begin a new project and one of the first problems I've figured out is the security of my mysql connection data. I want to know if it's possible to configure the software to choose a ...
4
votes
2answers
55 views

RSA Encryption process in PHP

In an effort to understand the asymmetric encryption process I outlined a simple PHP script to encrypt and decrypt simple numbers. I noticed that after a while given numbers to encrypt/decrypt the ...
0
votes
1answer
94 views

Yet Another “The input is not a valid Base-64 string…”

So I've used some AES encrypt/decrypt methods that I've seen over the net that I modified a little. The methods are written below. public void EncryptStringAES(Object threadContext) { ...
0
votes
2answers
38 views

Encryption string on Codeigniter

just wanted to verify if on Codeigniter Encryption say like this one hhNa0fUcOc3k0jUhPcRBJshpiXLpUSug+NhgPk89O7eSjerHk6go360U9rl8LazZo6DR6M1N4IqG0PYIwPyKhQ== Is the structure of this string always ...
2
votes
3answers
67 views

Password protect PDF documents on the fly without compromising the password

I'm looking for a way to password protect PDF files on the fly without having to store the user's password in plaintext. What I would like to do is to generate the user and owner keys according to ...
0
votes
3answers
87 views

Encrypting string to 15 characters

I am doing this serial key thing where the format is xxxxx-xxxxx-xxxxx (15 characters). I can currently encrypt my string but the problems are: 6 Characters become 20+ Characters. Has some ...

1 2 3 4 5 173