Question: Bob's the RSA system uses the parameters n = 9 1 , e = 5 , d = 2 9 ( so his public key

Bob's the RSA system uses the parameters n=91,e=5,d=29(so his public key (n,e)=(91,5) and a modified Jenkins hash function [wikipedia] given below.
Bob does digital signature signing for a given message msg to obtain its signature
s. Then he sends Alice (msg,s). Alice knows Bob's public key and the modified Jenkins function, once she receives Bob's (msg,s), she performs digital signature verifying.
unsigned int jenkins(char*msg, size_t len)
size_t i=0
unsigned int hash =0;
while
hash +=msg[i++]
hash += hash 10;
hash ??= hash {:>6;}
hash += hash 3;
hash ??= hash >11;
hash += hash 15;
return hash;
 Bob's the RSA system uses the parameters n=91,e=5,d=29(so his public key

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!