Uses of Class
P2PWNC.P2PWNCSignature

Uses of P2PWNCSignature in P2PWNC
 

Fields in P2PWNC declared as P2PWNCSignature
protected  P2PWNCSignature P2PWNCReceipt.receiptSignature
           
protected  P2PWNCSignature P2PWNCCert.teamSignature
          Signature of the issuer team (the team signs the two public keys using its secret key)
 

Methods in P2PWNC that return P2PWNCSignature
protected  P2PWNCSignature P2PWNCCrypt.signMessage(P2PWNCKey key, byte[] message, boolean pub)
          Signs a message using the specified key.
 P2PWNCSignature P2PWNCReceipt.getReceiptSignature()
           
 P2PWNCSignature P2PWNCCert.getTeamSignature()
          Retirns the team's signature.
 

Methods in P2PWNC with parameters of type P2PWNCSignature
protected  boolean P2PWNCCrypt.verifySignature(P2PWNCSignature signature, P2PWNCKey key, byte[] message, boolean pub)
          Verifies a P2PWNCSignature.
 void P2PWNCReceipt.setReceiptSignature(P2PWNCSignature receiptSignature)
           
 void P2PWNCCert.setTeamSignature(P2PWNCSignature teamSignature)
          Sets the team signature to the specified parameter.
 

Constructors in P2PWNC with parameters of type P2PWNCSignature
P2PWNCReceipt(P2PWNCCert consumerCert, P2PWNCKey providerPublicKey, int timestamp, int weight, P2PWNCSignature receiptSignature)
           
P2PWNCCert(P2PWNCKey teamPublicKey, P2PWNCKey userPublicKey, P2PWNCSignature teamSignature)
          Constructs a certificate with the specified parameters as the team's public key, user's public key and team's signature.