Cryptix V3.1

Uses of Interface
java.security.Key

Packages that use Key
cryptix.provider.cipher   
cryptix.provider.elgamal   
cryptix.provider.key   
cryptix.provider.mode   
cryptix.provider.rsa   
java.security   
java.security.interfaces   
 

Uses of Key in cryptix.provider.cipher
 

Methods in cryptix.provider.cipher with parameters of type Key
protected  void LOKI91.engineInitEncrypt(Key key)
          SPI: Initializes this cipher for encryption, using the specified key.
protected  void LOKI91.engineInitDecrypt(Key key)
          SPI: Initializes this cipher for decryption, using the specified key.
 void SPEED.engineInitEncrypt(Key key)
          SPI: Initializes this cipher for encryption, using the specified key.
 void SPEED.engineInitDecrypt(Key key)
          SPI: Initializes this cipher for decryption, using the specified key.
protected  void Blowfish.engineInitEncrypt(Key key)
          SPI: Initializes this cipher for encryption, using the specified key.
protected  void Blowfish.engineInitDecrypt(Key key)
          SPI: Initializes this cipher for decryption, using the specified key.
 void SAFER.engineInitEncrypt(Key key)
          SPI: Initializes this cipher for encryption, using the specified key.
 void SAFER.engineInitDecrypt(Key key)
          SPI: Initializes this cipher for decryption, using the specified key.
protected  void Rijndael.coreInit(Key key, boolean decrypt)
           
protected  void Rijndael.engineInitEncrypt(Key key)
           
protected  void Rijndael.engineInitDecrypt(Key key)
           
 void DES.engineInitEncrypt(Key key)
          SPI: Initializes this cipher for encryption, using the specified key.
 void DES.engineInitDecrypt(Key key)
          SPI: Initializes this cipher for decryption, using the specified key.
 void DES_EDE3.engineInitEncrypt(Key key)
          SPI: Initializes this cipher for encryption, using the specified key.
protected  void DES_EDE3.engineInitDecrypt(Key key)
          SPI: Initializes this cipher for decryption, using the specified key.
protected  void IDEA.engineInitEncrypt(Key key)
          SPI: Initializes this cipher for encryption, using the specified key.
protected  void IDEA.engineInitDecrypt(Key key)
          SPI: Initializes this cipher for decryption, using the specified key.
 void DES2X.engineInitEncrypt(Key key)
          SPI: Initializes this cipher for encryption, using the specified key.
protected  void DES2X.engineInitDecrypt(Key key)
          SPI: Initializes this cipher for decryption, using the specified key.
protected  void CAST5.engineInitEncrypt(Key key)
          SPI: Initializes this cipher for encryption, using the specified key.
protected  void CAST5.engineInitDecrypt(Key key)
          SPI: Initializes this cipher for decryption, using the specified key.
protected  void Square.engineInitEncrypt(Key key)
          SPI: Initializes this cipher for encryption, using the specified key.
protected  void Square.engineInitDecrypt(Key key)
          SPI: Initializes this cipher for decryption, using the specified key.
 void DESX.engineInitEncrypt(Key key)
          SPI: Initializes this cipher for encryption, using the specified key.
protected  void DESX.engineInitDecrypt(Key key)
          SPI: Initializes this cipher for decryption, using the specified key.
 void RC2.engineInitEncrypt(Key key)
          SPI: Initializes this cipher for encryption, using the specified key.
 void RC2.engineInitDecrypt(Key key)
          SPI: Initializes this cipher for decryption, using the specified key.
 void RC4.engineInitEncrypt(Key key)
          SPI: Initializes this cipher for encryption, using the specified key.
 void RC4.engineInitDecrypt(Key key)
          SPI: Initializes this cipher for decryption, using the specified key.
 

Uses of Key in cryptix.provider.elgamal
 

Classes in cryptix.provider.elgamal that implement Key
 class BaseElGamalPrivateKey
          A class representing an ElGamal private key.
 class BaseElGamalPublicKey
          A class representing an ElGamal public key.
 

Methods in cryptix.provider.elgamal with parameters of type Key
protected  void RawElGamalCipher.engineInitEncrypt(Key key)
          SPI: Initializes the cipher for encryption, using the given public key.
protected  void RawElGamalCipher.engineInitDecrypt(Key key)
          SPI: Initializes the cipher for decryption, using the given private key.
 

Uses of Key in cryptix.provider.key
 

Classes in cryptix.provider.key that implement Key
 class RawKey
          RawKey implements a key in raw format, represented as a byte array.
 class RawSecretKey
          RawSecretKey implements a secret key in raw format.
 

Uses of Key in cryptix.provider.mode
 

Methods in cryptix.provider.mode with parameters of type Key
protected  void OFB.engineInitEncrypt(Key newkey)
           
protected  void OFB.engineInitDecrypt(Key newkey)
           
protected  void CFB.engineInitEncrypt(Key newkey)
           
protected  void CFB.engineInitDecrypt(Key newkey)
           
protected  void CBC.engineInitEncrypt(Key newkey)
           
protected  void CBC.engineInitDecrypt(Key newkey)
           
protected  void PCBC.engineInitEncrypt(Key newkey)
           
protected  void PCBC.engineInitDecrypt(Key newkey)
           
 

Uses of Key in cryptix.provider.rsa
 

Classes in cryptix.provider.rsa that implement Key
 class BaseRSAPrivateKey
          An abstract class representing an RSA private key.
 class BaseRSAPublicKey
          An abstract class representing an RSA public key.
 class RawRSAPrivateKey
          A class representing a RAW-encoded RSA private key.
 class RawRSAPublicKey
          A class representing a RAW-encoded RSA public key.
 

Methods in cryptix.provider.rsa with parameters of type Key
protected  void RawRSACipher.engineInitEncrypt(Key key)
          SPI: Initializes this cipher object for encryption, using the given public key.
protected  void RawRSACipher.engineInitDecrypt(Key key)
          SPI: Initializes this cipher object for decryption, using the given private key.
 

Uses of Key in java.security
 

Subinterfaces of Key in java.security
 interface PrivateKey
           
 interface PublicKey
           
 interface SecretKey
          A secret key.
 

Methods in java.security with parameters of type Key
 void Cipher.initEncrypt(Key key)
          Initializes this cipher for encryption, using the specified key.
 void Cipher.initDecrypt(Key key)
          Initializes this cipher for decryption, using the specified key.
protected abstract  void Cipher.engineInitEncrypt(Key key)
          SPI: Initializes this cipher for encryption, using the specified key.
protected abstract  void Cipher.engineInitDecrypt(Key key)
          SPI: Initializes this cipher for decryption, using the specified key.
 

Uses of Key in java.security.interfaces
 

Subinterfaces of Key in java.security.interfaces
 interface CryptixRSAPrivateKey
          The interface to an RSA private key.
 interface CryptixRSAPublicKey
          The interface to an RSA public key.
 interface ElGamalPrivateKey
          The interface to an ElGamal private key.
 interface ElGamalPublicKey
          The interface to an ElGamal public key.
 


Cryptix V3.1

Copyright (C) 1995-2000 The Cryptix Foundation Ltd. All rights reserved.