BrightSide Workbench Full Report + Source Code
org.turro.push.service.Encrypted Class Reference

Classes

class  Builder
 

Public Member Functions

 Encrypted (final PublicKey publicKey, final byte[] salt, final byte[] ciphertext)
 
PublicKey getPublicKey ()
 
byte[] getSalt ()
 
byte[] getCiphertext ()
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 26 of file Encrypted.java.

Constructor & Destructor Documentation

◆ Encrypted()

org.turro.push.service.Encrypted.Encrypted ( final PublicKey  publicKey,
final byte[]  salt,
final byte[]  ciphertext 
)

Definition at line 32 of file Encrypted.java.

32  {
33  this.publicKey = publicKey;
34  this.salt = salt;
35  this.ciphertext = ciphertext;
36  }

Member Function Documentation

◆ getCiphertext()

byte [] org.turro.push.service.Encrypted.getCiphertext ( )

Definition at line 46 of file Encrypted.java.

46  {
47  return ciphertext;
48  }

◆ getPublicKey()

PublicKey org.turro.push.service.Encrypted.getPublicKey ( )

Definition at line 38 of file Encrypted.java.

38  {
39  return publicKey;
40  }

◆ getSalt()

byte [] org.turro.push.service.Encrypted.getSalt ( )

Definition at line 42 of file Encrypted.java.

42  {
43  return salt;
44  }

The documentation for this class was generated from the following file: