Searched refs:encryptionBundle (Results 1 – 6 of 6) sorted by relevance
/aosp12/frameworks/base/core/java/android/net/vcn/persistablebundleutils/ |
H A D | ChildSaProposalUtils.java | 51 final PersistableBundle encryptionBundle = in.getPersistableBundle(ENCRYPT_ALGO_KEY); in fromPersistableBundle() local 52 Objects.requireNonNull(encryptionBundle, "Encryption algo bundle was null"); in fromPersistableBundle() 54 PersistableBundleUtils.toList(encryptionBundle, EncryptionAlgoKeyLenPair::new); in fromPersistableBundle()
|
H A D | IkeSaProposalUtils.java | 59 final PersistableBundle encryptionBundle = in.getPersistableBundle(ENCRYPT_ALGO_KEY); in fromPersistableBundle() local 60 Objects.requireNonNull(encryptionBundle, "Encryption algo bundle was null"); in fromPersistableBundle() 62 PersistableBundleUtils.toList(encryptionBundle, EncryptionAlgoKeyLenPair::new); in fromPersistableBundle()
|
H A D | SaProposalUtilsBase.java | 82 final PersistableBundle encryptionBundle = in toPersistableBundle() local 85 result.putPersistableBundle(ENCRYPT_ALGO_KEY, encryptionBundle); in toPersistableBundle()
|
/aosp12/packages/modules/IPsec/src/java/android/net/ipsec/ike/ |
H A D | IkeSaProposal.java | 90 PersistableBundle encryptionBundle = in.getPersistableBundle(ENCRYPT_ALGO_KEY); in fromPersistableBundle() local 91 Objects.requireNonNull(encryptionBundle, "Encryption algo bundle is null"); in fromPersistableBundle() 94 encryptionBundle, EncryptionTransform::fromPersistableBundle); in fromPersistableBundle()
|
H A D | ChildSaProposal.java | 113 PersistableBundle encryptionBundle = in.getPersistableBundle(ENCRYPT_ALGO_KEY); in fromPersistableBundle() local 114 Objects.requireNonNull(encryptionBundle, "Encryption algo bundle is null"); in fromPersistableBundle() 117 encryptionBundle, EncryptionTransform::fromPersistableBundle); in fromPersistableBundle()
|
H A D | SaProposal.java | 306 PersistableBundle encryptionBundle = in toPersistableBundle() local 310 result.putPersistableBundle(ENCRYPT_ALGO_KEY, encryptionBundle); in toPersistableBundle()
|