HomeSort by relevance Sort by last modified time
    Searched defs:mMasterKey (Results 1 - 3 of 3) sorted by null

  /frameworks/opt/net/lowpan/libandroid_net_lowpan/include/android/net/lowpan/
LowpanCredential.h 62 std::vector<uint8_t> mMasterKey;
  /system/security/keystore/
user_state.h 57 auto& getEncryptionKey() const { return mMasterKey; }
82 uint8_t mMasterKey[MASTER_KEY_SIZE_BYTES];
  /frameworks/base/lowpan/java/android/net/lowpan/
LowpanCredential.java 35 private byte[] mMasterKey = null;
60 mMasterKey = masterKey;
73 if (mMasterKey != null) {
74 return mMasterKey.clone();
84 return mMasterKey != null;
93 sb.append(" MasterKey:").append(HexDump.toHexString(mMasterKey));
134 return Arrays.equals(mMasterKey, rhs.mMasterKey) && mMasterKeyIndex == rhs.mMasterKeyIndex;
139 return Objects.hash(Arrays.hashCode(mMasterKey), mMasterKeyIndex);
151 dest.writeByteArray(mMasterKey);
    [all...]

Completed in 216 milliseconds