Update
This commit is contained in:
parent
e47f0871fe
commit
ac9725b356
38 changed files with 1954 additions and 1872 deletions
|
@ -1,6 +1,6 @@
|
|||
# Digital Signature
|
||||
|
||||
Digital signature is a method of mathematically (with [cryptographical](cryptography.md) algorithms) proving that, with a very high probability, a digital message or document has been produced by a specific sender, i.e. it is something aka traditional signature which gives a "proof" that something has been written by a specific individual.
|
||||
Digital signature is a method of [mathematically](math.md) (with [cryptographical](cryptography.md) [algorithms](algorithm.md)) proving that, with a very high probability, a digital message or document has been produced by a specific sender, i.e. it is something akin traditional signature which provides a proof that something has been written by a specific individual.
|
||||
|
||||
It works on the basis of [asymmetric cryptography](asymmetric_cryptography.md): the signature of a message is a pair of a public key and a number (the signature) which can only have been produced by the owner of the private key associated with the public key. This signature is dependent on the message data itself, i.e. if the message is modified, the signature will no longer be valid, preventing anyone who doesn't posses the private key from modifying the message. The signature number can for example be a [hash](hash.md) of the message decoded with the private key -- anyone can check that the signature encoded with the public key gives the document hash, proving that whoever computed the signature number must have possessed the private key.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue