encrypt.c 6.39 KB
Newer Older
lwc-tester committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
//
//  main.c
//  orangealg
//
//  Created by Bishwajit Chakraborty on 23/02/19.
//  Copyright © 2019 Bishwajit Chakraborty. All rights reserved.
//

#include <stdio.h>
#include<string.h>
#include "orangemodule.h"
#include "api.h"
#include "crypto_aead.h"
#define CRYPTO_BLKBYTES (CRYPTO_NPUBBYTES + CRYPTO_KEYBYTES)
int crypto_aead_encrypt(
                        unsigned char *c,unsigned long long *clen,
                        const unsigned char *m,unsigned long long mlen,
                        const unsigned char *ad,unsigned long long adlen,
                        const unsigned char *nsec,
                        const unsigned char *npub,
                        const unsigned char *k
                        )
{
    
    
    /*################################################################################################################
     
     Encryption Initialization Module
     
     ################################################################################################################*/
    
    if(nsec !=NULL){
        u32 unused[1];                               // using Nsec
        memcpy(unused,nsec,0);
    }

    u8 photon_in[CRYPTO_BLKBYTES] ={0};
    for(int j=0 ; j<CRYPTO_NPUBBYTES ;j++)
    {
        photon_in[j] = npub[j];
                                                               // Initialization of input
    }
    for(int j=0 ; j<CRYPTO_KEYBYTES ;j++)
    {
        photon_in[j+CRYPTO_NPUBBYTES] = k[j];                  // Initialization of input
    }
    u8 key[CRYPTO_KEYBYTES];
    memcpy(key, k, CRYPTO_KEYBYTES);
    
    /*################################################################################################################
     
     Enccryption Associate Data Processing Module
     
     ################################################################################################################*/
    if(adlen==0 && mlen == 0)
    {
        photon_in[CRYPTO_BLKBYTES/2] = photon_in[CRYPTO_BLKBYTES/2]^0x02;
        PHOTON_256_Permutation(photon_in);
        for(int j=0; j<CRYPTO_ABYTES;j++)
            c[j] = photon_in[j];
        *clen = CRYPTO_ABYTES;
        return 0;
    }
    if(adlen==0)
    {
        photon_in[CRYPTO_BLKBYTES/2] = photon_in[CRYPTO_BLKBYTES/2]^0x01;
        PHOTON_256_Permutation(photon_in);
        txt(key, photon_in, m , &c[0], mlen, 1);
        
        tag(photon_in);
        for (ul j=0;j<CRYPTO_ABYTES;j++)
        {
            c[mlen+j]= photon_in[j];
            
        }
       
        *clen = mlen+CRYPTO_ABYTES;
        return 0;
    }
    else
    {
        PHOTON_256_Permutation(photon_in);
                                                         // Associated Data processing
        hash(photon_in, ad, adlen, 1, 2);
lwc-tester committed
85 86 87 88 89
        /*################################################################################################################
         
         Encryption Message Processing Module
         
         ################################################################################################################*/
lwc-tester committed
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
        if(mlen!=0)
        {
            PHOTON_256_Permutation(photon_in);
            txt(key, photon_in, m, &c[0], mlen, 1);
        }
        
         tag(photon_in);
        for (int j=0;j<CRYPTO_ABYTES;j++)
        {
            c[mlen+j]= photon_in[j];
           
        }
        *clen = mlen+CRYPTO_ABYTES;
        return 0;
        
    }

    return 0;
}

int crypto_aead_decrypt(
                        unsigned char *m, unsigned long long *mlen,
                        unsigned char *nsec,
                        const unsigned char *c, unsigned long long clen,
                        const unsigned char *ad, unsigned long long adlen,
                        const unsigned char *npub,
                        const unsigned char *k
                        )
{
    /*################################################################################################################
     
     Decryption Initialization Module
     
     ################################################################################################################*/
    
    if(nsec !=NULL){
        u32 unused[1];                               // using Nsec
        memcpy(unused,nsec,0);
    }
    
    *mlen = clen-CRYPTO_ABYTES;
    
    u8 photon_in[CRYPTO_BLKBYTES] ={0};
    for(int j=0 ; j<CRYPTO_NPUBBYTES ;j++)
    {
        photon_in[j] = npub[j];
                                                           // Initialization of input
    }
    for(int j=0 ; j<CRYPTO_KEYBYTES ;j++)
    {
        photon_in[j+CRYPTO_NPUBBYTES] = k[j];                  // Initialization of input
    }
    u8 key[CRYPTO_KEYBYTES];
    memcpy(key, k, CRYPTO_KEYBYTES);
    
    /*################################################################################################################
     
     Decryption Associate Data Processing Module
     
     ################################################################################################################*/
    if(adlen==0 && * mlen == 0)
    {
        photon_in[CRYPTO_BLKBYTES/2] = photon_in[CRYPTO_BLKBYTES/2]^0x02;
        PHOTON_256_Permutation(photon_in);
        for (int j=0;j<CRYPTO_ABYTES;j++)
        {
            if(c[j]!= photon_in[j])
                return -1;
        }
        return 0;
    }
    if(adlen==0)
    {
        photon_in[CRYPTO_BLKBYTES/2] = photon_in[CRYPTO_BLKBYTES/2]^0x01;
        PHOTON_256_Permutation(photon_in);
        txt(key, photon_in, c , &m[0], *mlen, -1);
        tag(photon_in);
        ul j=0;
        while(j<CRYPTO_ABYTES)
        {
            if(c[*mlen+j]!=photon_in[j])
                return -1;
            j++;
        }
        
        return 0;
    }
    else
    {
        
        PHOTON_256_Permutation(photon_in);
        
        hash(photon_in, ad, adlen, 1, 2);
/*################################################################################################################
         
         Decryption Message Processing Module
         
##############################################################################################################*/
        
        
        if(*mlen!=0)
        {
            PHOTON_256_Permutation(photon_in);
            txt(key, photon_in, c, &m[0], *mlen, -1);
        }
        
        tag(photon_in);
        for (int j=0;j<CRYPTO_ABYTES;j++)
        {
            if(c[*mlen+j]!= photon_in[j])
                return -1;
        }
        return 0;
        
    }
    
    return 0;
}