HomeSort by relevance Sort by last modified time
    Searched refs:trailerField (Results 1 - 6 of 6) sorted by null

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
RSASSAPSSparams.java 23 private ASN1Integer trailerField;
53 trailerField = DEFAULT_TRAILER_FIELD;
60 ASN1Integer trailerField)
65 this.trailerField = trailerField;
74 trailerField = DEFAULT_TRAILER_FIELD;
92 trailerField = ASN1Integer.getInstance(o, true);
117 return trailerField.getValue();
126 * trailerField [3] TrailerField DEFAULT trailerFieldB
    [all...]
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/pkcs/
RSASSAPSSparams.java 27 private ASN1Integer trailerField;
57 trailerField = DEFAULT_TRAILER_FIELD;
64 ASN1Integer trailerField)
69 this.trailerField = trailerField;
78 trailerField = DEFAULT_TRAILER_FIELD;
96 trailerField = ASN1Integer.getInstance(o, true);
121 return trailerField.getValue();
130 * trailerField [3] TrailerField DEFAULT trailerFieldB
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
PSSParameters.java 67 long trailerField;
71 trailerField = (int) NativeCrypto.asn1_read_uint64(trailerRef);
75 // 1 is the only legal value for trailerField
76 if (trailerField != 1) {
133 // 1 is the only legal value for trailerField and the default, so ignore it
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
PSSParameters.java 71 long trailerField;
75 trailerField = (int) NativeCrypto.asn1_read_uint64(trailerRef);
79 // 1 is the only legal value for trailerField
80 if (trailerField != 1) {
137 // 1 is the only legal value for trailerField and the default, so ignore it
  /external/boringssl/src/crypto/x509/
rsa_pss.c 74 ASN1_EXP_OPT(RSA_PSS_PARAMS, trailerField, ASN1_INTEGER,3),
277 if (pss->trailerField != NULL && ASN1_INTEGER_get(pss->trailerField) != 1) {
370 if (pss->trailerField) {
371 if (i2a_ASN1_INTEGER(bp, pss->trailerField) <= 0) {
  /external/boringssl/src/include/openssl/
x509.h     [all...]

Completed in 131 milliseconds