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 8788469
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T22:09:06+00:00 2026-06-13T22:09:06+00:00

I’m implementing the Advanced Encryption Standard (AES) in C. During the subBytes() step I’m

  • 0

I’m implementing the Advanced Encryption Standard (AES) in C. During the subBytes() step I’m having some problems on the conversion from char to binary.

With the code:

void subBytes(unsigned char* state) {
    int i=0;
    for(; i<=127; i++) {

        printf("%d",getBitState(state, i));

        if(i%32==0){printf("\n");}
        else if(i%8==0) {printf(",");}
    }
    printf("\n");
}

int getBitState(unsigned char* state, int i) {

    int bytePosition = i/8;
    int bitPosition = i%8;
    unsigned char byteValue = state[bytePosition];

    return  (byteValue >> (8-bitPosition)) & 1;
}

If the state matrix is:

50,   67,   246,   168,   
136,   90,   48,   141,   
49,   49,   152,   162,   
224,   55,   7,   52,   

The output is:

00110010,01000010,11110110,10101000

10001000,01011010,00110000,10001100

00110000,00110000,10011000,10100010

11100000,00110110,00000110,0011010

So, as you can see, some values are well converted from char to binary but others don’t. For example, the value 67 is converted in 01000010 (66).
The only pattern that I see is that odd numbers are converted in even binary numbers.

Can anybody spot what I’m doing wrong ?

  • 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-06-13T22:09:07+00:00Added an answer on June 13, 2026 at 10:09 pm

    Your getBitState function can be reduced to the following:

    int getBitState(unsigned char* state, int i)
    {
        return !!((0x80 >> (i & 7)) & state[i >> 3]);
    }
    

    The double bang converts any nonzero value to 1.

    Alternatively, since this is cryptography and speed is an issue, use a macro:

    #define GETBITSTATE(state, i) (!!((0x80 >> (i & 7)) & state[i >> 3]))
    

    Here’s an ideone.

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

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
I have just tried to save a simple *.rtf file with some websites and
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
We're building an app, our first using Rails 3, and we're having to build
I have a text area in my form which accepts all possible characters from
Does anyone know how can I replace this 2 symbol below from the string
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I have an MVC Razor view @{ ViewBag.Title = Index; var c = (char)146;

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.