|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use EncryptionType | |
---|---|
org.apache.directory.server.changepw | Provides the entry point to an instance of the
ChangePasswordServer ,
as well as support for configuration. |
org.apache.directory.server.kerberos.kdc | Provides the entry point to an instance of the KdcServer
(KDC), as well as classes common to the KDC's two services: the
Authentication Service (AS) and the Ticket-Granting Service (TGS). |
org.apache.directory.server.kerberos.shared | |
org.apache.directory.server.kerberos.shared.crypto.encryption | Provides support for Kerberos CipherText operations. |
org.apache.directory.server.kerberos.shared.io.decoder | Provides the decoders for Kerberos message objects. |
org.apache.directory.server.kerberos.shared.io.encoder | Provides the encoders for Kerberos message objects. |
org.apache.directory.server.kerberos.shared.messages | Provides base message objects for Kerberos request and reply messages. |
org.apache.directory.server.kerberos.shared.messages.value | Provides value object components of Kerberos messages. |
org.apache.directory.server.kerberos.shared.store | Provides the implementation for storing Kerberos principals and symmetric keys backed by JNDI. |
Uses of EncryptionType in org.apache.directory.server.changepw |
---|
Methods in org.apache.directory.server.changepw that return EncryptionType | |
---|---|
EncryptionType[] |
ChangePasswordServer.getEncryptionTypes()
Returns the encryption types. |
Methods in org.apache.directory.server.changepw with parameters of type EncryptionType | |
---|---|
void |
ChangePasswordServer.setEncryptionTypes(EncryptionType[] encryptionTypes)
|
Uses of EncryptionType in org.apache.directory.server.kerberos.kdc |
---|
Methods in org.apache.directory.server.kerberos.kdc that return EncryptionType | |
---|---|
EncryptionType |
KdcContext.getEncryptionType()
Returns the encryption type to use for this session. |
Methods in org.apache.directory.server.kerberos.kdc that return types with arguments of type EncryptionType | |
---|---|
java.util.Set<EncryptionType> |
KdcServer.getEncryptionTypes()
Returns the encryption types. |
Methods in org.apache.directory.server.kerberos.kdc with parameters of type EncryptionType | |
---|---|
void |
KdcContext.setEncryptionType(EncryptionType encryptionType)
Sets the encryption type to use for this session. |
void |
KdcServer.setEncryptionTypes(EncryptionType[] encryptionTypes)
Initialize the encryptionTypes set |
Method parameters in org.apache.directory.server.kerberos.kdc with type arguments of type EncryptionType | |
---|---|
void |
KdcServer.setEncryptionTypes(java.util.Set<EncryptionType> encryptionTypes)
Initialize the encryptionTypes set |
Uses of EncryptionType in org.apache.directory.server.kerberos.shared |
---|
Methods in org.apache.directory.server.kerberos.shared that return EncryptionType | |
---|---|
static EncryptionType |
KerberosUtils.getBestEncryptionType(java.util.Set<EncryptionType> requestedTypes,
java.util.Set<EncryptionType> configuredTypes)
Get the matching encryption type from the configured types, searching into the requested types. |
Method parameters in org.apache.directory.server.kerberos.shared with type arguments of type EncryptionType | |
---|---|
static EncryptionType |
KerberosUtils.getBestEncryptionType(java.util.Set<EncryptionType> requestedTypes,
java.util.Set<EncryptionType> configuredTypes)
Get the matching encryption type from the configured types, searching into the requested types. |
static EncryptionType |
KerberosUtils.getBestEncryptionType(java.util.Set<EncryptionType> requestedTypes,
java.util.Set<EncryptionType> configuredTypes)
Get the matching encryption type from the configured types, searching into the requested types. |
static java.lang.String |
KerberosUtils.getEncryptionTypesString(java.util.Set<EncryptionType> encryptionTypes)
Build a list of encryptionTypes |
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 | |
---|---|
static EncryptionType |
EncryptionType.getByName(java.lang.String type)
Get the EncryptionType given a String. |
EncryptionType |
DesCbcCrcEncryption.getEncryptionType()
|
EncryptionType |
Aes128CtsSha1Encryption.getEncryptionType()
|
EncryptionType |
Aes256CtsSha1Encryption.getEncryptionType()
|
protected abstract EncryptionType |
EncryptionEngine.getEncryptionType()
|
EncryptionType |
Des3CbcSha1KdEncryption.getEncryptionType()
|
static EncryptionType |
EncryptionType.getTypeByOrdinal(int type)
Returns the encryption type when specified by its ordinal. |
static EncryptionType |
EncryptionType.valueOf(java.lang.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're declared. |
Methods in org.apache.directory.server.kerberos.shared.crypto.encryption that return types with arguments of type EncryptionType | |
---|---|
static java.util.Collection<EncryptionType> |
EncryptionType.getEncryptionTypes()
Get all the encryption types |
static java.util.Map<EncryptionType,EncryptionKey> |
KerberosKeyFactory.getKerberosKeys(java.lang.String principalName,
java.lang.String passPhrase)
Get a map of KerberosKey's for a given principal name and passphrase. |
static java.util.Map<EncryptionType,EncryptionKey> |
KerberosKeyFactory.getKerberosKeys(java.lang.String principalName,
java.lang.String passPhrase,
java.util.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 java.util.Map<EncryptionType,EncryptionKey> |
RandomKeyFactory.getRandomKeys()
Get a map of random keys. |
static java.util.Map<EncryptionType,EncryptionKey> |
RandomKeyFactory.getRandomKeys(java.util.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 java.util.Map<EncryptionType,EncryptionKey> |
KerberosKeyFactory.getKerberosKeys(java.lang.String principalName,
java.lang.String passPhrase,
java.util.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 java.util.Map<EncryptionType,EncryptionKey> |
RandomKeyFactory.getRandomKeys(java.util.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.io.decoder |
---|
Methods in org.apache.directory.server.kerberos.shared.io.decoder that return types with arguments of type EncryptionType | |
---|---|
protected static java.util.Set<EncryptionType> |
EncryptionTypeDecoder.decode(org.apache.directory.shared.asn1.der.DERSequence sequence)
etype[8] SEQUENCE OF INTEGER, -- EncryptionType, -- in preference order |
Uses of EncryptionType in org.apache.directory.server.kerberos.shared.io.encoder |
---|
Method parameters in org.apache.directory.server.kerberos.shared.io.encoder with type arguments of type EncryptionType | |
---|---|
protected static org.apache.directory.shared.asn1.der.DERSequence |
EncryptionTypeEncoder.encode(java.util.Set<EncryptionType> eType)
etype[8] SEQUENCE OF INTEGER, -- EncryptionEngine, -- in preference order |
Uses of EncryptionType in org.apache.directory.server.kerberos.shared.messages |
---|
Methods in org.apache.directory.server.kerberos.shared.messages that return types with arguments of type EncryptionType | |
---|---|
java.util.Set<EncryptionType> |
KdcRequest.getEType()
Returns an array of requested EncryptionType s. |
Uses of EncryptionType in org.apache.directory.server.kerberos.shared.messages.value |
---|
Methods in org.apache.directory.server.kerberos.shared.messages.value that return EncryptionType | |
---|---|
EncryptionType |
EncryptionTypeInfo2Entry.getEncryptionType()
Returns the EncryptionType . |
EncryptionType |
EncryptionTypeInfoEntry.getEncryptionType()
Returns the EncryptionType . |
EncryptionType |
EncryptedData.getEType()
Returns the EncryptionType . |
EncryptionType |
EncryptionKey.getKeyType()
Returns the key type. |
Methods in org.apache.directory.server.kerberos.shared.messages.value that return types with arguments of type EncryptionType | |
---|---|
java.util.Set<EncryptionType> |
RequestBody.getEType()
Returns the requested EncryptionType s. |
Methods in org.apache.directory.server.kerberos.shared.messages.value with parameters of type EncryptionType | |
---|---|
void |
EncryptedData.setEType(EncryptionType eType)
Set the EncryptionType |
void |
EncryptionKey.setKeyType(EncryptionType keyType)
Set the encryption type |
Method parameters in org.apache.directory.server.kerberos.shared.messages.value with type arguments of type EncryptionType | |
---|---|
void |
RequestBodyModifier.setEType(java.util.Set<EncryptionType> type)
Sets the requested EncryptionType s. |
Constructors in org.apache.directory.server.kerberos.shared.messages.value 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. |
|
EncryptionTypeInfo2Entry(EncryptionType encryptionType,
java.lang.String salt,
byte[] s2kparams)
Creates a new instance of EncryptionTypeInfo2Entry . |
|
EncryptionTypeInfoEntry(EncryptionType encryptionType,
byte[] salt)
Creates a new instance of EncryptionTypeInfoEntry. |
Constructor parameters in org.apache.directory.server.kerberos.shared.messages.value with type arguments of type EncryptionType | |
---|---|
RequestBody(KdcOptions kdcOptions,
javax.security.auth.kerberos.KerberosPrincipal clientPrincipal,
javax.security.auth.kerberos.KerberosPrincipal serverPrincipal,
KerberosTime from,
KerberosTime till,
KerberosTime rtime,
int nonce,
java.util.Set<EncryptionType> eType,
HostAddresses addresses,
EncryptedData encAuthorizationData,
Ticket[] additionalTickets)
Creates a new instance of RequestBody. |
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 | |
---|---|
java.util.Map<EncryptionType,EncryptionKey> |
PrincipalStoreEntry.getKeyMap()
Returns the key map. |
java.util.Map<EncryptionType,EncryptionKey> |
PrincipalStoreEntryModifier.reconstituteKeyMap(org.apache.directory.shared.ldap.entry.EntryAttribute 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(java.util.Map<EncryptionType,EncryptionKey> keyMap)
Sets the key map. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |