source: EcnlProtoTool/trunk/openssl-1.1.0e/crypto/asn1/asn1_locl.h@ 331

Last change on this file since 331 was 331, checked in by coas-nagasima, 6 years ago

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr
File size: 3.0 KB
Line 
1/*
2 * Copyright 2005-2016 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10/* Internal ASN1 structures and functions: not for application use */
11
12int asn1_utctime_to_tm(struct tm *tm, const ASN1_UTCTIME *d);
13int asn1_generalizedtime_to_tm(struct tm *tm, const ASN1_GENERALIZEDTIME *d);
14
15/* ASN1 scan context structure */
16
17struct asn1_sctx_st {
18 /* The ASN1_ITEM associated with this field */
19 const ASN1_ITEM *it;
20 /* If ASN1_TEMPLATE associated with this field */
21 const ASN1_TEMPLATE *tt;
22 /* Various flags associated with field and context */
23 unsigned long flags;
24 /* If SEQUENCE OF or SET OF, field index */
25 int skidx;
26 /* ASN1 depth of field */
27 int depth;
28 /* Structure and field name */
29 const char *sname, *fname;
30 /* If a primitive type the type of underlying field */
31 int prim_type;
32 /* The field value itself */
33 ASN1_VALUE **field;
34 /* Callback to pass information to */
35 int (*scan_cb) (ASN1_SCTX *ctx);
36 /* Context specific application data */
37 void *app_data;
38} /* ASN1_SCTX */ ;
39
40typedef struct mime_param_st MIME_PARAM;
41DEFINE_STACK_OF(MIME_PARAM)
42typedef struct mime_header_st MIME_HEADER;
43DEFINE_STACK_OF(MIME_HEADER)
44
45/* Month values for printing out times */
46extern const char *_asn1_mon[12];
47
48void asn1_string_embed_free(ASN1_STRING *a, int embed);
49
50int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it);
51int asn1_set_choice_selector(ASN1_VALUE **pval, int value,
52 const ASN1_ITEM *it);
53
54ASN1_VALUE **asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
55
56const ASN1_TEMPLATE *asn1_do_adb(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt,
57 int nullerr);
58
59int asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it);
60
61void asn1_enc_init(ASN1_VALUE **pval, const ASN1_ITEM *it);
62void asn1_enc_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
63int asn1_enc_restore(int *len, unsigned char **out, ASN1_VALUE **pval,
64 const ASN1_ITEM *it);
65int asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen,
66 const ASN1_ITEM *it);
67
68void asn1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed);
69void asn1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
70
71ASN1_OBJECT *c2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp,
72 long length);
73int i2c_ASN1_BIT_STRING(ASN1_BIT_STRING *a, unsigned char **pp);
74ASN1_BIT_STRING *c2i_ASN1_BIT_STRING(ASN1_BIT_STRING **a,
75 const unsigned char **pp, long length);
76int i2c_ASN1_INTEGER(ASN1_INTEGER *a, unsigned char **pp);
77ASN1_INTEGER *c2i_ASN1_INTEGER(ASN1_INTEGER **a, const unsigned char **pp,
78 long length);
Note: See TracBrowser for help on using the repository browser.