Home
last modified time | relevance | path

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

12345678910>>...31

/openbsd/lib/libcrypto/x509/
H A Dx509_ext.c69 return X509v3_get_ext_count(x->crl->extensions); in X509_CRL_get_ext_count()
97 return X509v3_get_ext(x->crl->extensions, loc); in X509_CRL_get_ext()
104 return X509v3_delete_ext(x->crl->extensions, loc); in X509_CRL_delete_ext()
133 return X509v3_get_ext_count(x->cert_info->extensions); in X509_get_ext_count()
162 return X509v3_get_ext(x->cert_info->extensions, loc); in X509_get_ext()
169 return X509v3_delete_ext(x->cert_info->extensions, loc); in X509_delete_ext()
198 return X509v3_get_ext_count(x->extensions); in X509_REVOKED_get_ext_count()
227 return X509v3_get_ext(x->extensions, loc); in X509_REVOKED_get_ext()
234 return X509v3_delete_ext(x->extensions, loc); in X509_REVOKED_delete_ext()
241 return X509v3_add_ext(&x->extensions, ex, loc) != NULL; in X509_REVOKED_add_ext()
[all …]
/openbsd/regress/lib/libcrypto/x509/
H A Dx509_extensions_test.c68 if (X509v3_get_ext_count(*extensions) != 0) { in test_x509v3_add1_i2d_empty_stack()
146 if (X509v3_get_ext_count(*extensions) != 0) { in test_x509v3_add1_i2d_single_nid()
167 if ((got = X509v3_get_ext_count(*extensions)) != 1) { in test_x509v3_add1_i2d_single_nid()
217 if ((got = X509v3_get_ext_count(*extensions)) != 1) { in test_x509v3_add1_i2d_single_nid()
238 if ((got = X509v3_get_ext_count(*extensions)) != 1) { in test_x509v3_add1_i2d_single_nid()
344 if ((got = X509v3_get_ext_count(*extensions)) != 0) { in test_x509v3_add1_i2d_single_nid()
365 if ((got = X509v3_get_ext_count(*extensions)) != 1) { in test_x509v3_add1_i2d_single_nid()
383 if ((got = X509v3_get_ext_count(*extensions)) != 0) { in test_x509v3_add1_i2d_single_nid()
404 if (X509v3_get_ext_count(*extensions) != 0) { in test_x509v3_add1_i2d_add_append()
602 if (X509v3_get_ext_count(*extensions) != 0) { in test_x509v3_add1_i2d_invalid_operations()
[all …]
/openbsd/lib/libcrypto/ts/
H A Dts_req_utils.c213 return a->extensions; in STACK_OF()
222 sk_X509_EXTENSION_pop_free(a->extensions, X509_EXTENSION_free); in TS_REQ_ext_free()
223 a->extensions = NULL; in TS_REQ_ext_free()
230 return X509v3_get_ext_count(a->extensions); in TS_REQ_get_ext_count()
237 return X509v3_get_ext_by_NID(a->extensions, nid, lastpos); in TS_REQ_get_ext_by_NID()
244 return X509v3_get_ext_by_OBJ(a->extensions, obj, lastpos); in TS_REQ_get_ext_by_OBJ()
251 return X509v3_get_ext_by_critical(a->extensions, crit, lastpos); in TS_REQ_get_ext_by_critical()
258 return X509v3_get_ext(a->extensions, loc); in TS_REQ_get_ext()
265 return X509v3_delete_ext(a->extensions, loc); in TS_REQ_delete_ext()
272 return X509v3_add_ext(&a->extensions, ex, loc) != NULL; in TS_REQ_add_ext()
[all …]
H A Dts_rsp_utils.c435 return a->extensions; in STACK_OF()
444 sk_X509_EXTENSION_pop_free(a->extensions, X509_EXTENSION_free); in TS_TST_INFO_ext_free()
445 a->extensions = NULL; in TS_TST_INFO_ext_free()
452 return X509v3_get_ext_count(a->extensions); in TS_TST_INFO_get_ext_count()
459 return X509v3_get_ext_by_NID(a->extensions, nid, lastpos); in TS_TST_INFO_get_ext_by_NID()
466 return X509v3_get_ext_by_OBJ(a->extensions, obj, lastpos); in TS_TST_INFO_get_ext_by_OBJ()
473 return X509v3_get_ext_by_critical(a->extensions, crit, lastpos); in TS_TST_INFO_get_ext_by_critical()
480 return X509v3_get_ext(a->extensions, loc); in TS_TST_INFO_get_ext()
487 return X509v3_delete_ext(a->extensions, loc); in TS_TST_INFO_delete_ext()
494 return X509v3_add_ext(&a->extensions, ex, loc) != NULL; in TS_TST_INFO_add_ext()
[all …]
H A Dts_lib.c114 TS_ext_print_bio(BIO *bio, const STACK_OF(X509_EXTENSION) *extensions) in TS_ext_print_bio() argument
121 n = X509v3_get_ext_count(extensions); in TS_ext_print_bio()
123 ex = X509v3_get_ext(extensions, i); in TS_ext_print_bio()
/openbsd/gnu/usr.bin/perl/cpan/Test-Harness/lib/App/Prove/
H A DState.pm82 extensions => ( delete $args{extensions} || ['.t'] ),
114 sub extensions { subroutine
116 $self->{extensions} = shift if @_;
117 return $self->{extensions};
387 my $extensions = $self->{extensions};
399 ? $self->_expand_dir_recursive( $arg, $extensions )
401 @{$extensions}
408 my ( $self, $dir, $extensions ) = @_;
411 my $ext_string = join( '|', map {quotemeta} @{$extensions} );
/openbsd/gnu/usr.bin/perl/dist/XSLoader/t/
H A DXSLoader.t12 if ($Config{extensions} =~ /\b$_\b/) {
168 my $extensions = $Config{'extensions'};
169 $extensions =~ s|/|::|g;
173 skip "$module not available", 3 if $extensions !~ /\b$module\b/;
188 skip "List::Util not available", 1 if $extensions !~ /\bList::Util\b/;
196 unless $extensions =~ /\bDevel::Peek\b/;
/openbsd/gnu/llvm/llvm/docs/
H A DRISCVUsage.rst36 .. _riscv-extensions:
41 The following table provides a status summary for extensions which have been
131extensions. All experimental extensions have ``experimental-`` as a prefix. There is explicitly …
133 … value of a proposed extension against large code bases. Experimental extensions are expected to …
150 To use an experimental extension from `clang`, you must add `-menable-experimental-extensions` to t…
155extensions are extensions which are not standardized by RISC-V International, and are instead defi…
159 …b.com/riscv-non-isa/riscv-toolchain-conventions#conventions-for-vendor-extensions>`_. Exceptions …
161 The current vendor extensions supported are:
164 …ttps://github.com/ventanamicro/ventana-custom-extensions/releases/download/v1.0.0/ventana-custom-e…
174 `wiki for not yet integrated extensions
/openbsd/sbin/ipsecctl/
H A Dpfkdump.c74 struct sadb_ext *extensions[SADB_EXT_MAX + 1]; variable
633 bzero(extensions, sizeof(extensions)); in setup_extensions()
641 extensions[ext->sadb_ext_type] = ext; in setup_extensions()
712 sa = (struct sadb_sa *)extensions[SADB_EXT_SA]; in pfkey_get_spi()
883 extensions[SADB_EXT_KEY_AUTH] = NULL; in pfkey_print_sa()
884 extensions[SADB_EXT_KEY_ENCRYPT] = NULL; in pfkey_print_sa()
886 if (extensions[SADB_X_EXT_SA2]) { in pfkey_print_sa()
899 if (extensions[i]) in pfkey_print_sa()
900 print_ext(extensions[i], msg, opts); in pfkey_print_sa()
922 if (extensions[i]) in pfkey_monitor_sa()
[all …]
/openbsd/gnu/usr.bin/perl/t/porting/
H A DFindExt.t40 unless (join (' ', sort split ' ', $Config{extensions})
41 eq join(' ', FindExt::extensions())) {
72 compare('"config" dynamic + static + nonxs', $Config{extensions},
74 compare('"found" dynamic + static + nonxs', [FindExt::extensions()],
/openbsd/regress/lib/libcrypto/certs/
H A Dmake-certs.sh92 -config ${TMPDIR}/openssl.cnf -extensions v3_ca_root \
101 -config ${TMPDIR}/openssl.cnf -extensions v3_ca_root \
106 -config ${TMPDIR}/openssl.cnf -extensions v3_ca_root \
118 -extfile ${TMPDIR}/openssl.cnf -extensions v3_ca_int \
131 -config ${TMPDIR}/openssl.cnf -extensions v3_ca_int \
143 -extfile ${TMPDIR}/openssl.cnf -extensions v3_other \
155 -config ${TMPDIR}/openssl.cnf -extensions v3_other \
165 -extfile ${TMPDIR}/openssl.cnf -extensions v3_ca_int \
175 -config ${TMPDIR}/openssl.cnf -extensions v3_ca_int \
/openbsd/gnu/llvm/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",
95 C, "Working Draft for ISO C2x with GNU extensions",
105 CXX, "ISO C++ 1998 with amendments and GNU extensions",
115 "ISO C++ 2011 with amendments and GNU extensions",
125 CXX, "ISO C++ 2014 with amendments and GNU extensions",
137 CXX, "ISO C++ 2017 with amendments and GNU extensions",
149 CXX, "ISO C++ 2020 DIS with GNU extensions",
[all …]
H A DOpenCLExtensions.def9 // This file defines the list of supported OpenCL extensions.
14 // OpenCL extensions listed in this file.
16 // If extensions are to be enumerated with information about whether
31 // If extensions are to be enumerated without any information,
93 // AMD OpenCL extensions
97 // Intel OpenCL extensions
/openbsd/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/Liblist/
H A DKid.pm431 my ( $lib, $GC, $extensions ) = @_;
434 return map _win32_attach_extensions( $_, $extensions ), @pre_fixed;
451 my ( $lib, $extensions ) = @_;
452 return map _win32_try_attach_extension( $lib, $_ ), @{$extensions};
463 my @extensions;
464 push @extensions, $Config{'lib_ext'} if $Config{'lib_ext'};
465 push @extensions, '.dll.a' if grep { m!^\.a$! } @extensions;
466 push @extensions, '.lib' unless grep { m!^\.lib$! } @extensions;
467 return \@extensions;
/openbsd/regress/lib/libssl/certs/
H A Dmake-certs.sh110 -config ${TMPDIR}/openssl.cnf -extensions v3_ca_root \
124 -extfile ${TMPDIR}/openssl.cnf -extensions v3_ca_int \
138 -extfile ${TMPDIR}/openssl.cnf -extensions v3_other \
152 -config ${TMPDIR}/openssl.cnf -extensions v3_other \
167 -extfile ${TMPDIR}/openssl.cnf -extensions v3_other \
171 -config "${TMPDIR}/openssl.cnf" -extensions v3_other \
175 -config "${TMPDIR}/openssl.cnf" -extensions v3_other \
/openbsd/gnu/usr.bin/perl/ext/DynaLoader/t/
H A DDynaLoader.t20 if ($Config{extensions} =~ /\b$_\b/) {
133 my $extensions = $Config{'dynamic_ext'};
134 $extensions =~ s|/|::|g;
138 if ($extensions !~ /\b$module\b/) {
/openbsd/gnu/llvm/llvm/utils/vscode/llvm/
H A DREADME.md22 cd <extensions-installation-folder>
28 `<extensions-installation-folder>` is OS dependent.
30 Please refer to https://code.visualstudio.com/docs/editor/extension-gallery#_where-are-extensions-i…
35 https://code.visualstudio.com/api/working-with-extensions/publishing-extension#usage.
/openbsd/gnu/llvm/lldb/tools/lldb-vscode/
H A DREADME.md32 $ mkdir -p ~/.vscode/extensions/llvm-org.lldb-vscode-0.1.0/bin
33 $ cp package.json ~/.vscode/extensions/llvm-org.lldb-vscode-0.1.0
34 $ cd ~/.vscode/extensions/llvm-org.lldb-vscode-0.1.0/bin
42 $ cd ~/.vscode-server/extensions
43 $ ln -s ~/.vscode/extensions/llvm-org.lldb-vscode-0.1.0 llvm-org.lldb-vscode-0.1.0
49 $ mkdir -p ~/.vscode/extensions/llvm-org.lldb-vscode-0.1.0/bin
50 $ cp package.json ~/.vscode/extensions/llvm-org.lldb-vscode-0.1.0
51 $ cd ~/.vscode/extensions/llvm-org.lldb-vscode-0.1.0/bin
62 $ mkdir -p ~/.vscode/extensions/llvm-org.lldb-vscode-0.1.0/bin
63 $ cp package.json ~/.vscode/extensions/llvm-org.lldb-vscode-0.1.0
[all …]
/openbsd/usr.bin/ssh/
H A DPROTOCOL.certkeys14 These protocol extensions build on the simple public key authentication
53 Protocol extensions
60 extensions will simply ignore them.
89 string extensions
109 string extensions
129 string extensions
146 string extensions
193 extensions is a set of zero or more optional extensions. These extensions
201 enabled via extensions without breaking certificates' backwards
278 The extensions section of the certificate specifies zero or more
[all …]
/openbsd/lib/libssl/doc/
H A Dopenssl.txt29 then the list of supported extensions.
45 X509v3 extensions:
70 extensions. In this case a line with:
72 extensions = extension_section
84 CRL extensions NOT CRL *entry* extensions which cannot currently be generated.
112 extensions, and raw extensions.
196 Literal String extensions.
477 Display only extensions.
500 extensions have been added. If no custom extensions have been added then this
570 3. Generating extensions.
[all …]
/openbsd/usr.bin/hexdump/
H A Dodsyntax.c233 goto extensions; in posixtypes()
236 goto extensions; in posixtypes()
239 goto extensions; in posixtypes()
242 extensions: in posixtypes()
/openbsd/gnu/usr.bin/binutils/gas/doc/
H A Dc-pdp11.texi45 These options enables or disables the use of extensions over the base
51 The default is to enable all extensions.
55 @cindex -mall-extensions
56 @item -mall | -mall-extensions
57 Enable all instruction set extensions.
59 @cindex -mno-extensions
60 @item -mno-extensions
61 Disable all instruction set extensions.
155 These options enable the instruction set extensions supported by a
156 particular CPU, and disables all other extensions.
[all …]
/openbsd/gnu/usr.bin/binutils-2.17/gas/doc/
H A Dc-pdp11.texi45 These options enables or disables the use of extensions over the base
51 The default is to enable all extensions.
55 @cindex -mall-extensions
56 @item -mall | -mall-extensions
57 Enable all instruction set extensions.
59 @cindex -mno-extensions
60 @item -mno-extensions
61 Disable all instruction set extensions.
155 These options enable the instruction set extensions supported by a
156 particular CPU, and disables all other extensions.
[all …]
/openbsd/lib/libssl/test/
H A Dtestss50 …al -in $CAreq -days 30 -req -out $CAcert -signkey $CAkey -extfile $CAconf -extensions v3_ca >err.ss
92 …$Ureq -days 30 -req -out $Ucert -CA $CAcert -CAkey $CAkey -extfile $Uconf -extensions v3_ee >err.ss
113 …eq -days 30 -req -out $P1cert -CA $Ucert -CAkey $Ukey -extfile $P1conf -extensions v3_proxy >err.ss
135 … -days 30 -req -out $P2cert -CA $P1cert -CAkey $P1key -extfile $P2conf -extensions v3_proxy >err.ss
/openbsd/sys/arch/i386/include/
H A Dcpufunc.h248 monitor(const volatile void *addr, u_long extensions, u_int hints) in monitor() argument
251 : : "a" (addr), "c" (extensions), "d" (hints)); in monitor()
255 mwait(u_long extensions, u_int hints) in mwait() argument
257 __asm volatile("mwait" : : "a" (hints), "c" (extensions)); in mwait()

12345678910>>...31