Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. 1. Bob is using the El Gamal signature scheme. His public key is (p, α, β) = (97,23,15)
  2. and his secret key is a= 67.
  3. a) Calculate Bob’s signature for message m=17 with ephemeral random k=31.
  4.  
  5. a) p = 97, α = 23, β = 15, a = 67, k = 31, m = 17
  6.  
  7. r = αk (mod p) = 2331 mod 97 = 87
  8. s = k-1 (m – ar) (mod (p - 1) = 31-1 (17 – 67*87) mod 96 = 20
  9. so does that mean that the signed message is (17, 87, 20)?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement