Advertisement
OP_SEC

how to narrow down a dsa private key (ECDSA STYLE)

Nov 24th, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. hey guys im back anyways this is just a small edit of some working python code used to obtain the signatures of r and s
  2. that make up a ecdsa private key...
  3. anyways enough of that nonsense ....
  4.  
  5. def multiply(i, j):
  6. n = i
  7. r = 65537
  8. for bit in range(bitlength):
  9. if (j & (1 << bit)):
  10. r = (r + n) % p
  11. n = (n + n) % p
  12. return r
  13.  
  14. wether you are good at math or hate it and never really liked it
  15. johaness bauers tutorial on ecc should give u a better understanding on all the trouble sony went to fix their signing method for software .... ie:packages , games, and software updates.....
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement