Uses of Class
org.apache.directory.shared.kerberos.codec.types.EncryptionType

Packages that use EncryptionType
org.apache.directory.server.kerberos.shared.crypto.encryption Provides support for Kerberos CipherText operations. 
org.apache.directory.server.kerberos.shared.store Provides the implementation for storing Kerberos principals and symmetric keys backed by JNDI. 
org.apache.directory.shared.kerberos   
org.apache.directory.shared.kerberos.codec.types   
org.apache.directory.shared.kerberos.components   
 

Uses of EncryptionType in org.apache.directory.server.kerberos.shared.crypto.encryption
 

Methods in org.apache.directory.server.kerberos.shared.crypto.encryption that return EncryptionType
protected abstract  EncryptionType EncryptionEngine.getEncryptionType()
           
 EncryptionType DesCbcCrcEncryption.getEncryptionType()
           
 EncryptionType Des3CbcSha1KdEncryption.getEncryptionType()
           
 EncryptionType Aes256CtsSha1Encryption.getEncryptionType()
           
 EncryptionType Aes128CtsSha1Encryption.getEncryptionType()
           
 

Methods in org.apache.directory.server.kerberos.shared.crypto.encryption that return types with arguments of type EncryptionType
static Map<EncryptionType,EncryptionKey> KerberosKeyFactory.getKerberosKeys(String principalName, String passPhrase)
          Get a map of KerberosKey's for a given principal name and passphrase.
static Map<EncryptionType,EncryptionKey> KerberosKeyFactory.getKerberosKeys(String principalName, String passPhrase, Set<EncryptionType> ciphers)
          Get a list of KerberosKey's for a given principal name and passphrase and list of cipher types to derive keys for.
static Map<EncryptionType,EncryptionKey> RandomKeyFactory.getRandomKeys()
          Get a map of random keys.
static Map<EncryptionType,EncryptionKey> RandomKeyFactory.getRandomKeys(Set<EncryptionType> ciphers)
          Get a map of random keys for a list of cipher types to derive keys for.
 

Methods in org.apache.directory.server.kerberos.shared.crypto.encryption with parameters of type EncryptionType
static EncryptionKey RandomKeyFactory.getRandomKey(EncryptionType encryptionType)
          Get a new random key for a given EncryptionType.
 

Method parameters in org.apache.directory.server.kerberos.shared.crypto.encryption with type arguments of type EncryptionType
static Map<EncryptionType,EncryptionKey> KerberosKeyFactory.getKerberosKeys(String principalName, String passPhrase, Set<EncryptionType> ciphers)
          Get a list of KerberosKey's for a given principal name and passphrase and list of cipher types to derive keys for.
static Map<EncryptionType,EncryptionKey> RandomKeyFactory.getRandomKeys(Set<EncryptionType> ciphers)
          Get a map of random keys for a list of cipher types to derive keys for.
 

Uses of EncryptionType in org.apache.directory.server.kerberos.shared.store
 

Methods in org.apache.directory.server.kerberos.shared.store that return types with arguments of type EncryptionType
 Map<EncryptionType,EncryptionKey> PrincipalStoreEntry.getKeyMap()
          Returns the key map.
 Map<EncryptionType,EncryptionKey> PrincipalStoreEntryModifier.reconstituteKeyMap(org.apache.directory.shared.ldap.model.entry.Attribute krb5key)
          Converts the ASN.1 encoded key set to a map of encryption types to encryption keys.
 

Method parameters in org.apache.directory.server.kerberos.shared.store with type arguments of type EncryptionType
 void PrincipalStoreEntryModifier.setKeyMap(Map<EncryptionType,EncryptionKey> keyMap)
          Sets the key map.
 

Uses of EncryptionType in org.apache.directory.shared.kerberos
 

Methods in org.apache.directory.shared.kerberos that return EncryptionType
static EncryptionType KerberosUtils.getBestEncryptionType(List<EncryptionType> requestedTypes, List<EncryptionType> configuredTypes)
          Get the matching encryption type from the configured types, searching into the requested types.
 

Method parameters in org.apache.directory.shared.kerberos with type arguments of type EncryptionType
static EncryptionType KerberosUtils.getBestEncryptionType(List<EncryptionType> requestedTypes, List<EncryptionType> configuredTypes)
          Get the matching encryption type from the configured types, searching into the requested types.
static EncryptionType KerberosUtils.getBestEncryptionType(List<EncryptionType> requestedTypes, List<EncryptionType> configuredTypes)
          Get the matching encryption type from the configured types, searching into the requested types.
static String KerberosUtils.getEncryptionTypesString(List<EncryptionType> encryptionTypes)
          Build a list of encryptionTypes
 

Uses of EncryptionType in org.apache.directory.shared.kerberos.codec.types
 

Methods in org.apache.directory.shared.kerberos.codec.types that return EncryptionType
static EncryptionType EncryptionType.getByName(String type)
          Get the EncryptionType given a String.
static EncryptionType EncryptionType.getTypeByValue(int type)
          Returns the encryption type when specified by its value.
static EncryptionType EncryptionType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EncryptionType[] EncryptionType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.apache.directory.shared.kerberos.codec.types that return types with arguments of type EncryptionType
static Collection<EncryptionType> EncryptionType.getEncryptionTypes()
          Get all the encryption types
 

Uses of EncryptionType in org.apache.directory.shared.kerberos.components
 

Methods in org.apache.directory.shared.kerberos.components that return EncryptionType
 EncryptionType ETypeInfoEntry.getEType()
          Returns the EncryptionType.
 EncryptionType ETypeInfo2Entry.getEType()
          Returns the EncryptionType.
 EncryptionType EncryptedData.getEType()
          Returns the EncryptionType.
 EncryptionType EncryptionKey.getKeyType()
          Returns the key type.
 

Methods in org.apache.directory.shared.kerberos.components that return types with arguments of type EncryptionType
 List<EncryptionType> KdcReqBody.getEType()
          Returns the requested EncryptionTypes.
 

Methods in org.apache.directory.shared.kerberos.components with parameters of type EncryptionType
 void KdcReqBody.addEType(EncryptionType eType)
           
 void ETypeInfoEntry.setEType(EncryptionType etype)
           
 void ETypeInfo2Entry.setEType(EncryptionType etype)
           
 void EncryptedData.setEType(EncryptionType eType)
          Set the EncryptionType
 void EncryptionKey.setKeyType(EncryptionType keyType)
          Set the encryption type
 

Method parameters in org.apache.directory.shared.kerberos.components with type arguments of type EncryptionType
 void KdcReqBody.setEType(List<EncryptionType> eType)
           
 

Constructors in org.apache.directory.shared.kerberos.components with parameters of type EncryptionType
EncryptedData(EncryptionType eType, byte[] cipher)
          Creates a new instance of EncryptedData.
EncryptedData(EncryptionType eType, int kvno, byte[] cipher)
          Creates a new instance of EncryptedData.
EncryptionKey(EncryptionType keyType, byte[] keyValue)
          Creates a new instance of EncryptionKey.
EncryptionKey(EncryptionType keyType, byte[] keyValue, int keyVersion)
          Creates a new instance of EncryptionKey.
ETypeInfoEntry(EncryptionType etype, byte[] salt)
          Creates a new instance of ETypeInfoEntry.
 



Copyright © 2003-2012 The Apache Software Foundation. All Rights Reserved.