Home
last modified time | relevance | path

Searched refs:ASN1_INTEGER (Results 1 – 25 of 117) sorted by relevance

12345

/third_party/openssl/crypto/ts/
Dts_local.h43 ASN1_INTEGER *version;
46 ASN1_INTEGER *nonce;
58 ASN1_INTEGER *seconds;
59 ASN1_INTEGER *millis;
60 ASN1_INTEGER *micros;
83 ASN1_INTEGER *version;
86 ASN1_INTEGER *serial;
90 ASN1_INTEGER *nonce;
96 ASN1_INTEGER *status;
109 ASN1_INTEGER *serial;
[all …]
Dts_rsp_utils.c110 int TS_TST_INFO_set_serial(TS_TST_INFO *a, const ASN1_INTEGER *serial) in TS_TST_INFO_set_serial()
112 ASN1_INTEGER *new_serial; in TS_TST_INFO_set_serial()
126 const ASN1_INTEGER *TS_TST_INFO_get_serial(const TS_TST_INFO *a) in TS_TST_INFO_get_serial()
173 int TS_ACCURACY_set_seconds(TS_ACCURACY *a, const ASN1_INTEGER *seconds) in TS_ACCURACY_set_seconds()
175 ASN1_INTEGER *new_seconds; in TS_ACCURACY_set_seconds()
189 const ASN1_INTEGER *TS_ACCURACY_get_seconds(const TS_ACCURACY *a) in TS_ACCURACY_get_seconds()
194 int TS_ACCURACY_set_millis(TS_ACCURACY *a, const ASN1_INTEGER *millis) in TS_ACCURACY_set_millis()
196 ASN1_INTEGER *new_millis = NULL; in TS_ACCURACY_set_millis()
212 const ASN1_INTEGER *TS_ACCURACY_get_millis(const TS_ACCURACY *a) in TS_ACCURACY_get_millis()
217 int TS_ACCURACY_set_micros(TS_ACCURACY *a, const ASN1_INTEGER *micros) in TS_ACCURACY_set_micros()
[all …]
Dts_asn1.c46 ASN1_SIMPLE(TS_REQ, version, ASN1_INTEGER),
49 ASN1_OPT(TS_REQ, nonce, ASN1_INTEGER),
78 ASN1_OPT(TS_ACCURACY, seconds, ASN1_INTEGER),
79 ASN1_IMP_OPT(TS_ACCURACY, millis, ASN1_INTEGER, 0),
80 ASN1_IMP_OPT(TS_ACCURACY, micros, ASN1_INTEGER, 1)
87 ASN1_SIMPLE(TS_TST_INFO, version, ASN1_INTEGER),
90 ASN1_SIMPLE(TS_TST_INFO, serial, ASN1_INTEGER),
94 ASN1_OPT(TS_TST_INFO, nonce, ASN1_INTEGER),
125 ASN1_SIMPLE(TS_STATUS_INFO, status, ASN1_INTEGER),
206 ASN1_SIMPLE(ESS_ISSUER_SERIAL, serial, ASN1_INTEGER)
Dts_req_utils.c100 int TS_REQ_set_nonce(TS_REQ *a, const ASN1_INTEGER *nonce) in TS_REQ_set_nonce()
102 ASN1_INTEGER *new_nonce; in TS_REQ_set_nonce()
116 const ASN1_INTEGER *TS_REQ_get_nonce(const TS_REQ *a) in TS_REQ_get_nonce()
/third_party/openssl/doc/man3/
DASN1_INTEGER_get_int64.pod13 int ASN1_INTEGER_get_int64(int64_t *pr, const ASN1_INTEGER *a);
14 long ASN1_INTEGER_get(const ASN1_INTEGER *a);
16 int ASN1_INTEGER_set_int64(ASN1_INTEGER *a, int64_t r);
17 int ASN1_INTEGER_set(const ASN1_INTEGER *a, long v);
19 int ASN1_INTEGER_get_uint64(uint64_t *pr, const ASN1_INTEGER *a);
20 int ASN1_INTEGER_set_uint64(ASN1_INTEGER *a, uint64_t r);
22 ASN1_INTEGER *BN_to_ASN1_INTEGER(const BIGNUM *bn, ASN1_INTEGER *ai);
23 BIGNUM *ASN1_INTEGER_to_BN(const ASN1_INTEGER *ai, BIGNUM *bn);
36 These functions convert to and from B<ASN1_INTEGER> and B<ASN1_ENUMERATED>
39 ASN1_INTEGER_get_int64() converts an B<ASN1_INTEGER> into an B<int64_t> type
[all …]
DX509_get_serialNumber.pod14 ASN1_INTEGER *X509_get_serialNumber(X509 *x);
15 const ASN1_INTEGER *X509_get0_serialNumber(const X509 *x);
16 int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial);
21 B<ASN1_INTEGER> structure which can be examined or initialised. The value
33 X509_get_serialNumber() and X509_get0_serialNumber() return an B<ASN1_INTEGER>
/third_party/openssl/crypto/asn1/
Da_int.c18 ASN1_INTEGER *ASN1_INTEGER_dup(const ASN1_INTEGER *x) in ASN1_INTEGER_dup()
23 int ASN1_INTEGER_cmp(const ASN1_INTEGER *x, const ASN1_INTEGER *y) in ASN1_INTEGER_cmp()
201 int i2c_ASN1_INTEGER(ASN1_INTEGER *a, unsigned char **pp) in i2c_ASN1_INTEGER()
280 ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a, const unsigned char **pp, in c2i_ASN1_INTEGER()
283 ASN1_INTEGER *ret = NULL; in c2i_ASN1_INTEGER()
387 ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a, const unsigned char **pp, in d2i_ASN1_UINTEGER()
390 ASN1_INTEGER *ret = NULL; in d2i_ASN1_UINTEGER()
452 ASN1_INTEGER *ret; in bn_to_asn1_string()
493 static BIGNUM *asn1_string_to_bn(const ASN1_INTEGER *ai, BIGNUM *bn, in asn1_string_to_bn()
513 int ASN1_INTEGER_get_int64(int64_t *pr, const ASN1_INTEGER *a) in ASN1_INTEGER_get_int64()
[all …]
Dasn1_local.h75 int i2c_ASN1_INTEGER(ASN1_INTEGER *a, unsigned char **pp);
76 ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a, const unsigned char **pp,
Dp5_scrypt.c23 ASN1_SIMPLE(SCRYPT_PARAMS, costParameter, ASN1_INTEGER),
24 ASN1_SIMPLE(SCRYPT_PARAMS, blockSize, ASN1_INTEGER),
25 ASN1_SIMPLE(SCRYPT_PARAMS, parallelizationParameter, ASN1_INTEGER),
26 ASN1_OPT(SCRYPT_PARAMS, keyLength, ASN1_INTEGER),
/third_party/openssl/include/crypto/
Dx509.h59 ASN1_INTEGER *version; /* version, defaults to v1(0) so can be NULL */
79 ASN1_INTEGER *version; /* version: defaults to v1(0) so may be NULL */
105 ASN1_INTEGER *crl_number;
106 ASN1_INTEGER *base_crl_number;
117 ASN1_INTEGER serialNumber; /* revoked entry serial number */
147 ASN1_INTEGER *version; /* [ 0 ] default of v1 */
148 ASN1_INTEGER serialNumber;
263 ASN1_INTEGER *version;
/third_party/openssl/crypto/pkcs7/
Dpk7_asn1.c72 ASN1_SIMPLE(PKCS7_SIGNED, version, ASN1_INTEGER),
94 ASN1_SIMPLE(PKCS7_SIGNER_INFO, version, ASN1_INTEGER),
112 ASN1_SIMPLE(PKCS7_ISSUER_AND_SERIAL, serial, ASN1_INTEGER)
118 ASN1_SIMPLE(PKCS7_ENVELOPE, version, ASN1_INTEGER),
137 ASN1_SIMPLE(PKCS7_RECIP_INFO, version, ASN1_INTEGER),
154 ASN1_SIMPLE(PKCS7_SIGN_ENVELOPE, version, ASN1_INTEGER),
166 ASN1_SIMPLE(PKCS7_ENCRYPT, version, ASN1_INTEGER),
173 ASN1_SIMPLE(PKCS7_DIGEST, version, ASN1_INTEGER),
/third_party/openssl/crypto/x509v3/
Dv3_sxnet.c44 ASN1_SIMPLE(SXNETID, zone, ASN1_INTEGER),
51 ASN1_SIMPLE(SXNET, version, ASN1_INTEGER),
106 ASN1_INTEGER *izone; in SXNET_add_id_asc()
120 ASN1_INTEGER *izone; in SXNET_add_id_ulong()
137 int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *zone, const char *user, in SXNET_add_id_INTEGER()
188 ASN1_INTEGER *izone; in SXNET_get_id_asc()
202 ASN1_INTEGER *izone; in SXNET_get_id_ulong()
216 ASN1_OCTET_STRING *SXNET_get_id_INTEGER(SXNET *sx, ASN1_INTEGER *zone) in SXNET_get_id_INTEGER()
Dv3_asid.c34 ASN1_SIMPLE(ASRange, min, ASN1_INTEGER),
35 ASN1_SIMPLE(ASRange, max, ASN1_INTEGER)
39 ASN1_SIMPLE(ASIdOrRange, u.id, ASN1_INTEGER),
182 int which, ASN1_INTEGER *min, ASN1_INTEGER *max) in X509v3_asid_add_id_or_range()
235 ASN1_INTEGER **min, ASN1_INTEGER **max) in extract_min_max()
258 ASN1_INTEGER *a_max_plus_one = NULL; in ASIdentifierChoice_is_canonical()
259 ASN1_INTEGER *orig; in ASIdentifierChoice_is_canonical()
282 ASN1_INTEGER *a_min = NULL, *a_max = NULL, *b_min = NULL, *b_max = in ASIdentifierChoice_is_canonical()
329 ASN1_INTEGER *a_min, *a_max; in ASIdentifierChoice_is_canonical()
360 ASN1_INTEGER *a_max_plus_one = NULL; in ASIdentifierChoice_canonize()
[all …]
Dv3_int.c16 NID_crl_number, 0, ASN1_ITEM_ref(ASN1_INTEGER),
24 NID_delta_crl, 0, ASN1_ITEM_ref(ASN1_INTEGER),
38 NID_inhibit_any_policy, 0, ASN1_ITEM_ref(ASN1_INTEGER),
Dv3_tlsf.c27 ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, TLS_FEATURE, ASN1_INTEGER)
66 ASN1_INTEGER *ai; in STACK_OF()
92 ASN1_INTEGER *ai; in v2i_TLS_FEATURE()
/third_party/openssl/include/openssl/
Dx509v3.h105 ASN1_INTEGER *pathlen;
164 typedef STACK_OF(ASN1_INTEGER) TLS_FEATURE;
210 ASN1_INTEGER *serial;
216 ASN1_INTEGER *zone;
223 ASN1_INTEGER *version;
229 STACK_OF(ASN1_INTEGER) *noticenos;
268 ASN1_INTEGER *minimum;
269 ASN1_INTEGER *maximum;
280 ASN1_INTEGER *requireExplicitPolicy;
281 ASN1_INTEGER *inhibitPolicyMapping;
[all …]
Dts.h183 const ASN1_INTEGER *TS_STATUS_INFO_get0_status(const TS_STATUS_INFO *a);
203 int TS_REQ_set_nonce(TS_REQ *a, const ASN1_INTEGER *nonce);
204 const ASN1_INTEGER *TS_REQ_get_nonce(const TS_REQ *a);
243 int TS_TST_INFO_set_serial(TS_TST_INFO *a, const ASN1_INTEGER *serial);
244 const ASN1_INTEGER *TS_TST_INFO_get_serial(const TS_TST_INFO *a);
252 int TS_ACCURACY_set_seconds(TS_ACCURACY *a, const ASN1_INTEGER *seconds);
253 const ASN1_INTEGER *TS_ACCURACY_get_seconds(const TS_ACCURACY *a);
255 int TS_ACCURACY_set_millis(TS_ACCURACY *a, const ASN1_INTEGER *millis);
256 const ASN1_INTEGER *TS_ACCURACY_get_millis(const TS_ACCURACY *a);
258 int TS_ACCURACY_set_micros(TS_ACCURACY *a, const ASN1_INTEGER *micros);
[all …]
Dasn1.h438 DEFINE_STACK_OF(ASN1_INTEGER)
451 ASN1_INTEGER *integer;
570 DECLARE_ASN1_FUNCTIONS(ASN1_INTEGER)
571 ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a, const unsigned char **pp,
573 ASN1_INTEGER *ASN1_INTEGER_dup(const ASN1_INTEGER *x);
574 int ASN1_INTEGER_cmp(const ASN1_INTEGER *x, const ASN1_INTEGER *y);
639 int i2a_ASN1_INTEGER(BIO *bp, const ASN1_INTEGER *a);
640 int a2i_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *bs, char *buf, int size);
652 int ASN1_INTEGER_get_int64(int64_t *pr, const ASN1_INTEGER *a);
653 int ASN1_INTEGER_set_int64(ASN1_INTEGER *a, int64_t r);
[all …]
Dpkcs7.h34 ASN1_INTEGER *serial;
38 ASN1_INTEGER *version; /* version 1 */
52 ASN1_INTEGER *version; /* version 0 */
62 ASN1_INTEGER *version; /* version 1 */
82 ASN1_INTEGER *version; /* version 0 */
88 ASN1_INTEGER *version; /* version 1 */
98 ASN1_INTEGER *version; /* version 0 */
105 ASN1_INTEGER *version; /* version 0 */
/third_party/openssl/crypto/ocsp/
Docsp_local.h20 ASN1_INTEGER serialNumber;
39 ASN1_INTEGER *version;
156 ASN1_INTEGER *version;
204 ASN1_INTEGER *crlNum;
Docsp_asn.c27 ASN1_EMBED(OCSP_CERTID, serialNumber, ASN1_INTEGER)
40 ASN1_EXP_OPT(OCSP_REQINFO, version, ASN1_INTEGER, 0),
104 ASN1_EXP_OPT(OCSP_RESPDATA, version, ASN1_INTEGER, 0),
124 ASN1_EXP_OPT(OCSP_CRLID, crlNum, ASN1_INTEGER, 1),
/third_party/openssl/crypto/pkcs12/
Dp12_local.h13 ASN1_INTEGER *iter; /* defaults to 1 */
17 ASN1_INTEGER *version;
/third_party/openssl/apps/
Dts.c46 static ASN1_INTEGER *create_nonce(int bits);
59 static ASN1_INTEGER *serial_cb(TS_RESP_CTX *ctx, void *data);
60 static ASN1_INTEGER *next_serial(const char *serialfile);
61 static int save_ts_serial(const char *serialfile, ASN1_INTEGER *serial);
424 ASN1_INTEGER *nonce_asn1 = NULL; in create_query()
523 static ASN1_INTEGER *create_nonce(int bits) in create_nonce()
526 ASN1_INTEGER *nonce = NULL; in create_nonce()
732 static ASN1_INTEGER *serial_cb(TS_RESP_CTX *ctx, void *data) in serial_cb()
735 ASN1_INTEGER *serial = next_serial(serial_file); in serial_cb()
749 static ASN1_INTEGER *next_serial(const char *serialfile) in next_serial()
[all …]
/third_party/openssl/crypto/x509/
Dx509cset.c157 const ASN1_INTEGER *X509_REVOKED_get0_serialNumber(const X509_REVOKED *x) in X509_REVOKED_get0_serialNumber()
162 int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial) in X509_REVOKED_set_serialNumber()
164 ASN1_INTEGER *in; in X509_REVOKED_set_serialNumber()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/
Dhttp_curl.c306 ASN1_INTEGER *numBits;
307 ASN1_INTEGER *tableSize;
312 ASN1_INTEGER *type; /* LogotypeImageType ::= INTEGER */
313 ASN1_INTEGER *fileSize;
314 ASN1_INTEGER *xSize;
315 ASN1_INTEGER *ySize;
326 ASN1_INTEGER *fileSize;
327 ASN1_INTEGER *playTime;
328 ASN1_INTEGER *channels;
329 ASN1_INTEGER *sampleRate;
[all …]

12345