0
votes
0answers
17 views
What are those “garbage” 16 bytes at the beginning of an unencrypted EncryptedData tag from an encrypted ws-security SOAP message? (WCF)
I'm inspecting a WCF request message in order to implement part of the WS-Security standard to have iPhone <-> WCF intercommunication (I'm using certificate security over basicH …
0
votes
3answers
25 views
how can the decryption happen at a later stage with this AES program
i am really not able to figure this out myself so please help me out.
this is a program to encrypt contents of an existing file keeper.txt using 128bit AES putting the encrypted te …
0
votes
2answers
33 views
please advice whether about our case of using encryption
Our client wants to give us a database. The original database has a phone number column. He doesn't want to give us a phone number. Somehow i'm not sure why - it is decided that cl …
0
votes
3answers
70 views
help understanding this comment .
I'm trying to understand this comment from AES implementation code:
/**
* This program generates a AES key, retrieves its raw bytes, and
* then reinstantiates a AES key from the …
3
votes
2answers
64 views
Persisting web service passwords
I'm not a security guy so any help on this would be greatly appreciated.
I have a large number of third-party field devices that have remote methods that can be called across xml- …
5
votes
9answers
191 views
Writing a C# desktop application that needs to embed an encrypted database. What type of database should I use?
Hey SO'ers, I'm making a C#/WPF app that needs to access a number of tables to generate some of the xaml code I will use in the app. The tables will also contain some floating poin …
1
vote
2answers
44 views
why should aes key be generated randomly ?
when you want to encrypt something dont you want the key to decrypt to be decided by you and not generator by some random number generator ?
i see this code in stackoverflow post. …
0
votes
1answer
26 views
what is this error on open declaration ?
KeyGenerator kgen = KeyGenerator.getInstance("AES");
kgen.init(128); // 192 and 256 bits may not be available
in eclipse when i select KeyGenerator and right click open dec …
0
votes
1answer
30 views
AES encryption - password , salt not resolved ?
i get the error " password , salt not resolved ". any suggestions ?
package org.temp2.cod1;
import java.security.*;
import java.security.spec.KeySpec;
import javax.crypto.*;
impo …
0
votes
3answers
60 views
md5 encrypt cookiedata with serialized array
Hello,
I was attempting to
encrypt de cookie data with md5, but I can not validate the hash back.
It has got to do, with the fact that cookie_data is a serialized array, because …
1
vote
2answers
36 views
storing credit card info
So I would like to modify a PHP / MySQL application in order to store credit card but not cvv and bank account info securely. PCI DSS require 1024 RSA/DSA. A small number of users …
1
vote
9answers
164 views
Is there any point encrypting passwords with more than md5?
I am not a security expert... so I might be very wrong here.
Am I right in that the only advantage to using a stronger algorithm is to slow down password cracking?
In which case …
1
vote
3answers
49 views
sending encrypted email
Hi, I am currently sending an email from my xcode/iphone app. The requirements are to send an encrypted email or attached file and then be able to decrypt/open the information aft …
4
votes
2answers
74 views
what is best possible way of salting and storing salt?
Hi guys I have read about password salting, but this might sound a little odd. But how do I store and secure the salt. For example in a multi tire architecture say I use the client …
-1
votes
2answers
18 views
what libraries do i need to run this keygenerator class
which libraries do i need to import for this class
KeyGenerator kgen = KeyGenerator.getInstance("AES");
kgen.init(128);
if you dont want to spoon feed me atleast tell me how can …
