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

  • Home
  • SEARCH
  • 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 7430629
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T09:10:22+00:00 2026-05-29T09:10:22+00:00

1) I couldn’t find the Java implementation anywhere for the JCE AES encryption, but

  • 0

1) I couldn’t find the Java implementation anywhere for the JCE AES encryption, but does anyone know if the byte array it takes as an argument is treated as signed or unsigned? The code I’m using is:

public static byte [] ecbAesEncrypt(byte [] key, byte [] currentVector) {
        SecretKeySpec keySpec = null;
        Cipher cipher = null;
        byte [] encryptedValue = null;

        try {
            keySpec = new SecretKeySpec(key, "AES");

            cipher = Cipher.getInstance("AES/ECB/NoPadding");
            cipher.init(Cipher.ENCRYPT_MODE, keySpec);

            encryptedValue = cipher.doFinal(currentVector);
        }
        catch (Exception e) {
            e.printStackTrace();
            return null;
        }

        if (DEBUG)
            printHex("AES-ECB encrypt: ", encryptedValue);

        return encryptedValue;
    }

2) Will the bitwise XOR of 2 signed bytes give the same results as the bitwise XOR of 2 unsigned bytes? By this I mean that just the bit representations will be the same. I’m thinking yes, but just want to make sure.

3) Somewhat related the question 1, what bitwise operations would produce different results between signed and unsigned bytes?

  • 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-29T09:10:22+00:00Added an answer on May 29, 2026 at 9:10 am

    AES treats the bytes as purely binary data. Not as numbers which have a sign or don’t have a sign.

    There are no unsigned bytes in Java. They are always signed. But the sign only matters when you do integer arythmetics on them.

    The bitwise operators are described in the Java tutorial.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Couldn't find anything on this with a Google Search. Does anyone know how to
I couldn't really find this in Rails documentation but it seems like 'mattr_accessor' is
I couldn't find an answer - does NHibernate supports MsSql2008? For example - can
I couldn't find a straight answer to my question and need to know it
I couldn't find a more descriptive title, but here there is an example: import
couldn't find a similar topic but this may boil down to not knowing how
Couldn't find this anywhere, maybe I'm looking for the wrong verbs. I'm trying to
I couldn't find an answer anywhere on the Web, so I'm going to answer
Couldn't find anything really useful for my needs. So if I already know my
Couldn't find an answer to this question. It must be obvious, but still. I

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.