Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4324310
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T09:06:55+00:00 2026-05-21T09:06:55+00:00

I want to encrypt and decrypt a file in java, i had read this

  • 0

I want to encrypt and decrypt a file in java, i had read this url http://www-users.york.ac.uk/~mal503/lore/pkencryption.htm and i got two files namely public Security certificate and private security certificate file and private.pem file, i copied these files and pasted in the current directory and worte java code as follows, when i run this no encryption or decryption is performed, pls see this and tell me where i went wrong

Encrypt Code

File ecryptfile=new File("encrypt data");
                File publickeydata=new File("/publickey");
                File encryptmyfile=new File("/sys_data.db");
                File copycontent =new File("Copy Data");
                secure.makeKey();
                secure.saveKey(ecryptfile, publickeydata);
                secure.encrypt(encryptmyfile, copycontent);

Decrypt code

File ecryptfile=new File("encrypt data");
                File privateKeyFile=new File("/privatekey");
                File encryptmyfile=new File("/sys_data.db");
                File unencryptedFile =new File("unencryptedFile");
                try {
                                secure.loadKey(encryptmyfile, privateKeyFile);
                                secure.decrypt(encryptmyfile, unencryptedFile);
                        } catch (GeneralSecurityException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                        } catch (IOException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                        }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T09:06:56+00:00Added an answer on May 21, 2026 at 9:06 am

    You simply have muddled your files. This code works using the DER files generated from openssl as described in the article you linked:

        FileEncryption secure = new FileEncryption();
    
        // Encrypt code
        {
            File encryptFile = new File("encrypt.data");
            File publicKeyData = new File("public.der");
            File originalFile = new File("sys_data.db");
            File secureFile = new File("secure.data");
    
            // create AES key
            secure.makeKey();
    
            // save AES key using public key
            secure.saveKey(encryptFile, publicKeyData);
    
            // save original file securely 
            secure.encrypt(originalFile, secureFile);
        }
    
        // Decrypt code
        {
            File encryptFile = new File("encrypt.data");
            File privateKeyFile = new File("private.der");
            File secureFile = new File("secure.data");
            File unencryptedFile = new File("unencryptedFile");
    
            // load AES key
            secure.loadKey(encryptFile, privateKeyFile);
    
            // decrypt file
            secure.decrypt(secureFile, unencryptedFile);
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to encrypt and decrypt a file in java, i had read this
I want to encrypt and decrypt a file containing usernames and passwords. Since this
i want to encrypt string in java and decrypt the same string in C#
I want to encrypt and decrypt 10000 bytes of a music file. I used
I want to create a program, which can encrypt and decrypt a complete file
I want to encrypt and decrypt the isolated storage file. The Microsoft site took
I want to encrypt a string and embed it in a URL, so I
So say I want to encrypt a file and the only way I want
I have to encrypt the output file in A application, then decrypt it in
I want to email users an encrypted file from a Django Backend Script (running

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.