Uses of Interface
com.digt.trusted.crypto.CipherParameters

Packages that use CipherParameters
com.digt.trusted.crypto   
com.digt.trusted.crypto.agreement   
com.digt.trusted.crypto.engines   
com.digt.trusted.crypto.generators   
com.digt.trusted.crypto.macs   
com.digt.trusted.crypto.modes   
com.digt.trusted.crypto.paddings   
com.digt.trusted.crypto.params   
com.digt.trusted.crypto.signers   
 

Uses of CipherParameters in com.digt.trusted.crypto
 

Methods in com.digt.trusted.crypto that return CipherParameters
abstract  CipherParameters PBEParametersGenerator.generateDerivedMacParameters(int keySize)
          generate derived parameters for a key of length keySize, specifically for use with a MAC.
abstract  CipherParameters PBEParametersGenerator.generateDerivedParameters(int keySize)
          generate derived parameters for a key of length keySize.
abstract  CipherParameters PBEParametersGenerator.generateDerivedParameters(int keySize, int ivSize)
          generate derived parameters for a key of length keySize, and an initialisation vector (IV) of length ivSize.
 CipherParameters AsymmetricCipherKeyPair.getPrivate()
          return the private key parameters.
 CipherParameters AsymmetricCipherKeyPair.getPublic()
          return the public key parameters.
 

Methods in com.digt.trusted.crypto with parameters of type CipherParameters
 void AsymmetricBlockCipher.init(boolean forEncryption, CipherParameters param)
          initialise the cipher.
 void BlockCipher.init(boolean forEncryption, CipherParameters params)
          Initialise the cipher.
 void BufferedBlockCipher.init(boolean forEncryption, CipherParameters params)
          initialise the cipher.
 void GOST3410.init(boolean forSigning, CipherParameters param)
          initialise the signer for signature generation or signature verification.
 void Signer.init(boolean forSigning, CipherParameters param)
          Initialise the signer for signing or verification.
 void StreamBlockCipher.init(boolean forEncryption, CipherParameters params)
          initialise the underlying cipher.
 void StreamCipher.init(boolean forEncryption, CipherParameters params)
          Initialise the cipher.
 void Wrapper.init(boolean forWrapping, CipherParameters param)
           
 void Mac.init(CipherParameters params)
          Initialise the MAC.
 

Constructors in com.digt.trusted.crypto with parameters of type CipherParameters
AsymmetricCipherKeyPair(CipherParameters publicParam, CipherParameters privateParam)
          basic constructor.
 

Uses of CipherParameters in com.digt.trusted.crypto.agreement
 

Methods in com.digt.trusted.crypto.agreement that return CipherParameters
 CipherParameters GOSTDHAgreement.getPrivateKeyParameters()
           
 

Methods in com.digt.trusted.crypto.agreement with parameters of type CipherParameters
 void GOSTDHAgreement.init(CipherParameters param)
           
 

Uses of CipherParameters in com.digt.trusted.crypto.engines
 

Methods in com.digt.trusted.crypto.engines with parameters of type CipherParameters
 void GOST28147Engine.init(boolean forEncryption, CipherParameters params)
          Initialise the cipher.
 

Uses of CipherParameters in com.digt.trusted.crypto.generators
 

Methods in com.digt.trusted.crypto.generators that return CipherParameters
 CipherParameters PKCS12ParametersGenerator.generateDerivedMacParameters(int keySize)
          Generate a key parameter for use with a MAC derived from the password, salt, and iteration count we are currently initialised with.
 CipherParameters PKCS12ParametersGenerator.generateDerivedParameters(int keySize)
          Generate a key parameter derived from the password, salt, and iteration count we are currently initialised with.
 CipherParameters PKCS12ParametersGenerator.generateDerivedParameters(int keySize, int ivSize)
          Generate a key with initialisation vector parameter derived from the password, salt, and iteration count we are currently initialised with.
 

Uses of CipherParameters in com.digt.trusted.crypto.macs
 

Methods in com.digt.trusted.crypto.macs with parameters of type CipherParameters
 void GOST28147Mac.init(CipherParameters params)
           
 

Uses of CipherParameters in com.digt.trusted.crypto.modes
 

Methods in com.digt.trusted.crypto.modes with parameters of type CipherParameters
 void CBCBlockCipher.init(boolean encrypting, CipherParameters params)
          Initialise the cipher and, possibly, the initialisation vector (IV).
 void CFBBlockCipher.init(boolean encrypting, CipherParameters params)
          Initialise the cipher and, possibly, the initialisation vector (IV).
 void OFBBlockCipher.init(boolean encrypting, CipherParameters params)
          Initialise the cipher and, possibly, the initialisation vector (IV).
 

Uses of CipherParameters in com.digt.trusted.crypto.paddings
 

Methods in com.digt.trusted.crypto.paddings with parameters of type CipherParameters
 void PaddedBufferedBlockCipher.init(boolean forEncryption, CipherParameters params)
          initialise the cipher.
 

Uses of CipherParameters in com.digt.trusted.crypto.params
 

Classes in com.digt.trusted.crypto.params that implement CipherParameters
 class AsymmetricKeyParameter
           
 class GOST3410ELPrivateKeyParameters
           
 class GOST3410ELPublicKeyParameters
           
 class GOST3410KeyParameters
           
 class GOST3410Parameters
           
 class GOST3410PrivateKeyParameters
           
 class GOST3410PublicKeyParameters
           
 class KeyParameter
           
 class ParametersWithIV
           
 class ParametersWithRandom
           
 

Methods in com.digt.trusted.crypto.params that return CipherParameters
 CipherParameters ParametersWithIV.getParameters()
           
 CipherParameters ParametersWithRandom.getParameters()
           
 

Constructors in com.digt.trusted.crypto.params with parameters of type CipherParameters
ParametersWithIV(CipherParameters parameters, byte[] iv)
           
ParametersWithIV(CipherParameters parameters, byte[] iv, int ivOff, int ivLen)
           
ParametersWithRandom(CipherParameters parameters)
           
ParametersWithRandom(CipherParameters parameters, java.security.SecureRandom random)
           
 

Uses of CipherParameters in com.digt.trusted.crypto.signers
 

Methods in com.digt.trusted.crypto.signers with parameters of type CipherParameters
 void GOST3410ELSigner.init(boolean forSigning, CipherParameters key)
           
 void GOST3410Signer.init(boolean forSigning, CipherParameters key)