-
public interface Crypto.EncryptingChannelCipherInternal; a cipher used to encrypt plaintext to ciphertext, for a channel.
-
-
Method Summary
Modifier and Type Method Description abstract Array<byte>encrypt(Array<byte> plaintext)Enciphers plaintext. abstract StringgetAlgorithm()-
-
Method Detail
-
encrypt
abstract Array<byte> encrypt(Array<byte> plaintext)
Enciphers plaintext.This method is not safe to be called from multiple threads at the same time, and it will throw a ConcurrentModificationException if that happens at runtime.
-
getAlgorithm
abstract String getAlgorithm()
-
-
-
-