Uses of Class
de.upb.swtpra05.group03.crypto.DataSigPair

Packages that use DataSigPair
de.upb.swtpra05.group03.crypto   
de.upb.swtpra05.group03.crypto.message   
 

Uses of DataSigPair in de.upb.swtpra05.group03.crypto
 

Methods in de.upb.swtpra05.group03.crypto that return DataSigPair
 DataSigPair AliceCrypto.generatePublicKey()
          generates a public key for the key agreement
 DataSigPair Crypto.encryptObject(java.io.Serializable obj)
          encrypts an object
 DataSigPair BobCrypto.generatePublicKey(DataSigPair dsp)
          generates a public key for the key agreement by using the others public key and creates the secret key
 

Methods in de.upb.swtpra05.group03.crypto with parameters of type DataSigPair
 void AliceCrypto.generateSecretKey(DataSigPair dsp)
          generates the secret key by using the others public key for the key agreement
 java.lang.Object Crypto.decryptObject(DataSigPair dsp)
          decrypts an bytearray to an object
protected  boolean Crypto.verify(DataSigPair dsp)
          verifies signature for data
 DataSigPair BobCrypto.generatePublicKey(DataSigPair dsp)
          generates a public key for the key agreement by using the others public key and creates the secret key
 

Uses of DataSigPair in de.upb.swtpra05.group03.crypto.message
 

Methods in de.upb.swtpra05.group03.crypto.message that return DataSigPair
 DataSigPair InitHandShakeRemoteObj.getDataSigPair()
          returns a DataSigPair object containing key and signature
 DataSigPair EncryptedRemoteObj.getDataSigPair()
          returns a DataSigPair object containing data and signature
 

Constructors in de.upb.swtpra05.group03.crypto.message with parameters of type DataSigPair
InitHandShakeRemoteObj(DataSigPair dsp)
          Constructor
EncryptedRemoteObj(DataSigPair dsp)
          Constructor