This is the corresponding decryption function for a message C = (u, v, w)
March 17, 2013
This is the function for encryption once the keys are generated. I have added the corresponding mathematical expressions, to make it easy to understand and modify. I have not yet tested it.
March 16, 2013
These are the hash functions that are needed to implement the BF IBE after the distributed share generation. H1 : {0,1}* -> G2* H2 : GT -> {0,1}^l, l = 20 H3 : {0,1}^l X {0,1}^l -> Zp H4 : {0,1}^l -> {0,1}^l This is the C code of the hash functions using the PBC […]
March 6, 2013
I added this function to the PBC wrapper classes So when the DKG completes, I call ‘result.share.dumpfile’. Not going into the depths. Just documenting these functions. To extract the element saved in binary, I use this function :
March 3, 2013
Well, after a few days of trying to modify the DKG protocol, it seems obvious that the code is well structured(I admire the authors) and editing a few sections without complete knowledge would be a disaster(the code has no documentation that I know of). Above all, due to my lack of any knowledge in complex […]
February 28, 2013
The changes and the modifications that have been made to the networkmessage.h file : I might change this later on, probably. The code for my project is available at GitHub.
February 24, 2013
In networkmessage.h, these are the message declarations for writing a message and reading the message. PingNetworkMessage : In networkmessage.cc, these are the declarations.
March 17, 2013
0