Date: Fri, 31 Jan 1997 22:15:57 -0500
From: David Sykes <dsykes@greenwood.net>
To: java-security@java
Subject: code examples
The code examples in the file JavaSecurityOverview.html are, for the
most part, straight foward and easy to understand. The following code
example is the one exception. What does the variable "allegedSignature"
reference?
if (signature.verify(allegedSignature)) {
System.out.println("Signature checks out");
} else {
System.out.println("Signature does not check out.");
}