-
Notifications
You must be signed in to change notification settings - Fork 0
Security
Jason Cozens edited this page Jul 4, 2021
·
2 revisions
One of the biggest problems with the internet today is security and establishing identity. Whilst the management of internet applications remains with large, centratlised profit based coompaines it is dificult to see how the situation will improve. The aim of local net is to put managemnt into the hands of local people so identity can be established through personal contact.
- K - public Key
- k - private key
- t - plain text
- c - cipher
Holder of the Public Key sends a message to the holder of the private key.
c = e(K,t)
t = d(k,c) = d(k,e(K,t))
Any holder of the Public Key can verify it was sent by the holder of the private key.
c = e(k,t)
t = v(K,c) = v(K,e(k,t))