Uses of Class
org.jgroups.protocols.Encrypt
-
Packages that use Encrypt Package Description org.jgroups.protocols Provides implementations of transport protocols which are responsible for sending and receiving messages to/from the network. -
-
Uses of Encrypt in org.jgroups.protocols
Subclasses of Encrypt in org.jgroups.protocols Modifier and Type Class Description class
ASYM_ENCRYPT
Encrypts and decrypts communication in JGroups by using a secret key distributed to all cluster members by the key server (coordinator) using asymmetric (public/private key) encryption.
The secret key is identical for all cluster members and is used to encrypt messages when sending and decrypt them when receiving messages.class
SYM_ENCRYPT
Encrypts and decrypts communication in JGroups by using a secret key shared by all cluster members.Methods in org.jgroups.protocols with type parameters of type Encrypt Modifier and Type Method Description <T extends Encrypt<E>>
TEncrypt. asymAlgorithm(java.lang.String alg)
<T extends Encrypt<E>>
TEncrypt. asymKeylength(int len)
<T extends Encrypt<E>>
TEncrypt. localAddress(Address addr)
<T extends Encrypt<E>>
TEncrypt. secureRandom(java.security.SecureRandom sr)
Allows callers to replace secure_random with impl of their choice, e.g.<T extends Encrypt<E>>
TEncrypt. symAlgorithm(java.lang.String alg)
<T extends Encrypt<E>>
TEncrypt. symIvLength(int len)
<T extends Encrypt<E>>
TEncrypt. symKeylength(int len)
-