OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mechs
(Results
1 - 6
of
6
) sorted by null
/external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/jgss/
GSSManagerImplTest.java
34
Oid[]
mechs
= gssManager.getMechs();
local
37
assertTrue(Arrays.equals(expectedMechs,
mechs
));
42
Oid[]
mechs
= gssManager.getMechsForName(nameType);
local
43
assertEquals(0,
mechs
.length);
46
mechs
= gssManager.getMechsForName(nameType);
47
assertEquals(0,
mechs
.length);
50
mechs
= gssManager.getMechsForName(nameType);
51
assertEquals(0,
mechs
.length);
54
mechs
= gssManager.getMechsForName(nameType);
57
assertTrue(Arrays.equals(expectedMechs,
mechs
));
[
all
...]
/external/smack/src/org/apache/qpid/management/common/sasl/
ClientSaslFactory.java
31
public SaslClient createSaslClient(String[]
mechs
, String authorizationId, String protocol,
35
for (int i = 0; i <
mechs
.length; i++)
37
if (
mechs
[i].equals("PLAIN"))
CRAMMD5HashedSaslClientFactory.java
48
String[]
mechs
= {"CRAM-MD5"};
local
49
return Sasl.createSaslClient(
mechs
, authorizationId, protocol, serverName, props, cbh);
/external/smack/src/org/jivesoftware/smack/
SmackConfiguration.java
216
* @param
mechs
the Collection of SASL mechanisms to be added
218
public static void addSaslMechs(Collection<String>
mechs
) {
219
for(String mech :
mechs
) {
238
* @param
mechs
the Collection of SASL mechanisms to be removed
240
public static void removeSaslMechs(Collection<String>
mechs
) {
241
for(String mech :
mechs
) {
/external/openssh/
auth2-gss.c
64
int
mechs
;
local
74
mechs
= packet_get_int();
75
if (
mechs
== 0) {
82
mechs
--;
99
} while (
mechs
> 0 && !present);
/external/apache-harmony/auth/src/test/java/common/org/ietf/jgss/
GSSManagerTest.java
114
Oid[]
mechs
, int usage)
Completed in 146 milliseconds