Searched refs:Hash_REF_DO (Results 1 – 5 of 5) sorted by relevance
/packages/apps/SecureElement/src/com/android/se/security/gpac/ |
D | Hash_REF_DO.java | 46 public class Hash_REF_DO extends BerTlv { class 54 public Hash_REF_DO(byte[] rawData, int valueIndex, int valueLength) { in Hash_REF_DO() method in Hash_REF_DO 58 public Hash_REF_DO(byte[] hash) { in Hash_REF_DO() method in Hash_REF_DO 63 public Hash_REF_DO() { in Hash_REF_DO() method in Hash_REF_DO 70 public static boolean equals(Hash_REF_DO obj1, Hash_REF_DO obj2) { in equals() 160 if (obj instanceof Hash_REF_DO) { in equals() 161 Hash_REF_DO hash_ref_do = (Hash_REF_DO) obj; in equals()
|
D | REF_DO.java | 49 private Hash_REF_DO mHashDo = null; 56 public REF_DO(AID_REF_DO aidRefDo, Hash_REF_DO hashRefDo, PKG_REF_DO pkgRefDo) { in REF_DO() 63 public REF_DO(AID_REF_DO aidRefDo, Hash_REF_DO hashRefDo) { in REF_DO() 92 public Hash_REF_DO getHashDo() { in getHashDo() 134 } else if (temp.getTag() == Hash_REF_DO.TAG) { // Hash-REF-DO in interpret() 135 mHashDo = new Hash_REF_DO(data, temp.getValueIndex(), temp.getValueLength()); in interpret() 205 if (Hash_REF_DO.equals(mHashDo, ref_do.mHashDo)) { in equals()
|
/packages/apps/SecureElement/src/com/android/se/security/arf/PKCS15/ |
D | EFACConditions.java | 51 import com.android.se.security.gpac.Hash_REF_DO; 88 Hash_REF_DO hash_ref_do = new Hash_REF_DO(); in decodeDER() 151 if (certificateHash.length != Hash_REF_DO.SHA1_LEN in decodeDER() 152 && certificateHash.length != Hash_REF_DO.SHA256_LEN in decodeDER() 157 hash_ref_do = new Hash_REF_DO(certificateHash); in decodeDER() 164 hash_ref_do = new Hash_REF_DO(null); in decodeDER()
|
/packages/apps/SecureElement/src/com/android/se/security/ |
D | AccessRuleCache.java | 43 import com.android.se.security.gpac.Hash_REF_DO; 284 Hash_REF_DO hash_ref_do; in findAccessRuleInternal() 286 hash_ref_do = new Hash_REF_DO(appCertHash); in findAccessRuleInternal() 314 hash_ref_do = new Hash_REF_DO(); // empty hash ref in findAccessRuleInternal() 328 hash_ref_do = new Hash_REF_DO(appCertHash); in findAccessRuleInternal() 358 hash_ref_do = new Hash_REF_DO(); in findAccessRuleInternal() 454 Hash_REF_DO hash_ref_do = ref_do.getHashDo(); in checkCarrierPrivilege() 456 if (Hash_REF_DO.equals(hash_ref_do, new Hash_REF_DO(hash))) { in checkCarrierPrivilege()
|
/packages/apps/SecureElement/src/com/android/se/security/arf/ |
D | SecureElement.java | 49 import com.android.se.security.gpac.Hash_REF_DO; 164 AID_REF_DO aidRefDo, Hash_REF_DO hashRefDo, ChannelAccess channelAccess) { in putAccessRule()
|