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
3answers
68 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
votes
1answer
79 views
Encryption/ Decryption of a file?
I am trying to encrypt, then decrypt the file. When I try the decryption the file, I would like to display the content on the screen to make sure that the process of decryption is done without ...
0
votes
1answer
26 views
DNN Encrypted Profile Field
In DNN's site settings, I would like to store a user's credit card in their profile. Is there a way I can encrypt this data? Here is the code I use to pull user custom fields:
UserInfo theUser = new ...
2
votes
1answer
42 views
Encrypt a DSA private key with RSA public key
I want to encrypt the DSA secret key with the RSA public key using java. However, when I do so, I get this error:
javax.crypto.IllegalBlockSizeException: Data must not be longer than 245 bytes
at ...
0
votes
0answers
21 views
Decrypting AES128 Salesforce Values using C#
I am facing a Padding issue when decrypting the encrypted Salesforce field values which are currently being sent in a Query String over to my web app.
I have tried using the solution proposed in ...
0
votes
0answers
17 views
Windows Phone 8 RSA Encryption
Hi i am trying o generate my public key for my RSA 4096 encryption in my windows phone 8 ecryption app
i am using this method:
RSACryptoServiceProvider rsaProvider = new ...
0
votes
0answers
36 views
create self encrypted php file
A couple of years ago I stumbled with a "self encrypted php file".
For what I can remember, its code was encoded several times in base 64 and was constantly verifying its own file size.
This was ...
0
votes
2answers
70 views
Encrypt string into int in C#
I have looked a lot on the internet, couldn't find what I needed. I found either string to string, or md5, which doesn't return an int and so on.
So what I need is a bit of guidance on how I could ...
0
votes
0answers
26 views
3DES Encryption in ios is not working?
hi iam using following code for 3DES encryption in ios ,but the code is not working the result value is 0 here please help me.
my key is 24 bit long,and iv is 8bit. i want to encrypt a string and ...
4
votes
3answers
64 views
Encrypt a custom section in app/web.config file
I need to encrypt/decrypt custom sections in app.config as well as web.config file. I read that aspnet_regiis can be used for web.config, but i need to do this programatically.
After opening the ...
0
votes
1answer
22 views
Encryption algorithm of Android Device Admin API
Does anybody know what algorithm they use when protecting an encrypted storage? I haven't found any information having read the documentation.
1
vote
2answers
69 views
PHP decryption fails on some strings with trim()'s
I'm having trouble decrypting values that end with %3D%3D. Upon decrypting I get a return value that's completely illegible. The encrypted value is being passed via the querystring, but I've run a ...
0
votes
0answers
25 views
Oracle Database Encryption without ASO
The situation is that we can only use Oracle Standard Edition. However, we also need to encrypt certain fields (or maybe the whole tablespace).
Is there any way we can encrypt the database / certain ...
0
votes
1answer
65 views
How secure is storing passwords with a salt and crypt()? [duplicate]
Coding an application that needs to store user's passwords for login.
At the moment, I am using the following code:
<?php
$password = $_GET['password'];
$salt = "pepper";
$password = ...
-4
votes
0answers
21 views
Decrypt code from exe file [closed]
Im in a need of decrypting some code, i opened up exe file but i never seen this kind of encryption. This file is basicly some malware from fb and i want to see how it is coded (im not planing to use ...
0
votes
1answer
23 views
Decrypting the saved encrypted username in java
For saving usernames and passwords I am encrypting them and then saving it. When the user logs in again I need to show the username. I don't know how hard/eassy is it to decrypt the username. Here is ...
2
votes
0answers
45 views
mount -t ntfs-3g /dev/sda1 /mnt/crypto/ -oencryption=aes-256 [closed]
I am trying to dabble in some bash shell scripting and have a normal function I would like to automate, if possible. The scenario is as follows:
I have an external hard drive with aes 256 ...
1
vote
0answers
43 views
Encrypt with Cryptico.js, Decrypt with OpenSSL
I am creating a public/private key on the server, sending the key to the JavaScript client where it encrypts a users password. The client sends the password to the server, and the server uses the ...
0
votes
1answer
31 views
How to reverse an specific encryption
I have two code pieces. One to encrypt and another to decrypt. But the decryption code doesnt seem to work like i want it too :/
Encryption: letter = ((letterInt + 1) * constant) modulus 29
...
0
votes
2answers
46 views
Python encryption function and global variables [duplicate]
Ok, so I am writing a python encryption code. The code was longer than it needed to be, so I switched part of it over to functions. As soon as I started doing this, it said that it could not find ...
1
vote
1answer
30 views
Encrypted text comes out wrong
Hi I have some code which encrypts a text and display it in a textView and send it as an SMS.
The algorithm is (letterInt * constant)%29 = new letterInt
so basically it is the leftovers of division ...
-1
votes
1answer
51 views
Encrypt safe password in the mysql database using encryption function
I want to encrypt password to prevent SQL injection and other attacks and I used an encryption function in PHP, but I don't know how to use it to encrypt passwords.
I want each password in the user ...
-1
votes
1answer
60 views
How do I hide a secret from other users?
I want to store a user passkey (which has to remain in cleartext to be sent to the server) in a way that other users of the same machine wont have access to it even though they have access to the ...
0
votes
1answer
24 views
ANDROID - SQLite cipher loadLibs error
i'm trying to use cipher sqlite plugin to encript a database.
i download the project, i imported it in eclipse. then i put assets zip and libs file in my project and i modified project properties such ...
0
votes
0answers
55 views
Cipher Feedback mode c++ implementation
HI I am tiring to implement a CFB with DES. I think i am able to encrypt using with CFB but how can I decrypt?? My main issue is CFB code for encrypting using CFB correct ??. Due to the restriction I ...
0
votes
2answers
48 views
PHP text lines to variables?
I have a php page that takes information from a .html page and writes it to a .txt file. As it was to write email data, I wanted it to be secure so added an encryption to it. I have one file that just ...
0
votes
0answers
31 views
Frez Systems' MD5 code in VB and MSDN's C# MD5 code equivalent?
On a given system they used an MD5 hash from Frez Systems Frez Systems
They use this to "encrypt" the password of a user and store it in a database. My task is to write a C# application that needs to ...
0
votes
1answer
36 views
AES ciphertext pass as parameter C++ cryptopp
I am trying to write 2 different functions to encrypt and decrypt the data using AES in cryptopp. I want to pass the ciphertext as a parameter to the decryption function. However on the decryption ...
0
votes
1answer
58 views
Portable encryption algorithm
I need to implement a new, or already existing, encryption algorithm that encrypt and decrypt a string using another string as key. The problem is that this algorithm have to work independently from a ...
1
vote
1answer
48 views
TEA Encryption in JAVA
I want to encrypt 4 number, but so far only 2 of them are being encrypted. I have tried placing the encrypt method into the loop but it doesnt encrypt and decrypt more than 2 number. Anyone is able to ...
-2
votes
0answers
36 views
Encryption/Decryption of file/string using AES-128 on Server and Client model [closed]
I am working on encryption and decryption of file/string and I'm using AES-128.
I want to send encrypted file/string from client to a server and I want that encrypted file to be decrypted at server ...
0
votes
0answers
54 views
How to decrypt SSL traffic using SSLDUMP?
I have:
private key(server.key) and Certificate (server.cert) .
server.key password is foobar
Command:
cat server.cert server.key > server.pem
ssldump -Ad -k ~/server.pem -p foobar -i ...
1
vote
1answer
46 views
Porting C# CryptoSys-assisted 3DES encryption to Objective-C CommonCrypto issues
I am currently working on an iPhone app that is a port of a subset of .NET C# functionality. I must log into a server using a 3DES encrypted password (yes, I know that is not an optimal standard, but ...
1
vote
2answers
48 views
SecurityException with Bouncy Castle [duplicate]
I am on Mac OS and getting this issue after performing software update on my mac.
Caused by: java.lang.SecurityException: JCE cannot authenticate the provider BC
at ...
2
votes
2answers
42 views
Storing scrambled Social Security numbers
I need to store a social security number in the unique scrambled state...
The reason: I would require social numbers, but I do not want to store them open in case if database gets compromised.
I ...
3
votes
1answer
52 views
Easiest two-way encryption to be used both on a PHP server and on iOS client
For private use only, I'm creating and hosting on my web server a PHP application that retrieves all my passwords for various accounts from a MySQL database and serves them to the client that is an ...
0
votes
2answers
65 views
Is this Data Encryption/Storage Method Secure? [closed]
Let me first say that I know it is a bad idea to store sensitive information in a mysql database, so please don't respond by saying "DON'T DO IT" or something to that effect. I am building a website ...
-1
votes
0answers
17 views
How to encrypt bucket in Amazon s3 server? [closed]
After login to Amazon s3 server,if I want to encrypt bucket where the uploaded files are saved,how can I make encrypted the bucket?
Anyone's suggestion will be appreciated.
0
votes
0answers
11 views
EmguCv writing a “header frame” to an avi file
I want to create an encrypted video by encrypting all frames taken from camera. But first i want to add a header to the video in a form of an image.
So, before staring grabbing images from camera I am ...
-1
votes
0answers
33 views
How to encrypt files at the time of uploading to Amazon S3? [closed]
I want to encrypt files when I am uploading them to Amazon S3 server. In Amazon S3 Web Console, we are able to encrypt each file if we right click on the file and encrypt it. But I want to add code in ...
0
votes
0answers
16 views
Save a bitmap already encrypted in the SDCARD (not convert) using AES - android
I am trying to encrypt a bitmap generated from a view before saving it in the SSD card.
I developed the method below based on this thread android encryption/decryption with AES, but it currently ...
0
votes
2answers
37 views
GPG encryption in an ASP.NET C# Web application - No Public Key
I have set-up Gpg4win on Windows Server 2008 R2 and the website is running .Net 4.5.
I'm using the Starksoft OpenPGP dll.
I've added the required public key to Gpg4win via remote desktop, however ...
0
votes
1answer
32 views
How Ephemeral Diffie Hellman works? [closed]
can anybody please provide link which will clearly explains how ephemeral Diffie hellman algorithm works (TLS_DHE_RSA_DES_256_CBC)?
4
votes
1answer
36 views
What (if any) javascript or php libraries are there for encryption that meet NIST requirements
We may need to encrypt some of the data in our software to meet healthcare privacy ("HIPAA") rules which simply defer to the NIST guild-lines. But it's really unclear what (if any) libraries for ...
1
vote
1answer
33 views
Core Data Encryption Class
I'm trying to use this wonderful git inside my xcode project:
https://github.com/project-imas/encrypted-core-data
It's fully functional when creating a new empty sqlite db.
But, how can I use an ...
1
vote
3answers
53 views
AES C# File Encryption - stream writes only 16 bytes
Here is piece of my code, which should encrypt file and write cryptograph into new file. Code is similiar to example found at Microsoft MSDN webpage.
byte[] inputBuffer = new ...
0
votes
1answer
22 views
shc on Mac showing 'Killed: 9' error
I'm using shc on Mac OS, to generate stripped binary of bash scripts, for distribution. The issue is, when i execute the stripped binary (with .x ext) it shows the error killed: 9.
Even when i make ...
0
votes
0answers
11 views
Getting IIS Role from Encrypted Cookie
I am trying to get a login working correctly but have run into a little problem. I do not have access to the C# code only the web side of everything so I am not sure if what I need is even possible.
...
4
votes
3answers
63 views
SSL and Diffie-Hellman
So I was reading this and was surprised by the answer of Remus. Because I thought it was exactly the other way around.
So, as for my question. Why is a program using the diffie-hellman key exchange ...

