Uses of Interface
org.silverpeas.core.security.encryption.cipher.Cipher
-
Packages that use Cipher Package Description org.silverpeas.core.security.encryption Provides the Silverpeas Cryptography API that is based on some security and cryptography tiers libraries (as well on the Java Cryptography API).org.silverpeas.core.security.encryption.cipher -
-
Uses of Cipher in org.silverpeas.core.security.encryption
Methods in org.silverpeas.core.security.encryption that return Cipher Modifier and Type Method Description protected static Cipher
DefaultContentEncryptionService. getCipherForContentEncryption()
Gets the cipher to use to encrypt/decrypt a content.Methods in org.silverpeas.core.security.encryption with parameters of type Cipher Modifier and Type Method Description protected static Map<String,String>
DefaultContentEncryptionService. decryptContent(Map<String,String> encryptedContent, Cipher cipher, CipherKey key)
Decrypts the specified content by using the specified cipher with the specified cipher key.protected static Map<String,String>
DefaultContentEncryptionService. encryptContent(Map<String,String> content, Cipher cipher, CipherKey key)
Encrypts the specified content by using the specified cipher with the specified cipher key. -
Uses of Cipher in org.silverpeas.core.security.encryption.cipher
Classes in org.silverpeas.core.security.encryption.cipher that implement Cipher Modifier and Type Class Description class
AESCipher
The Advanced Encryption Standard (AES) is a specification for the encryption of electronic data established by the U.S.class
BlockCipherWithPadding
In cryptography, a block cipher is a deterministic algorithm operating on fixed-length groups of bits, called blocks, with an unvarying transformation that is specified by a symmetric key.class
BlowfishCipher
Blowfish is a keyed, symmetric block cipher, designed in 1993 by Bruce Schneier and included in a large number of cipher suites and encryption products.class
CAST5Cipher
CAST-128 (alternatively CAST5) is a block cipher created in 1996 by Carlisle Adams and Stafford Tavares.class
CMSCipher
The Cryptographic Message Syntax (CMS) is the IETF's standard for cryptographically protected messages.Methods in org.silverpeas.core.security.encryption.cipher that return Cipher Modifier and Type Method Description Cipher
CipherFactory. getCipher(CryptographicAlgorithmName cipherName)
Gets the cipher identified by the specified cryptographic algorithm name.
-