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.
1
vote
0answers
821 views
Encrypting a ZipPackage Stream in Memory
I am using .NET 4.0 and trying to do the following:
Create a System.IO.Packaging.Package in Memory
Add Items to the package
encrypt package before it is written to file.
I tried to create a ...
1
vote
0answers
352 views
SJCL not working correctly in Rhino under Java, while same script behaves as expected in sample PHP script
Update:
This works
public static void main(String[] args){
try {
ScriptEngineManager mgr = new ScriptEngineManager();
List<ScriptEngineFactory> factories = ...
1
vote
0answers
1k views
iOS binary submission and encryption
I have a question about submitting a binary to iTunes Connect… You may remember my question about securing NSUserDefaults a few weeks ago, and I found an answer. I found ...
1
vote
0answers
604 views
AES decryption and encryption issue
I have done an encryption using the AES but iam not able to do the decryption Iam gettin an javax.crypto.IllegalBlockSizeException: last block incomplete in decryption.....I cant trace out where is ...
1
vote
0answers
210 views
encrypting files in rails
I'd like to be able to secure files uploaded by clients.
I haven't really found plug-and-play tools for Rails apps.
I'd like to use Amazon S3, but their server side encryption is a joke even though ...
1
vote
0answers
235 views
Secure way to transfer data over NFC?
I am currently writing a payment system to accept payment details from an NFC enabled smartphone (BlackBerry 9900) to a Windows client (C#.NET)
I am currently having two issues relating to security:
...
1
vote
0answers
188 views
Automatic Encryption and Decryption of Column in MySql
I wanted to encrypt and decrypt a column in MySql table based on the User logging in. Lets say when a normal user "John" logs in he should see that column encrypted, but when a super user "root" logs ...
1
vote
0answers
103 views
App engine does not copy entire encryted string in datastore viewer
I am storing passwords for my users as an encrypted string. If I open a user to edit in the admin console. The entire encrypted sting is not copied over and if I save the user, their password no ...
1
vote
0answers
222 views
Encryption Registration Number (ERN) or CCATS required for client/server encryption?
I want to encrypt communication between iPhone and my server and I will not use SSL for that. Do I still need ERN or CCATS application for that?
1
vote
0answers
272 views
using Perl Crypt::RSA but getting `Incomplete key` on attempted decryption
I am trying to use Crypt::RSA to decrypt a message (I was given n, which I then factored into p and q, and I was also given e. I computed d. programmatically generate `d` from `p` and `q` (RSA)) but ...
1
vote
0answers
372 views
spring security with HMAC?
HMAC seems to be the ideal security for a stateless webapp, storing nothing in server sessions.
But is it possible to integrate HMAC auth with Spring Security auth ?
I am currently using Spring ...
1
vote
0answers
264 views
C#: Bind data controls with custom connection string at design time?
My application has a database property page which includes settings for server, database, user id, password. I have a custom EncryptedSettings class (derived from ApplicationSettingsBase) which ...
1
vote
0answers
134 views
Library for streaming large XML files and encrypting parts of its content
I'm looking for a (preferably Java) library which can stream large XML files and encrypt/decrypt parts of it. Is there anything out there? It does not have to be open source or free of charge.
...
1
vote
0answers
259 views
QCA blowfish decryption fails
I'm trying to use QCA to encrypt/decrypt files.
When i use this code to encrypt, everything works fine (or seems to, at least).
But when i try to decrypt, the process() method returns an empty ...
1
vote
0answers
190 views
Column Encryption in Informix - SQL -26040: Encrypt VP initialization failed
We are using Informix as DB for our application.
We have a new requirement to encrypt one column (ID) alone. The encryption should not be external and should be in DB itself.
IBM explains the ...
1
vote
0answers
63 views
What is a secure approach for storing an encryption key to use in 2 different applications?
I have 2 fields that I need to encrypt in a SQL Server database, a password and an ID number. I'm thinking on Rijndael and I've already got the scripts to encrypt/decrypt and will use machinekey for ...
1
vote
0answers
95 views
Rails decrypt attributes and search
I need a type of encryption in rails that is also searchable. That is (im assuming the following is a solution) I need something like bcrypt that allows the following to be true.
encrypted == ...
1
vote
0answers
749 views
TripleDES ECB Encryption in Perl that's compatible with PHP mcrypt's implementation
I'm trying to create a package in perl that is equivalent to our pre-existing class in php for handling data encryption.
The encryption type seems to be TripleDES in ECB mode however I cannot ...
1
vote
0answers
253 views
How to encrypt All URL in asp.net mvc 2.
Is there a way in asp.net MVC 2 to encrypt all my url in the project.
The project is done, but now the only thing I need is to encrypt all url.
How can I perform that without modify all my code.
Is ...
1
vote
0answers
173 views
P_SHA-1 in Objective-C for WS-Trust
I'm trying to compute a key for a SOAP signature using P_SHA-1 defined by WS-Trust. The WS-Trust specification says that
key = P_SHA1 (EntropyFromRequest, EntropyFromResponse)
and the TLS spec ...
1
vote
0answers
243 views
PBE Parameters for Compatibility with Java's OpenSSL.encrypt() Function
I am attempting to write C code using the openssl libraries to decrypt data that has been encrypted by the Java function OpenSSL.encrypt(). I know the password, but I have not been able to figure out ...
1
vote
0answers
227 views
Encryption using CCCrypt not working. Please help
I'm trying to encrypt some data using the following call:
@implementation NSMutableData (AES256)
- (BOOL) encryptWithKey: (NSData *) key
{
size_t numBytesEncrypted = 0;
CCCryptorStatus result ...
1
vote
0answers
420 views
Java CipherInputStream NegativeArrayIndexException on close()
I have a problem with a simple decrypt implementation using CipherInputStream and a standard 128 bit AES Cipher. The code is below (The instance variable buf is just a simple 1024 length byte array ...
1
vote
0answers
242 views
PCI - Store Cryptographic Keys Securely, Requirement 3.4
From the PCI DSS2 docs:
https://www.pcisecuritystandards.org/documents/pci_dss_v2.pdf
3.4.1.b Verify that cryptographic keys are stored securely (for
example, stored on removable media that is ...
1
vote
0answers
385 views
Firefox Sync issues
I want to read the bookmarks and history from Firefox Sync accounts in one of my iOS Apps and I got it working for all "new" accounts (those with an email as login name), but it fails for old accounts ...
1
vote
0answers
742 views
How to protect PHP codes with serial/license mechanism with oauth or similar model to make client-server requests?
After searching for many and many encoding/encryption softwares, I have came to conclusion that none of those can protect your source codes from reverse-engineering attempts.
Even iOncube, zend has ...
1
vote
0answers
344 views
AES method for data stream in Python
i want to apply an AES 128b encryption (probably CBC + Padding) on a data stream.
if that matters, i'm sending chunks of around 1500bits each.
i work in Python, and i did a small test with M2Crypto ...
1
vote
0answers
266 views
Nginx: Is there encryption-decryption module?
We are working on scaling our object store layer, while making sure we have all security primitives. The proposed design will have http access via Nginx; and if we could encrypt/decrypt at the Nginx ...
1
vote
0answers
357 views
How iphone crypt AES256 output 32 Byte Hex String?
Dear Gurus,
I have code on java with bouncy castle lib, like this :
private static String AES (boolean encrypt, String inputString, String keyString) {
byte [] input, cipherText;
int ...
1
vote
0answers
982 views
PGP Encryption & PGP Decryption
I'm having trouble decrypting files using the BouncyCastle OpenPGP API. I followed this post: http://rafayal.blogspot.com/2009/06/pgp-decryption-with-c.html to decrypt files. However, I am getting an ...
1
vote
0answers
274 views
Drupal: How to integrate AES Encryption module with CCK?
AES Encryption (http://drupal.org/project/aes) module comes with an easy developer API
$encrypted_data => aes_encrypt("mydata");
$decrypted_to_plain_text => aes_decrypt($encrypted_data);
I ...
1
vote
0answers
52 views
need good resources about {on the fly encryption or Real-time encryption}
I need to Know about on fly encryption or Real-time encryption because I am trying to implement real time encryption which is some thing smiler to truecrypt (just the idea of the real-time encryption ...
1
vote
0answers
485 views
NSString encryption with modulus & exponent values of a Public Key in Objective C
I am quite new to Objective C development and came through the following problem:
I have the modulus and exponent values of a public key and need to encrypt an NSString value (password) with these ...
1
vote
0answers
639 views
Encrypt then decrypt an SWF file with PHP and Flex
would someone kindly provide me with the simplest forms of encrypting a file with PHP using mcrypt "say .swf" and then decrypting it in my flex application?
thank you in advance.
ps: the file will ...
1
vote
0answers
332 views
how to generate ValueLink merchant working keys
I am trying to generate ValueLink merchant working keys using a modified version of the apache ofbiz ValueLinkApi Class - src
I've modified it only to the extent of making it a standalone class that ...
1
vote
0answers
198 views
Drop Derby encryption
I have a Java application which uses an embedded Apache Derby DB for storing data. I want to give the user the option to enable/disable encryption of the database.
I found ways to encrypt an ...
1
vote
0answers
1k views
RC2 decryption using CCCrypt
I'm trying to decrypt RC2 data with only 64 effective bits.
Since I can only have 64-bits, it's my understanding that before calling CCCrypt I must use a method to reduce the key down to this many ...
1
vote
0answers
174 views
How do I share sign-in information between Outlook Web Anywhere and Exchange Web Services?
I'm attempting to develop a chrome extension which will allow a user to use Outlook Web Anywhere more effectively. During development, I noticed that there doesn't appear to be any way to share login ...
1
vote
0answers
495 views
Encryption of log4net in config file
I am trying to encrypt sections of the application configuration file (app.exe.config) for security purposes. I succeeded in encryption the appSettings and connectionStrings. However, I get the ...
1
vote
0answers
232 views
How to do Encryption using open ssl(BIO) using C++?
How to do Encryption using open ssl(BIO) using C++?
1
vote
0answers
98 views
For compressed archives, is XTS still viable?
For one of my projects @ college, I wanted to create a WinMo application to secure data. I have previously used FreeOTFE and I wanted to implement similar functionality to my application. My choice of ...
1
vote
0answers
452 views
Settings designer file complains when protecting configuration for connectionStrings in App.Config in VS 2010
I am trying to encrypt Configuration Information Using Protected Configuration in Visual Studio 2010.
I have the following info speicifed in the App.Config file:
<connectionStrings ...
1
vote
0answers
324 views
Has anyone know how to consume WCF Certificate based security WebServices from an iPhone app?
I'm trying to interact with a WCF web services using certificate based security and both message signature and encryption but with no luck. I had successfully implemented signature only ...
1
vote
0answers
2k views
Error occurred while decoding OAEP padding
I am half way through my problem.. Please Help..
I have successfully encrypted the text using public key of digital signatures but while decrypting it, I am getting the error.
Error occurred while ...
1
vote
0answers
95 views
Requires clarifications about Wireless Encryption Settings in Windows
In Windows Vista, if i click the properties of my wireless connection, and go to security tab, I am allowed to set the authentication type and encryption type.
I am confused! So any client computer ...
0
votes
0answers
7 views
Manually create Tank_Auth password in CodeIgniter
I am working on a new project where the existing devs have removed a fair portion of the sign-up code. In the past I would just enter my info directly into the database if I needed a test or ...
0
votes
0answers
6 views
Password security using JMS Request-Reply
I am implementing a Request-Reply pattern using JMS (ActiveMQ) as a logon service. It all works well. I send the username and password in the message and then check the encrypted version of the ...
0
votes
0answers
13 views
Creating encryption for cheap secret cameras
I have a friend who uses small, cheap cameras for filming human rights abuses. I am interested in finding a method to write software or firmware to modify standard "gum" secret cameras such as the ...
0
votes
0answers
18 views
Web-App using Hibernate that queries a SQL Server 2005 encrypted column
we are devolping a web-application using Spring 3.1.2 and Hibernate 4.1.7 with a database SQL Server 2005.
On a table we've got a column encrypted and we need to perform some queries like, for ...
0
votes
0answers
25 views
BouncyCastle Symmetric Cipher algorithm with output same length as input
I'm trying to create a BouncyCastle Cipher algorithm using their CSharp API that meets the following criteria:
Output is same length as input
Small variations in input (a few bytes) produce a large ...
