Uses of Class
io.helidon.common.crypto.SymmetricCipher.Builder
-
Packages that use SymmetricCipher.Builder Package Description io.helidon.common.crypto Common cryptography implementations. -
-
Uses of SymmetricCipher.Builder in io.helidon.common.crypto
Methods in io.helidon.common.crypto that return SymmetricCipher.Builder Modifier and Type Method Description SymmetricCipher.Builder
SymmetricCipher.Builder. algorithm(String algorithm)
Set algorithm which should be used.static SymmetricCipher.Builder
SymmetricCipher. builder()
Create a new builder.SymmetricCipher.Builder
SymmetricCipher.Builder. keySize(int keySize)
Set size of the key (in bits) which should be generated.SymmetricCipher.Builder
SymmetricCipher.Builder. numberOfIterations(int numberOfIterations)
Number of iterations which will be used for key derivation from the password.SymmetricCipher.Builder
SymmetricCipher.Builder. password(char[] password)
Set password upon which the cryptography key will be generated.SymmetricCipher.Builder
SymmetricCipher.Builder. provider(String provider)
Set provider of the algorithm.
-