Searched refs:Asn1Field (Results 1 – 14 of 14) sorted by relevance
/tools/apksig/src/main/java/com/android/apksig/internal/pkcs7/ |
D | SignerInfo.java | 20 import com.android.apksig.internal.asn1.Asn1Field; 33 @Asn1Field(index = 0, type = Asn1Type.INTEGER) 36 @Asn1Field(index = 1, type = Asn1Type.CHOICE) 39 @Asn1Field(index = 2, type = Asn1Type.SEQUENCE) 42 @Asn1Field( 49 @Asn1Field(index = 4, type = Asn1Type.SEQUENCE) 52 @Asn1Field(index = 5, type = Asn1Type.OCTET_STRING) 55 @Asn1Field(
|
D | SignedData.java | 20 import com.android.apksig.internal.asn1.Asn1Field; 33 @Asn1Field(index = 0, type = Asn1Type.INTEGER) 36 @Asn1Field(index = 1, type = Asn1Type.SET_OF) 39 @Asn1Field(index = 2, type = Asn1Type.SEQUENCE) 42 @Asn1Field( 49 @Asn1Field( 56 @Asn1Field(index = 5, type = Asn1Type.SET_OF)
|
D | Attribute.java | 20 import com.android.apksig.internal.asn1.Asn1Field; 31 @Asn1Field(index = 0, type = Asn1Type.OBJECT_IDENTIFIER) 34 @Asn1Field(index = 1, type = Asn1Type.SET_OF)
|
D | SignerIdentifier.java | 20 import com.android.apksig.internal.asn1.Asn1Field; 31 @Asn1Field(type = Asn1Type.SEQUENCE) 34 @Asn1Field(type = Asn1Type.OCTET_STRING, tagging = Asn1Tagging.IMPLICIT, tagNumber = 0)
|
D | AlgorithmIdentifier.java | 20 import com.android.apksig.internal.asn1.Asn1Field; 30 @Asn1Field(index = 0, type = Asn1Type.OBJECT_IDENTIFIER) 33 @Asn1Field(index = 1, type = Asn1Type.ANY, optional = true)
|
D | ContentInfo.java | 20 import com.android.apksig.internal.asn1.Asn1Field; 31 @Asn1Field(index = 1, type = Asn1Type.OBJECT_IDENTIFIER) 34 @Asn1Field(index = 2, type = Asn1Type.ANY, tagging = Asn1Tagging.EXPLICIT, tagNumber = 0)
|
D | EncapsulatedContentInfo.java | 20 import com.android.apksig.internal.asn1.Asn1Field; 31 @Asn1Field(index = 0, type = Asn1Type.OBJECT_IDENTIFIER) 34 @Asn1Field(
|
D | IssuerAndSerialNumber.java | 20 import com.android.apksig.internal.asn1.Asn1Field; 31 @Asn1Field(index = 0, type = Asn1Type.ANY) 34 @Asn1Field(index = 1, type = Asn1Type.INTEGER)
|
/tools/apksig/src/test/java/com/android/apksig/internal/asn1/ |
D | Asn1BerParserTest.java | 279 @Asn1Field(index = 1, type = Asn1Type.INTEGER) 282 @Asn1Field(index = 2, type = Asn1Type.INTEGER) 285 @Asn1Field(index = 3, type = Asn1Type.INTEGER) 288 @Asn1Field(index = 4, type = Asn1Type.INTEGER) 291 @Asn1Field(index = 5, type = Asn1Type.INTEGER) 297 @Asn1Field(index = 0, type = Asn1Type.OBJECT_IDENTIFIER) 303 @Asn1Field(index = 1, type = Asn1Type.INTEGER) 306 @Asn1Field(index = 2, type = Asn1Type.INTEGER, optional = true, 310 @Asn1Field(index = 3, type = Asn1Type.INTEGER) 316 @Asn1Field(index = 1, type = Asn1Type.INTEGER) [all …]
|
D | Asn1DerEncoderTest.java | 153 @Asn1Field(index = 1, type = Asn1Type.INTEGER) 164 @Asn1Field(index = 1, type = Asn1Type.OBJECT_IDENTIFIER) 175 @Asn1Field(index = 1, type = Asn1Type.OCTET_STRING) 186 @Asn1Field(type = Asn1Type.INTEGER) 189 @Asn1Field(type = Asn1Type.OBJECT_IDENTIFIER, tagging = Asn1Tagging.IMPLICIT, tagNumber = 0) 208 @Asn1Field(type = Asn1Type.SET_OF, elementType = Asn1Type.INTEGER) 220 @Asn1Field(type = Asn1Type.INTEGER, index = 0) 223 @Asn1Field(type = Asn1Type.OBJECT_IDENTIFIER, index = 1, optional = true) 226 @Asn1Field(type = Asn1Type.OCTET_STRING, index = 2) 238 @Asn1Field(type = Asn1Type.SEQUENCE) [all …]
|
/tools/apksig/src/main/java/com/android/apksig/internal/asn1/ |
D | Asn1DerEncoder.java | 77 "No fields annotated with " + Asn1Field.class.getName() in toChoice() 185 Asn1Field annotation = field.getDeclaredAnnotation(Asn1Field.class); in getAnnotatedFields() 191 Asn1Field.class.getName() + " used on a static field: " in getAnnotatedFields() 303 private final Asn1Field mAnnotation; 312 public AnnotatedField(Object obj, Field field, Asn1Field annotation) in AnnotatedField() 355 public Asn1Field getAnnotation() { in getAnnotation()
|
D | Asn1BerParser.java | 150 "No fields annotated with " + Asn1Field.class.getName() in parseChoice() 340 private final Asn1Field mAnnotation; 348 public AnnotatedField(Field field, Asn1Field annotation) throws Asn1DecodingException { in AnnotatedField() 388 public Asn1Field getAnnotation() { in getAnnotation() 522 Asn1Field annotation = field.getDeclaredAnnotation(Asn1Field.class); in getAnnotatedFields() 528 Asn1Field.class.getName() + " used on a static field: " in getAnnotatedFields()
|
D | Asn1Field.java | 26 public @interface Asn1Field { annotation
|
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v1/ |
D | V1SchemeVerifier.java | 26 import com.android.apksig.internal.asn1.Asn1Field; 2069 @Asn1Field(type = Asn1Type.OCTET_STRING) 2075 @Asn1Field(type = Asn1Type.OBJECT_IDENTIFIER)
|