Home
last modified time | relevance | path

Searched refs:mPublicKey (Results 1 – 7 of 7) sorted by relevance

/packages/modules/Connectivity/nearby/framework/java/android/nearby/
DPublicCredential.java54 private final byte[] mPublicKey; field in PublicCredential
67 mPublicKey = publicKey; in PublicCredential()
74 mPublicKey = new byte[in.readInt()]; in PublicCredential()
75 in.readByteArray(mPublicKey); in PublicCredential()
89 return mPublicKey; in getPublicKey()
114 && Arrays.equals(mPublicKey, that.mPublicKey) in equals()
125 Arrays.hashCode(mPublicKey), in hashCode()
133 dest.writeInt(mPublicKey.length); in writeToParcel()
134 dest.writeByteArray(mPublicKey); in writeToParcel()
148 private final byte[] mPublicKey; field in PublicCredential.Builder
[all …]
/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/aggregation/
DAggregateEncryptionKey.java30 private final String mPublicKey; field in AggregateEncryptionKey
43 mPublicKey = publicKey; in AggregateEncryptionKey()
55 && Objects.equals(mPublicKey, key.mPublicKey) in equals()
62 return Objects.hash(mKeyId, mPublicKey, mExpiry, mAggregationCoordinatorOrigin); in hashCode()
83 return mPublicKey; in getPublicKey()
104 private String mPublicKey; field in AggregateEncryptionKey.Builder
130 mPublicKey = publicKey; in setPublicKey()
154 || mPublicKey == null in build()
160 mId, mKeyId, mPublicKey, mExpiry, mAggregationCoordinatorOrigin); in build()
/packages/modules/OnDevicePersonalization/federatedcompute/src/com/android/federatedcompute/services/data/
DFederatedComputeEncryptionKey.java47 @NonNull private final String mPublicKey; field in FederatedComputeEncryptionKey
108 this.mPublicKey = publicKey; in FederatedComputeEncryptionKey()
110 NonNull.class, null, mPublicKey); in FederatedComputeEncryptionKey()
140 return mPublicKey; in getPublicKey()
181 && java.util.Objects.equals(mPublicKey, that.mPublicKey) in equals()
195 _hash = 31 * _hash + java.util.Objects.hashCode(mPublicKey); in hashCode()
211 private @NonNull String mPublicKey; field in FederatedComputeEncryptionKey.Builder
233 mPublicKey = publicKey; in Builder()
235 NonNull.class, null, mPublicKey); in Builder()
268 mPublicKey = value; in setPublicKey()
[all …]
/packages/modules/Wifi/framework/java/android/net/wifi/
DUriParserResults.java60 @Nullable private String mPublicKey; field in UriParserResults
82 mPublicKey = publicKey; in UriParserResults()
110 return mPublicKey; in getPublicKey()
153 dest.writeString(mPublicKey); in writeToParcel()
184 sbuf.append(", mPublicKey= ").append(mPublicKey); in toString()
197 && Objects.equals(mPublicKey, results.mPublicKey) in equals()
208 mPublicKey, in hashCode()
/packages/modules/RemoteKeyProvisioning/app/src/com/android/rkpdapp/database/
DRkpKey.java31 private final byte[] mPublicKey; field in RkpKey
39 this.mPublicKey = publicKey; in RkpKey()
51 return mPublicKey; in getPublicKey()
62 return new ProvisionedKey(mKeyBlob, mIrpcHal, mPublicKey, certificateChain, expirationTime); in generateProvisionedKey()
/packages/modules/Connectivity/framework-t/src/android/net/nsd/
DNsdServiceInfo.java73 private byte[] mPublicKey; field in NsdServiceInfo
241 mPublicKey = null; in setPublicKey()
244 mPublicKey = Arrays.copyOf(publicKey, publicKey.length); in setPublicKey()
254 if (mPublicKey == null) { in getPublicKey()
257 return Arrays.copyOf(mPublicKey, mPublicKey.length); in getPublicKey()
663 dest.writeByteArray(mPublicKey); in writeToParcel()
696 info.mPublicKey = in.createByteArray();
/packages/apps/Settings/src/com/android/settings/wifi/dpp/
DAdbQrCode.java61 private String mPublicKey; field in AdbQrCode
121 mPublicKey = publicKey; in parseWifiDppQrCode()
211 return mPublicKey; in getPublicKey()