Home
last modified time | relevance | path

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

12345678910>>...28

/freebsd/crypto/openssl/crypto/x509/
H A Dx509_ext.c21 return X509v3_get_ext_count(x->crl.extensions); in X509_CRL_get_ext_count()
42 return X509v3_get_ext(x->crl.extensions, loc); in X509_CRL_get_ext()
47 return X509v3_delete_ext(x->crl.extensions, loc); in X509_CRL_delete_ext()
68 return X509v3_get_ext_count(x->cert_info.extensions); in X509_get_ext_count()
84 (x->cert_info.extensions, crit, lastpos)); in X509_get_ext_by_critical()
89 return X509v3_get_ext(x->cert_info.extensions, loc); in X509_get_ext()
94 return X509v3_delete_ext(x->cert_info.extensions, loc); in X509_delete_ext()
116 return X509v3_get_ext_count(x->extensions); in X509_REVOKED_get_ext_count()
137 return X509v3_get_ext(x->extensions, loc); in X509_REVOKED_get_ext()
142 return X509v3_delete_ext(x->extensions, loc); in X509_REVOKED_delete_ext()
[all …]
/freebsd/crypto/heimdal/lib/hdb/
H A Dext.c42 if (ent->extensions == NULL) in hdb_entry_check_mandatory()
95 entry->extensions = calloc(1, sizeof(*entry->extensions)); in hdb_replace_extension()
96 if (entry->extensions == NULL) { in hdb_replace_extension()
161 (entry->extensions->len+1)*sizeof(entry->extensions->val[0])); in hdb_replace_extension()
169 &entry->extensions->val[entry->extensions->len]); in hdb_replace_extension()
171 entry->extensions->len++; in hdb_replace_extension()
193 sizeof(entry->extensions->val[i]) * (entry->extensions->len - i - 1)); in hdb_clear_extension()
194 entry->extensions->len--; in hdb_clear_extension()
198 free(entry->extensions->val); in hdb_clear_extension()
199 free(entry->extensions); in hdb_clear_extension()
[all …]
/freebsd/crypto/openssl/util/perl/
H A Dcheckhandshake.pm17 our @EXPORT = qw(@handmessages @extensions checkhandshake);
61 our @extensions = ();
128 $extensions[$extloop][3] != 0;
138 next if ($message->mt() != $extensions[$extloop][0]);
139 next if ($message->server() != $extensions[$extloop][2]);
216 next if ($message->mt() != $extensions[$extloop][0]);
217 next if ($message->server() != $extensions[$extloop][2]);
218 ok (($extensions[$extloop][3] & $exttype) == 0
219 || defined ($msgexts->{$extensions[$extloop][1]}),
221 ." Extension: ".($extensions[$extloop][3] & $exttype).", "
[all …]
/freebsd/crypto/openssl/util/perl/TLSProxy/
H A DEncryptedExtensions.pm59 my %extensions = ();
64 $extensions{$type} = $extdata;
67 $self->extension_data(\%extensions);
77 my $extensions = "";
81 $extensions .= pack("n", $key);
82 $extensions .= pack("n", length($extdata));
83 $extensions .= $extdata;
86 $data = pack('n', length($extensions));
87 $data .= $extensions;
H A DCertificateRequest.pm53 my %extensions = ();
58 $extensions{$type} = $extdata;
60 $self->extension_data(\%extensions);
72 my $extensions = "";
76 $extensions .= pack("n", $key);
77 $extensions .= pack("n", length($extdata));
78 $extensions .= $extdata;
81 $data = pack('n', length($extensions));
82 $data .= $extensions;
H A DServerHello.pm91 my %extensions = ();
96 $extensions{$type} = $extdata;
118 $self->extension_data(\%extensions);
143 my $extensions = "";
154 $extensions .= pack("n", $key);
155 $extensions .= pack("n", length($extdata));
156 $extensions .= $extdata;
158 $extensions .= pack("n", $key);
160 $extensions .= $extdata;
164 $data .= pack('n', length($extensions));
[all …]
H A DClientHello.pm75 my %extensions = ();
80 $extensions{$type} = $extdata;
92 $self->extension_data(\%extensions);
107 my %extensions = %{$self->extension_data};
112 if (exists $extensions{TLSProxy::Message::EXT_ENCRYPT_THEN_MAC}) {
135 my $extensions = "";
148 $extensions .= $self->extension_contents($key);
150 $extensions .= $self->extension_contents($key) if ($key == $self->dupext);
154 $extensions .= $self->extension_contents(TLSProxy::Message::EXT_PSK);
161 $data .= pack('n', length($extensions));
[all …]
H A DCertificate.pm82 my %extensions = ();
87 $extensions{$type} = $extdata;
93 $self->extension_data(\%extensions);
133 my $extensions = "";
138 $extensions .= pack("n", $key);
139 $extensions .= pack("n", length($extdata));
140 $extensions .= $extdata;
145 my $certlistlen = $certlen + length($extensions)
153 $data .= pack('n', length($extensions));
154 $data .= $extensions;
/freebsd/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 …]
/freebsd/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 */
/freebsd/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 */
/freebsd/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()
451 extensions[i].extension.s, in print_color()
452 extensions[i].extension.len) == 0) { in print_color()
[all …]
/freebsd/crypto/openssl/test/smime-certs/
H A Dmksmime-certs.sh25 -extfile ca.cnf -extensions usr_cert -CAcreateserial >>smrsa1.pem
30 -extfile ca.cnf -extensions usr_cert -CAcreateserial >>smrsa2.pem
35 -extfile ca.cnf -extensions usr_cert -CAcreateserial >>smrsa3.pem
44 -extfile ca.cnf -extensions usr_cert -CAcreateserial >>smdsa1.pem
48 -extfile ca.cnf -extensions usr_cert -CAcreateserial >>smdsa2.pem
52 -extfile ca.cnf -extensions usr_cert -CAcreateserial >>smdsa3.pem
62 -extfile ca.cnf -extensions usr_cert -CAcreateserial >>smec1.pem
66 -extfile ca.cnf -extensions usr_cert -CAcreateserial >>smec2.pem
83 -extfile ca.cnf -extensions usr_cert -CAcreateserial >>smdh.pem
/freebsd/contrib/openpam/
H A Dconfig.h.in122 /* Enable extensions on AIX 3, Interix. */
126 /* Enable general extensions on macOS. */
130 /* Enable general extensions on Solaris. */
134 /* Enable GNU extensions on systems that have them. */
149 /* Enable general extensions on NetBSD.
150 Enable NetBSD compatibility extensions on Minix. */
154 /* Enable OpenBSD compatibility extensions on NetBSD.
171 /* Enable extensions specified by ISO/IEC TS 18661-5:2014. */
195 /* Enable extensions specified by ISO/IEC 24747:2009. */
199 /* Enable extensions on HP NonStop. */
[all …]
/freebsd/crypto/openssl/demos/certs/apps/
H A Dmkxcerts.sh7 -config apps.cnf -extensions usr_cert -x509 -nodes \
10 -config apps.cnf -extensions usr_cert -x509 -nodes \
13 -config apps.cnf -extensions usr_cert -x509 -nodes \
22 -config apps.cnf -extensions ec_cert -x509 -nodes \
27 -config apps.cnf -extensions ec_cert -x509 -nodes \
/freebsd/sys/contrib/device-tree/src/riscv/sophgo/
H A Dsg2042-cpus.dtsi261 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
286 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
311 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
336 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
361 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
386 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
411 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
436 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
461 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
486 riscv,isa-extensions = "i", "m", "a", "f", "d", "c",
[all …]
/freebsd/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.
/freebsd/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",
109 CXX, "ISO C++ 1998 with amendments and GNU extensions",
119 "ISO C++ 2011 with amendments and GNU extensions",
129 CXX, "ISO C++ 2014 with amendments and GNU extensions",
153 CXX, "ISO C++ 2020 DIS with GNU extensions",
165 CXX, "ISO C++ 2023 DIS with GNU extensions",
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DX509V3_get_d2i.pod42 X509V3_get_d2i() looks for an extension with OID I<nid> in the extensions
63 X509_get_ext_d2i() and X509_add1_ext_i2d() operate on the extensions of
72 extensions of B<X509_REVOKED> structure I<r> (i.e for CRL entry extensions).
76 X509_REVOKED_get0_extensions() return a STACK of all the extensions
118 The following sections contain a list of all supported extensions
123 The following certificate extensions are defined in PKIX standards such as
152 The following are (largely obsolete) Netscape certificate extensions.
170 The following are CRL extensions from PKIX standards such as RFC5280.
196 The following extensions are used by certificate transparency, RFC6962
215 X509_REVOKED_get0_extensions() return a stack of extensions. They return
[all …]
H A DSSL_CTX_use_serverinfo.pod25 These functions load "serverinfo" TLS extensions into the SSL_CTX. A
29 SSL_CTX_use_serverinfo_ex() loads one or more serverinfo extensions from
33 If B<version> is B<SSL_SERVERINFOV2> then the extensions in the array must
37 extensions to be added to a Certificate message, then the extension will only
41 If B<version> is B<SSL_SERVERINFOV1> then the extensions in the array must
54 SSL_CTX_use_serverinfo_file() loads one or more serverinfo extensions from
55 B<file> into B<ctx>. The extensions must be in PEM format. Each extension
/freebsd/crypto/openssl/demos/certs/
H A Dmkcerts.sh15 -extfile ca.cnf -extensions v3_ca -CAcreateserial -out intca.pem
22 -extfile ca.cnf -extensions usr_cert -CAcreateserial -out server.pem
29 -extfile ca.cnf -extensions usr_cert -CAcreateserial -out client.pem
36 -extfile ca.cnf -extensions usr_cert -CAcreateserial -out rev.pem
43 -extfile ca.cnf -extensions ocsp_cert -CAcreateserial -out resp.pem
62 -extfile ca.cnf -extensions dh_cert -CAcreateserial -out dhserver.pem
72 -extfile ca.cnf -extensions dh_cert -CAcreateserial -out dhclient.pem

12345678910>>...28