0
votes
How would you implement salted passwords in Tomcat 5.5
Passord-based encryption in JCE uses salt as per PKCS#5. See http://java.sun.com/j2se/1.4.2/d …
0
votes
Is it worth mitigating security risks in every application
Properly, one should do a risk/return estimate for any security programming effort. However, of the three major aspects of computer security (confidentiality, integrity, and availability), you are …
0
votes
What’s the deal with all the different UIDs a process can have?
In addition to the real, effective, and saved UIDs, Unix systems with auditing enabled also have the audit UID. A process's AUID identifies the user who started the process; it is not changed by s …
1
vote
How do I tighten security of my hybrid ASP.NET 1.1 / Ajax solution?
The easiest solution from a programming standpoint is to use two way HTTPS. That is, the server presents a certificate to the client, and the client presents a certificate to the server. Then onl …
