|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use GSSName | |
com.dstc.security.kerberos.gssapi | This package contains an implementation of the Java GSS API for the Kerberos 5 mechanism. |
org.ietf.jgss | This package defines interfaces and classes for the Java bindings of the Generic Security Service API (GSS-API). |
Uses of GSSName in com.dstc.security.kerberos.gssapi |
Methods in com.dstc.security.kerberos.gssapi that return GSSName | |
GSSName |
GSSManager.createName(String nameStr,
Oid nameType)
|
GSSName |
GSSManager.createName(byte[] name,
Oid nameType)
|
GSSName |
GSSManager.createName(String nameStr,
Oid nameType,
Oid mech)
|
GSSName |
GSSManager.createName(byte[] name,
Oid nameType,
Oid mech)
|
Methods in com.dstc.security.kerberos.gssapi with parameters of type GSSName | |
GSSCredential |
GSSManager.createCredential(GSSName aName,
int lifetime,
Oid mech,
int usage)
|
GSSCredential |
GSSManager.createCredential(GSSName aName,
int lifetime,
Oid[] mechs,
int usage)
|
GSSContext |
GSSManager.createContext(GSSName peer,
Oid mech,
GSSCredential myCred,
int lifetime)
|
Uses of GSSName in org.ietf.jgss |
Methods in org.ietf.jgss that return GSSName | |
GSSName |
GSSName.canonicalize(Oid mech)
Creates a name that is canonicalized for some mechanism. |
GSSName |
GSSContext.getSrcName()
Returns the name of the context initiator. |
GSSName |
GSSContext.getTargName()
Returns the name of the context acceptor. |
GSSName |
GSSCredential.getName()
Retrieves the name of the entity that the credential asserts. |
GSSName |
GSSCredential.getName(Oid mech)
Retrieves a Mechanism Name of the entity that the credential asserts. |
abstract GSSName |
GSSManager.createName(String nameStr,
Oid nameType)
Factory method to convert a string name from the specified namespace to an GSSName object. |
abstract GSSName |
GSSManager.createName(byte[] name,
Oid nameType)
Factory method to convert a byte array containing a name from the specified namespace to an GSSName object. |
abstract GSSName |
GSSManager.createName(String nameStr,
Oid nameType,
Oid mech)
Factory method to convert a string name from the specified namespace to a GSSName object and canonicalize it at the same time for a mechanism. |
abstract GSSName |
GSSManager.createName(byte[] name,
Oid nameType,
Oid mech)
Factory method to convert a byte array containing a name from the specified namespace to a GSSName object and canonicalize it at the same time for a mechanism. |
Methods in org.ietf.jgss with parameters of type GSSName | |
boolean |
GSSName.equals(GSSName another)
Compares two GSSName objects to determine if they refer to the same entity. |
void |
GSSCredential.add(GSSName name,
int initLifetime,
int acceptLifetime,
Oid mech,
int usage)
Adds a mechanism specific credential-element to an existing credential. |
abstract GSSCredential |
GSSManager.createCredential(GSSName name,
int lifetime,
Oid mech,
int usage)
Factory method for acquiring a single mechanism credential. |
abstract GSSCredential |
GSSManager.createCredential(GSSName name,
int lifetime,
Oid[] mechs,
int usage)
Factory method for acquiring credentials over a set of mechanisms. |
abstract GSSContext |
GSSManager.createContext(GSSName peer,
Oid mech,
GSSCredential myCred,
int lifetime)
Factory method for creating a context on the initiator's side. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |