Example usage for javax.security.sasl Sasl RAW_SEND_SIZE

List of usage examples for javax.security.sasl Sasl RAW_SEND_SIZE

Introduction

In this page you can find the example usage for javax.security.sasl Sasl RAW_SEND_SIZE.

Prototype

String RAW_SEND_SIZE

To view the source code for javax.security.sasl Sasl RAW_SEND_SIZE.

Click Source Link

Document

The name of a property that specifies the maximum size of the raw send buffer in bytes of SaslClient / SaslServer .

Usage

From source file:com.zimbra.cs.security.sasl.GssAuthenticator.java

private void dumpNegotiatedProperties() {
    pp("QOP", Sasl.QOP);
    pp("MAX_BUFFER", Sasl.MAX_BUFFER);
    pp("MAX_RECEIVE_SIZE", Sasl.RAW_SEND_SIZE);
    pp("STRENGTH", Sasl.STRENGTH);
}

From source file:org.apache.hive.spark.client.rpc.RpcConfiguration.java

/**
 * SASL options are namespaced under "hive.spark.client.rpc.sasl.*"; each option is the
 * lower-case version of the constant in the "javax.security.sasl.Sasl" class (e.g. "strength"
 * for cipher strength).//from  www . ja va2s  .  c  o  m
 */
Map<String, String> getSaslOptions() {
    Map<String, String> opts = new HashMap<String, String>();
    Map<String, String> saslOpts = ImmutableMap.<String, String>builder().put(Sasl.CREDENTIALS, "credentials")
            .put(Sasl.MAX_BUFFER, "max_buffer").put(Sasl.POLICY_FORWARD_SECRECY, "policy_forward_secrecy")
            .put(Sasl.POLICY_NOACTIVE, "policy_noactive").put(Sasl.POLICY_NOANONYMOUS, "policy_noanonymous")
            .put(Sasl.POLICY_NODICTIONARY, "policy_nodictionary")
            .put(Sasl.POLICY_NOPLAINTEXT, "policy_noplaintext")
            .put(Sasl.POLICY_PASS_CREDENTIALS, "policy_pass_credentials").put(Sasl.QOP, "qop")
            .put(Sasl.RAW_SEND_SIZE, "raw_send_size").put(Sasl.REUSE, "reuse")
            .put(Sasl.SERVER_AUTH, "server_auth").put(Sasl.STRENGTH, "strength").build();
    for (Map.Entry<String, String> e : saslOpts.entrySet()) {
        String value = config.get(RPC_SASL_OPT_PREFIX + e.getValue());
        if (value != null) {
            opts.put(e.getKey(), value);
        }
    }
    return opts;
}