Home
last modified time | relevance | path

Searched refs:extensions (Results 1 – 25 of 713) sorted by relevance

12345678910>>...29

/src/crypto/openssl/crypto/x509/
H A Dx509_ext.c21 return X509v3_get_ext_count(x->crl.extensions); in X509_CRL_get_ext_count()
26 return X509v3_get_ext_by_NID(x->crl.extensions, nid, lastpos); in X509_CRL_get_ext_by_NID()
32 return X509v3_get_ext_by_OBJ(x->crl.extensions, obj, lastpos); in X509_CRL_get_ext_by_OBJ()
37 return X509v3_get_ext_by_critical(x->crl.extensions, crit, lastpos); in X509_CRL_get_ext_by_critical()
42 return X509v3_get_ext(x->crl.extensions, loc); in X509_CRL_get_ext()
59 return delete_ext(&x->crl.extensions, loc); in X509_CRL_delete_ext()
64 return X509V3_get_d2i(x->crl.extensions, nid, crit, idx); in X509_CRL_get_ext_d2i()
70 return X509V3_add1_i2d(&x->crl.extensions, nid, value, crit, flags); in X509_CRL_add1_ext_i2d()
75 return (X509v3_add_ext(&(x->crl.extensions), ex, loc) != NULL); in X509_CRL_add_ext()
80 return X509v3_get_ext_count(x->cert_info.extensions); in X509_get_ext_count()
[all …]
/src/crypto/heimdal/lib/hdb/
H A Dext.c42 if (ent->extensions == NULL) in hdb_entry_check_mandatory()
49 for (i = 0; i < ent->extensions->len; i++) { in hdb_entry_check_mandatory()
50 if (ent->extensions->val[i].data.element != in hdb_entry_check_mandatory()
53 if (ent->extensions->val[i].mandatory) { in hdb_entry_check_mandatory()
68 if (entry->extensions == NULL) in hdb_find_extension()
71 for (i = 0; i < entry->extensions->len; i++) in hdb_find_extension()
72 if (entry->extensions->val[i].data.element == (unsigned)type) in hdb_find_extension()
73 return &entry->extensions->val[i]; in hdb_find_extension()
94 if (entry->extensions == NULL) { in hdb_replace_extension()
95 entry->extensions = calloc(1, sizeof(*entry->extensions)); in hdb_replace_extension()
[all …]
/src/crypto/openssl/util/perl/
H A Dcheckhandshake.pm17 our @EXPORT = qw(@handmessages @extensions checkhandshake);
66 our @extensions = ();
133 $extensions[$extloop][3] != 0;
135 $extchnum = 2 if $extensions[$extloop][0] != TLSProxy::Message::MT_CLIENT_HELLO
137 $extshnum = 2 if $extensions[$extloop][0] != TLSProxy::Message::MT_SERVER_HELLO
139 next if $extensions[$extloop][0] == TLSProxy::Message::MT_CLIENT_HELLO
141 next if $extensions[$extloop][0] == TLSProxy::Message::MT_SERVER_HELLO
143 next if ($message->mt() != $extensions[$extloop][0]);
144 next if ($message->server() != $extensions[$extloop][2]);
208 for (my $extloop = 0, $extcount = 0; $extensions[$extloop][3] != 0;
[all …]
/src/crypto/openssl/util/perl/TLSProxy/
H A DEncryptedExtensions.pm67 my %extensions = ();
72 $extensions{$type} = $extdata;
75 $self->extension_data(\%extensions);
85 my $extensions = "";
89 $extensions .= pack("n", $key);
90 $extensions .= pack("n", length($extdata));
91 $extensions .= $extdata;
94 $data = pack('n', length($extensions));
95 $data .= $extensions;
H A DCertificateRequest.pm61 my %extensions = ();
66 $extensions{$type} = $extdata;
68 $self->extension_data(\%extensions);
80 my $extensions = "";
84 $extensions .= pack("n", $key);
85 $extensions .= pack("n", length($extdata));
86 $extensions .= $extdata;
89 $data = pack('n', length($extensions));
90 $data .= $extensions;
H A DServerHello.pm101 my %extensions = ();
106 $extensions{$type} = $extdata;
128 $self->extension_data(\%extensions);
153 my $extensions = "";
164 $extensions .= pack("n", $key);
165 $extensions .= pack("n", length($extdata));
166 $extensions .= $extdata;
168 $extensions .= pack("n", $key);
169 $extensions .= pack("n", length($extdata));
170 $extensions .= $extdata;
[all …]
H A DCertificate.pm90 my %extensions = ();
95 $extensions{$type} = $extdata;
101 $self->extension_data(\%extensions);
141 my $extensions = "";
146 $extensions .= pack("n", $key);
147 $extensions .= pack("n", length($extdata));
148 $extensions .= $extdata;
153 my $certlistlen = $certlen + length($extensions)
161 $data .= pack('n', length($extensions));
162 $data .= $extensions;
H A DClientHello.pm96 my %extensions = ();
101 $extensions{$type} = $extdata;
115 $self->extension_data(\%extensions);
133 my %extensions = %{$self->extension_data};
138 if (exists $extensions{TLSProxy::Message::EXT_ENCRYPT_THEN_MAC}) {
161 my $extensions = "";
180 $extensions .= $self->extension_contents($key);
182 $extensions .= $self->extension_contents($key) if ($key == $self->dupext);
186 $extensions .= $self->extension_contents(TLSProxy::Message::EXT_PSK);
190 $extensions .= $self->extension_contents(TLSProxy::Message::EXT_FORCE_LAST);
[all …]
/src/crypto/openssl/crypto/ts/
H A Dts_req_utils.c134 return a->extensions; in STACK_OF()
141 sk_X509_EXTENSION_pop_free(a->extensions, X509_EXTENSION_free); in TS_REQ_ext_free()
142 a->extensions = NULL; in TS_REQ_ext_free()
147 return X509v3_get_ext_count(a->extensions); in TS_REQ_get_ext_count()
152 return X509v3_get_ext_by_NID(a->extensions, nid, lastpos); in TS_REQ_get_ext_by_NID()
157 return X509v3_get_ext_by_OBJ(a->extensions, obj, lastpos); in TS_REQ_get_ext_by_OBJ()
162 return X509v3_get_ext_by_critical(a->extensions, crit, lastpos); in TS_REQ_get_ext_by_critical()
167 return X509v3_get_ext(a->extensions, loc); in TS_REQ_get_ext()
172 return X509v3_delete_ext(a->extensions, loc); in TS_REQ_delete_ext()
177 return X509v3_add_ext(&a->extensions, ex, loc) != NULL; in TS_REQ_add_ext()
[all …]
H A Dts_rsp_utils.c295 return a->extensions; in STACK_OF()
302 sk_X509_EXTENSION_pop_free(a->extensions, X509_EXTENSION_free); in TS_TST_INFO_ext_free()
303 a->extensions = NULL; in TS_TST_INFO_ext_free()
308 return X509v3_get_ext_count(a->extensions); in TS_TST_INFO_get_ext_count()
313 return X509v3_get_ext_by_NID(a->extensions, nid, lastpos); in TS_TST_INFO_get_ext_by_NID()
318 return X509v3_get_ext_by_OBJ(a->extensions, obj, lastpos); in TS_TST_INFO_get_ext_by_OBJ()
323 return X509v3_get_ext_by_critical(a->extensions, crit, lastpos); in TS_TST_INFO_get_ext_by_critical()
328 return X509v3_get_ext(a->extensions, loc); in TS_TST_INFO_get_ext()
333 return X509v3_delete_ext(a->extensions, loc); in TS_TST_INFO_delete_ext()
338 return X509v3_add_ext(&a->extensions, ex, loc) != NULL; in TS_TST_INFO_add_ext()
[all …]
/src/contrib/libevent/
H A Devconfig-private.h.cmake5 /* Enable extensions on AIX 3, Interix. */
8 /* Enable GNU extensions on systems that have them. */
11 /* Enable threading extensions on Solaris. */
14 /* Enable extensions on HP NonStop. */
17 /* Enable general extensions on Solaris. */
35 /* Enable POSIX.2 extensions on QNX for getopt */
H A Devconfig-private.h.in6 /* Enable extensions on AIX 3, Interix. */
10 /* Enable GNU extensions on systems that have them. */
14 /* Enable threading extensions on Solaris. */
18 /* Enable extensions on HP NonStop. */
22 /* Enable general extensions on Solaris. */
48 /* Enable POSIX.2 extensions on QNX for getopt */
/src/contrib/ntp/sntp/libevent/
H A Devconfig-private.h.cmake5 /* Enable extensions on AIX 3, Interix. */
8 /* Enable GNU extensions on systems that have them. */
11 /* Enable threading extensions on Solaris. */
14 /* Enable extensions on HP NonStop. */
17 /* Enable general extensions on Solaris. */
35 /* Enable POSIX.2 extensions on QNX for getopt */
H A Devconfig-private.h.in6 /* Enable extensions on AIX 3, Interix. */
10 /* Enable GNU extensions on systems that have them. */
14 /* Enable threading extensions on Solaris. */
18 /* Enable extensions on HP NonStop. */
22 /* Enable general extensions on Solaris. */
48 /* Enable POSIX.2 extensions on QNX for getopt */
/src/contrib/openpam/
H A Dconfig.h.in125 /* Enable extensions on AIX, Interix, z/OS. */
129 /* Enable general extensions on macOS. */
133 /* Enable general extensions on Solaris. */
137 /* Enable GNU extensions on systems that have them. */
152 /* Enable general extensions on NetBSD.
153 Enable NetBSD compatibility extensions on Minix. */
157 /* Enable OpenBSD compatibility extensions on NetBSD.
174 /* Enable extensions specified by ISO/IEC TS 18661-5:2014. */
178 /* Enable extensions specified by ISO/IEC TS 18661-1:2014. */
182 /* Enable extensions specified by ISO/IEC TS 18661-2:2015. */
[all …]
/src/contrib/tcsh/
H A Dtw.color.c155 static Extension *extensions = NULL; variable
224 xfree(extensions); in init()
228 extensions = NULL; in init()
231 extensions = xmalloc(colorlen + extnum * sizeof(*extensions)); in init()
232 colors = extnum * sizeof(*extensions) + (char *)extensions; in init()
350 e = extensions; in parseLS_COLORS()
401 nextensions = e - extensions; in parseLS_COLORS()
449 if (len >= extensions[i].extension.len in print_color()
450 && strncmp(last - extensions[i].extension.len, in print_color()
451 extensions[i].extension.s, in print_color()
[all …]
/src/contrib/pam-krb5/ci/
H A Dkdc-setup-mit21 cp ci/files/mit/extensions.client /etc/krb5kdc/extensions.client
22 cp ci/files/mit/extensions.kdc /etc/krb5kdc/extensions.kdc
69 -extfile /etc/krb5kdc/extensions.kdc -extensions kdc_cert \
79 -in client.req -extensions client_cert \
80 -extfile /etc/krb5kdc/extensions.client -days 365 -out client.pem
/src/crypto/openssl/demos/certs/apps/
H A Dmkxcerts.sh13 -config apps.cnf -extensions usr_cert -x509 -nodes \
16 -config apps.cnf -extensions usr_cert -x509 -nodes \
19 -config apps.cnf -extensions usr_cert -x509 -nodes \
28 -config apps.cnf -extensions ec_cert -x509 -nodes \
33 -config apps.cnf -extensions ec_cert -x509 -nodes \
/src/sys/contrib/device-tree/src/riscv/sophgo/
H A Dsg2042-cpus.dtsi261 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
288 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
315 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
342 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
369 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
396 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
423 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
450 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
477 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
504 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
[all …]
/src/contrib/llvm-project/clang/include/clang/Basic/
H A DLangStandards.def48 C, "ISO C 1990 with GNU extensions",
61 C, "ISO C 1999 with GNU extensions",
74 C, "ISO C 2011 with GNU extensions",
86 C, "ISO C 2017 with GNU extensions",
96 C, "Working Draft for ISO C23 with GNU extensions",
107 C, "Working Draft for ISO C2y with GNU extensions",
118 CXX, "ISO C++ 1998 with amendments and GNU extensions",
128 "ISO C++ 2011 with amendments and GNU extensions",
138 CXX, "ISO C++ 2014 with amendments and GNU extensions",
150 CXX, "ISO C++ 2017 with amendments and GNU extensions",
[all …]
/src/sys/contrib/device-tree/Bindings/mmc/
H A Dk3-dw-mshc.txt1 * Hisilicon specific extensions to the Synopsys Designware Mobile
10 extensions to the Synopsys Designware Mobile Storage Host Controller.
15 - "hisilicon,hi3660-dw-mshc": for controllers with hi3660 specific extensions.
17 with hi3670 specific extensions.
18 - "hisilicon,hi4511-dw-mshc": for controllers with hi4511 specific extensions.
19 - "hisilicon,hi6220-dw-mshc": for controllers with hi6220 specific extensions.
H A Dexynos-dw-mshc.txt1 * Samsung Exynos specific extensions to the Synopsys Designware Mobile
8 extensions to the Synopsys Designware Mobile Storage Host Controller.
14 specific extensions.
16 specific extensions.
18 specific extensions.
20 specific extensions.
22 specific extensions.
24 specific extensions having an SMU.
26 extensions.
/src/crypto/openssl/doc/man3/
H A DOPENSSL_ppccap.pod13 libcrypto supports PowerPC instruction set extensions. These extensions are
21 To override the set of extensions available to an application, you can set the
28 Multiple extensions are enabled by logically OR-ing the values that represent the
29 desired extensions.
38 Currently, the following extensions are defined:
56 Effect: Enables use of vector instructions but does not enable extensions added
58 vector extensions added at specific ISA levels even if they are otherwise
138 Disable all instruction set extensions:
142 Enable base AltiVec extensions:
H A DX509V3_get_d2i.pod48 X509V3_get_d2i() looks for an extension with OID I<nid> in the extensions
69 X509_get_ext_d2i() and X509_add1_ext_i2d() operate on the extensions of
73 X509_ACERT_get_ext_d2i() and X509_ACERT_add1_ext_i2d() operate on the extensions
77 X509_CRL_get_ext_d2i() and X509_CRL_add1_ext_i2d() operate on the extensions
82 extensions of B<X509_REVOKED> structure I<r> (i.e for CRL entry extensions).
87 STACK of all the extensions of a certificate, an attribute certificate,
130 The following sections contain a list of all supported extensions
135 The following certificate extensions are defined in PKIX standards such as
164 The following are (largely obsolete) Netscape certificate extensions.
182 The following are CRL extensions from PKIX standards such as RFC5280.
[all …]
/src/crypto/openssl/demos/certs/
H A Dmkcerts.sh20 -extfile ca.cnf -extensions v3_ca -CAcreateserial -out intca.pem
27 -extfile ca.cnf -extensions usr_cert -CAcreateserial -out server.pem
34 -extfile ca.cnf -extensions usr_cert -CAcreateserial -out client.pem
41 -extfile ca.cnf -extensions usr_cert -CAcreateserial -out rev.pem
48 -extfile ca.cnf -extensions ocsp_cert -CAcreateserial -out resp.pem
67 -extfile ca.cnf -extensions dh_cert -CAcreateserial -out dhserver.pem
77 -extfile ca.cnf -extensions dh_cert -CAcreateserial -out dhclient.pem

12345678910>>...29