|
Algorithm 4 Signature Verification. |
-
1:
Input: Encrypted file C, Signers Public key ()
-
2:
functionVerification(C, )
-
3:
calculate hash of the received encrypted data file C to be verified
-
4:
Using Public key of signer, extract of senders file
-
5:
if
=
then
-
6:
return C
-
7:
else
-
8:
return “Signature incorrect”
-
9:
end if
-
10:
end function
|