Web based voting system

deepta

deepta

@deepta-c1pMW9 Oct 27, 2024
Hello
I had been through a paper on Web based voting system which suggests a method to cast vote online and then encrypt the vote and also add a digital signature to it before being sent to the server. But no details regarding how the keys are generated for signing is mentioned. The diagrams given in the paper suggest that the user is supposed to enter the private key. Can anyone suggest some secure method to generate pair of keys for digitally signing data??

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform

  • avi2

    avi2

    @avi2-gV81vT Sep 19, 2014

    why not a random number?
  • deepta

    deepta

    @deepta-c1pMW9 Sep 19, 2014

    avi2
    why not a random number?
    But how is it possible that both private and public key be random numbers. They must have a relation. Isn't it?
  • avi2

    avi2

    @avi2-gV81vT Sep 19, 2014

    in that case, you can use client's machine keys itself
  • deepta

    deepta

    @deepta-c1pMW9 Sep 20, 2014

    avi2
    in that case, you can use client's machine keys itself
    But can you give me a clear idea about it.
  • avi2

    avi2

    @avi2-gV81vT Sep 21, 2014

    yeah, what details you want?

    you can use ssh keys of the person. they are unique as they can be and come in pair. You can have public key and match his private key during authentication
  • Manish Goyal

    Manish Goyal

    @manish-r2Hoep Sep 23, 2014

    avi2
    yeah, what details you want?

    you can use ssh keys of the person. they are unique as they can be and come in pair. You can have public key and match his private key during authentication
    Can we access system ssh keys through web?
  • Prasad Ajinkya

    Prasad Ajinkya

    @prasad-aSUfhP Sep 24, 2014

    Perhaps you need to read about Digital Signatures and <a href="https://en.wikipedia.org/wiki/Pretty_Good_Privacy" target="_blank" rel="nofollow noopener noreferrer">Pretty Good Privacy</a> first.