Thread: Testing Test Cases of AES128-GCM

  1. #1
    Registered User
    Join Date
    Apr 2019
    Posts
    2

    Exclamation Testing Test Cases of AES128-GCM

    Hello, I need to use that code for test 2 test cases if they are okay. But i don't know how to start. I don't understand what is variable R and also that constant 0x8000000000000000ULL in gfmul function. Do I need to use uint128 instead of uint64 for AES128? It is only supported in C++ I think, but i need to use C only. Is there somebody that can help me? I am studying C language only for 6 months and for these operations I am not ready yet.
    Code:
    Code:
    #include <inttypes.h>#include <stdint.h>
    #include <stdio.h>
    
    
    struct aes_block {
        uint64_t a;
        uint64_t b;
    };
    
    
    // high level C implementation of GF(128) multiplication with GF polynomial defined in GCM specification
    void gfmul(uint64_t *x_in, uint64_t *y, uint64_t *res)
    {
        uint64_t R = { 0xe100000000000000ULL };
        struct aes_block z = { 0, 0 };
        struct aes_block v;
        uint64_t x;
        int i, j;
    
    
        v.a=y[1];
        v.b=y[0];
    
    
        for (j = 1; j>=0; j--) {
            x = x_in[j];
            for (i = 0; i < 64; i++, x <<= 1) {
                if (x & 0x8000000000000000ULL) {
                    z.a ^= v.a;
                    z.b ^= v.b;
                }
                if (v.b & 1ULL) {
                    v.b = (v.a << 63)|(v.b >> 1);
                    v.a = (v.a >> 1) ^ R;
                } else {
                    v.b = (v.a << 63)|(v.b >> 1);
                    v.a = v.a >> 1;
                }
            }
        }
        res[0] = z.b;
        res[1] = z.a;
    }
    
    
    // printf correctly 64 bit variables 
    void gf_print( uint64_t *in ) {
          printf("%016" PRIx64, in[1]);  printf("%016" PRIx64, in[0]);  printf("\n");    
    }
    
    
    int main ( void ) {
    
    
            uint64_t  H[2], E_K_Y1[2], X1[2];
    
    
    // this code assumes the following bits ordering:       
    //     x^0 ...                        x^128   <- "LSB bit" of GF(2^128) representation is on the left most side!!
    // see e.g.:
    // H = 66e94bd4ef8a2c3b884cfa59ca342b2e = AES(Key,0)
            H[1] = 0x66e94bd4ef8a2c3bULL;
            H[0] = 0x884cfa59ca342b2eULL;
    // E_K_Y1 = 0388dace60b6a392f328c2b971b2fe78 = AES(Key, Counter=2)
            E_K_Y1[1] = 0x0388dace60b6a392ULL;
            E_K_Y1[0] = 0xf328c2b971b2fe78ULL;      
    
    
            gf_print( H );             // the first input of GF(2^128) multiplication 
            gf_print( E_K_Y1);         // the second input of GF(2^128) multiplication
            gfmul( H, E_K_Y1, X1 );    
            gf_print( X1 );            // result of GF(2^128) multiplication
    
    
        return 0;
    }
    Makefile (i don't know if you need to know it):
    Code:
    CC=gcc
    CFLAGS=-m32 -c -O2 -Wall
    LDFLAGS= -m32
    SOURCES=gf128_mul.c
    OBJECTS=$(SOURCES:.c=.o)
    EXECUTABLE=gf128_mul
    all: $(SOURCES) $(EXECUTABLE)
    $(EXECUTABLE): $(OBJECTS)
        $(CC) $(LDFLAGS) $(OBJECTS) -o $@
    .c.o:
        $(CC) $(CFLAGS) $< -o $@
    clean:
        rm -rf $(OBJECTS) $(EXECUTABLE)
    Test case (1) (i know it is 3, but it is first tested):
    Testing Test Cases of AES128-GCM-2gw6-png
    Test case (2):
    Testing Test Cases of AES128-GCM-2gw5-png
    If you want to try code to edit it or something, I also uploaded these test cases to .txt file there:Paste ofCode
    Thanks a lot for help, Martin.

  2. #2
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,661
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Test cases from C program
    By Satya in forum C Programming
    Replies: 1
    Last Post: 10-21-2017, 11:46 PM
  2. generate test cases
    By lisa18 in forum C++ Programming
    Replies: 3
    Last Post: 08-22-2006, 07:16 PM
  3. Test cases
    By desertstorm in forum C Programming
    Replies: 2
    Last Post: 05-13-2006, 12:06 AM
  4. test cases
    By krithi in forum C Programming
    Replies: 10
    Last Post: 12-12-2002, 07:13 AM
  5. Deriving Test Cases
    By test in forum C Programming
    Replies: 2
    Last Post: 10-01-2002, 05:45 PM

Tags for this Thread