A type of encryption where the same key is used to encrypt and decrypt the message.
-3
votes
0answers
24 views
Encryption help needed, USD10,000 prize [closed]
If you're good at discrete math problems, then please help us find a weakness in our algo. You could earn a nice chunk of change if you can crack it, but even just finding significant weaknesses would ...
0
votes
3answers
37 views
Base64 encrypted Allowed Characters
I'm using Base64 encryption for encryping user id field in Java.
String abc = new String(Base64.encodeBase64("Actualuseridfield"));
I want to know whether the string abc above will contain the ...
0
votes
0answers
17 views
Implementation of PhoneStateListener
I need to implement the following things in my app:
1.) To listen for phone calls - means when call arrives, my app should pause in between and go to background, and the Calling screen appears. Once ...
-2
votes
0answers
24 views
Encrypting a File with AES in C#.net [closed]
I am looking for a good and performant example to encrypt a File in C# dotnet.
Can anyone provide a nice clean example.
0
votes
1answer
8 views
PKCS#11 Soft Token for supporting symmetric function
For testing my codes, I need a PKCS#11 soft token which support symmetric functions like AES, DES, ...
Which PKCS#11 soft token support at least one symmetric function?
0
votes
1answer
48 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
0answers
55 views
RSA and AES encryption
I am looking at the feasibility for using Chrome apps for the front end of some applications I am working on. (As an aside, if anyone has any thoughts on this - put it in the comments)
I would be ...
-1
votes
3answers
152 views
Symmetric mapping of guids
Is there an existing secure implementation to achieve following:
Guid original = Guid.NewGuid();
Guid inverted = MysteryImplementation(original, salt); // salt is some sort of input
Guid ...
0
votes
2answers
56 views
Get cipher used to password encrypt private key
I have a private key used for RSA exchanges that is password protected. I know the password, so I can use the key, however, I do not know which cipher was used to do the password.
I have other keys ...
-1
votes
1answer
178 views
Java library for managing a symmetric key [closed]
I'm a computer science student doing homework for 'Coding and security' course. The task is to write a program that encrypts a message (programming language of choice, symmetric encryption of choice). ...
0
votes
1answer
33 views
Where does openssh decrypt and react to received packets?
I am trying to add a second layer of encryption (encrypted on the client side, and decrypted on the server side).
EDIT: I apologize if I wasn't clear. I was looking for the function in the OpenSSH ...
0
votes
0answers
33 views
User file encryption to store them in server, without access to decryption key in server side
I am trying to build a file synchronization system, where users can encrypt their files in their own computers and then they can send it to server to store them, I think this system is something like ...
0
votes
2answers
68 views
Trying to send encrypted text via URI - /uDDBA causing “URIError: URI Malformed”
Simple Code:
encodeURIComponent("\uDDBA")
Result:
URIError: URI malformed
I am trying to do a simple encryption that will take some user input text, and a password, and it will then encrypt that ...
0
votes
2answers
117 views
Stopping decryption before EOF throws exception: Padding is invalid and cannot be removed
This is the scenario we have: We have huge encrypted files, in the order of gigabytes that we can decrypt correctly if we read them until the end.
The problem arises when we are reading and detect ...
0
votes
0answers
107 views
How to get Initialization Vector bytes
I am suppose to built an array of bytes using this elements in this order:
A symmetric encrypted AES key (with a random key for AES 128, random Initialization Vector for AES 128. Encrypted using AES ...
-1
votes
4answers
129 views
Recommended encryption method for recoverable passwords [closed]
I have an app which requires keeping multiple user passwords, with the requirement that they be recoverable.
I'm thinking about encrypting the passwords using the master password + another encryption ...
2
votes
1answer
24 views
Separate data encryption
I store some sensitive data. Data is divded into parts and I want to have separate accees to each part. Let's assume that I have 1000 files. I want to encrypt each file by the same symetric encryption ...
0
votes
1answer
185 views
Cipher.getInstance() is failing with java.security.NoSuchAlgorithmException: Cannot find any provider supporting AES/ECB/ZeroBytePadding
I have an Android app that encrypts data using AES with ECB and ZeroBytePadding. Everything works fine in that environment: encrypted data gets decrypted in Android without a problem, as follows:
...
0
votes
0answers
191 views
produce openssl encrypted file to be decrypted by command line
I would be greatful if somebody could look over my code.
I am trying to encrypt a file using c and the openssl framework.
This seems to encrypt the file and produces a file the same size if it was ...
0
votes
0answers
227 views
AESManaged File Encryption and Decryption and prepending initiaization vector
I am trying to encrypt/decrypt bytes - I have done a lot of reading about the Key and IV for the AES algorithm using the AESManaged class in System.Security.Cryptography. I read James Johnson's ...
0
votes
0answers
99 views
Java multi-level aes de/encrypting fails
I have been tasked with decrypting a file in Java that has been encrypted using the following criteria:
Encrypting:
`
byte[] masterKey;
if (Base64.decode(config.getProperty("encrMasterKey")) != ...
1
vote
3answers
511 views
OpenSSL: AES CCM 256 bit encryption of large file by blocks: is it possible?
I am working on a task to encrypt large files with AES CCM mode (256-bit key length). Other parameters for encryption are:
tag size: 8 bytes
iv size: 12 bytes
Since we already use OpenSSL 1.0.1c I ...
0
votes
0answers
41 views
Padding is invalid and cannot be removed aes [duplicate]
I have searched solutions on this website but none solved my problem. Sometimes I recieve "padding is invalid and cannot be removed" exception. I don't know what to do. When I tried some solutions, ...
1
vote
1answer
145 views
Encryption of datasource password in JBoss without the application policy
The main restriction is that for different clients I must have different databases with different credentials.
So I must create, for new clients, data sources on the fly (without restarting JBoss):
...
0
votes
1answer
92 views
In-built key Generation Algorithm using SHA256
I am working on an application in c# .Net where data needs to be encrypted and Since data privacy is my ultimate motive , I am doing it using AES Encryption and I use PasswordDervieBytes for ...
0
votes
1answer
78 views
SQL Server symmetric key is lost, how to decrypt the data?
We are in a situation where symmetric key and certificates are deleted, Is there any way can we decrypt the data?
We tried decrypting the data with same script which was used for creating the master ...
0
votes
1answer
167 views
How can I decrypt data stored in XML using the XML Encryption Syntax and Processing spec?
How could I use C# to decrypt this XML file while I know the password?
<EncryptedData xmlns="w3.org/2001/04/xmlenc#"; Type="w3.org/2001/04/xmlenc#Element"; Salt="Gnk/DB61AQ==" ...
-2
votes
2answers
109 views
Noob Java Encryption: Why isn't this simple decryption working? [closed]
This is my code which should encrypt and decrypt "hello".
// Generate a key
KeyGenerator kgen = KeyGenerator.getInstance("DES");
kgen.init(56);
SecretKey key = kgen.generateKey();
// Encryption Part
...
0
votes
1answer
61 views
Android RC2 Encryption
I'm working on making an Android client for a fairly old webservice. The webservice requires that I encrypt some of the data I send to it in RC2 style. I'm having trouble getting anything (Cipher, ...
0
votes
0answers
16 views
Libgrypt: GCRY_CIPHER_CBC_CTS flag causes errors while Decrypting
I am using Libgrypt for encrypting a file and sending it over the network. I am using AES-256 encryption with CBC mode. I wanted to make sure it worked for all files irrespective of whether the file ...
1
vote
1answer
100 views
How compute encrypt and decrypt time complexity for agorithm
I try calculate time complexity for the following algorithm.
private void encrypt()
{
M = new BigInteger(64,random);
C = M.multiply(k).mod(N); // O(n^2)
}
private void decrypt()
...
-1
votes
1answer
317 views
How to decrypt/encrypt a file in AES 256? [closed]
first of all, do not know much about encryption.
I need to decrypt some files, change some values ​​then re-encrypt.
how to do this deed?
Can some program can do that?
or someone could create a ...
1
vote
4answers
87 views
symmetrical encryption encrypting lots of small blocks
I'm trying to use the .Net symmetrical encryption System.Security.Cryptography to encrypt many small blocks of text without adding too much storage overhead (processing time is not important, just ...
1
vote
2answers
208 views
Encrypt a string in PHP, Decrypt it in C#?
In the action.php page, i have a string that i want to store in mysql but i want to encrypt it before inserting it to the db
$data = "Hello World";
$data = Encrypt_This_String($data,"ABCD"); // ...
0
votes
1answer
161 views
Invalid key size in Java symmetric encryption program
This is my basic symmetric encryption program. As im learning now I want to know how this is working. And I have the following Exception:
Exception in thread "main" ...
5
votes
5answers
1k views
Simple code to encrypt an .INI file string using a password
I am looking for something more sophisticated than ROT13, but which does not require a library (preferablly not even a unit, just a drop in function).
I want to symetrically encrypt/decrypt a given ...
0
votes
1answer
245 views
Bad Padding Exception :pad block corrupt when calling dofinal
I am working on encryption and decryption. I am very new to cryptography and i am facing pad block corrupt exception when using bouncy castle
Here is my encryption/decryption code.
private ...
0
votes
2answers
156 views
Is there any difference between implementation of Triple DES in C# and Java? Java gives error wrong IV size
In our application we are using Triple DES to encrypt and decrypt the data. We have the enc/dec code in C# which uses 24 byte key and 12 byte IV which works fine. Now we want to implement same code in ...
0
votes
0answers
37 views
Exploiting randomness failure in DSA
I am looking for help regarding an assignement on DSA. My goal is to abuse the user's failure to chose a different random R while applying the algorithm.
While I found information on the procedure to ...
3
votes
2answers
372 views
AES cryptography in vb6 and c#
I need a .NET (C# ideally) algorithm that will produce the same results as a vb6 one I made to encrypt and decrypt binary files. I've been trying to hunt down code for a week now and have had little ...
1
vote
1answer
78 views
Kerberos realm understanding
Could someone summarise why realms are necessary in Kerberos and the advantages of the concept.
I'm struggling to isolate everything I know / beginning to understand into some well defined points ...
1
vote
2answers
322 views
encrypting with AES CBC Java
I have little problem. When I try to encrypt text and then decrypt this text I get an error:
javax.crypto.IllegalBlockSizeException: Input length must be multiple
of 16 when decrypting with ...
1
vote
2answers
273 views
Padding in AES CBC
I am trying to test CBC with Random IV using (128-bit AES) in C#.
In my question to solve, I have 12-byte input message. The condition is that if PlainText is less than block-size (16-bytes) the ...
-3
votes
1answer
189 views
encrypt/decrypt sensitive(mostly passwords) data in our java spring based application
We are developing an application using java spring framework to manage multiple devices automatically. In the initial configuration of our application user selects the devices that needed to be ...
7
votes
2answers
822 views
Symmetric Encryption (AES): Is saving the IV and Salt alongside the encrypted data safe and proper?
I am trying to make sense of how to handle and manage an initilization vector and salt (when applicable) when encrypting and decrypting data using a symmetric encryption algorithm, in this case AES.
...
3
votes
2answers
648 views
Use private key in java using DES without generating key automatically
I have to encrypt/decrypt plain text in java using DES with a key. I have got a very good tutorial at IBM which can be found here . The problem with this example is that it is generating the key in ...
0
votes
1answer
36 views
Is there a significant risk to encrypt the secret with itself as key (with salt)?
I'd like to store user passwords encrypted in a database. I need to use a bidirectional, symetrical encryption, eg. AES (using a hash is not an option in this special case).
Part 1
Is there a ...
0
votes
0answers
165 views
Symmetric encryption using Dukpt
I am new to this forum. Recently I am tasked to decrypt a file that is encrypted using AES encryption( which require a secret key for encryption and decryption as well). File use to encrypt in every 5 ...
0
votes
1answer
216 views
BadPaddingException: invalid ciphertext
I would like some help as this is my first time in coding cryptography code.
The encryption code appears to be working correctly, but the decryption throws an error.
The error I get is:
...
-2
votes
1answer
318 views
AES. Encrypt array of bytes in powershell [closed]
I am need to encrypt array of bytes([byte[]]) in powershell script using AES cryptography method. I am find function that encode string:
[Reflection.Assembly]::LoadWithPartialName("System.Security")
...


