Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6a5cb51b authored by Jakub Pawlowski's avatar Jakub Pawlowski Committed by android-build-merger
Browse files

Merge "OobData documentation" into nyc-dev am: 75760e6b am: a08c14d0

am: c97b0a73

* commit 'c97b0a73':
  OobData documentation

Change-Id: I0fa5e83a5a920d93fcc156e6ba308f9a05968db3
parents 13ba1a34 c97b0a73
Loading
Loading
Loading
Loading
+10 −1
Original line number Diff line number Diff line
@@ -22,7 +22,11 @@ import android.os.Parcelable;
import android.util.Log;

/**
 * Out Of Band Data for Bluetooth device.
 * Out Of Band Data for Bluetooth device pairing.
 *
 * <p>This object represents optional data obtained from a remote device through
 * an out-of-band channel (eg. NFC).
 *
 * @hide
 */
public class OobData implements Parcelable {
@@ -32,6 +36,11 @@ public class OobData implements Parcelable {
        return securityManagerTk;
    }

    /**
     * Sets the Temporary Key value to be used by the LE Security Manager during
     * LE pairing. The value shall be 16 bytes. Please see Bluetooth CSSv6,
     * Part A 1.8 for a detailed description.
     */
    public void setSecurityManagerTk(byte[] securityManagerTk) {
        this.securityManagerTk = securityManagerTk;
    }