Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsWhite Papers
Discussion GroupsFirst AidDatabasesJavaBeansGUIJava 3DVirtual MachineCORBASecurityToolsGeneral
Java DirectoryOpen Source ProjectsSample Book ChaptersUser GroupsWeb Resources
Related Topics
Databases.NETMore Topics ...

Java Forum / General / January 2007

Tip: Looking for answers? Try searching our database.

how to encrypt file with AES in Java?

Thread view: 
JTL.zheng - 06 Jan 2007 16:01 GMT
Could you give me an example about how to encrypt file with AES in
Java?

something like:
public static boolean encrypt(String key, File fileIn, File fileOut);

Thank you very much
Arne Vajhøj - 06 Jan 2007 18:18 GMT
> Could you give me an example about how to encrypt file with AES in
> Java?
>
> something like:
> public static boolean encrypt(String key, File fileIn, File fileOut);

If you setup as:

        Cipher aes = Cipher.getInstance("AES");
        aes.init(mode, new SecretKeySpec(key.getBytes("UTF-8"), "AES"));

then you can encrypt with:
        b2 = aes.update(b, 0, n);
and:
        b2 = aes.doFinal(b, 0, n);

Arne


Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.