| /third_party/openssl/ |
| D | README-ENGINES.md | 5 ---------------- 7 The ENGINE API was introduced in OpenSSL version 0.9.6 as a low level 11 The ENGINE interface has its limitations and it has been superseeded 12 by the [PROVIDER API](README-PROVIDERS.md), it is deprecated in OpenSSL 14 users who need to maintain or support existing ENGINE implementations. 19 Built-in ENGINE implementations 20 ------------------------------- 22 There are currently built-in ENGINE implementations for the following 29 In addition, dynamic binding to external ENGINE implementations is now 30 provided by a special ENGINE called "dynamic". See the "DYNAMIC ENGINE" [all …]
|
| D | Configure | 2 # -*- mode: perl; -*- 3 # Copyright 2016-2022 The OpenSSL Project Authors. All Rights Reserved. 10 ## Configure -- OpenSSL source tree configuration script 30 …no-<cipher> ...] [enable-<cipher> ...] [-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-Kxxx] [no-hw-xxx|no-hw] [… 42 *** perl configdata.pm --dump *** 52 # --config add the given configuration file, which will be read after 55 # --prefix prefix for the OpenSSL installation, which includes the 59 # --openssldir OpenSSL data area, such as openssl.cnf, certificates and keys. 61 # given with --prefix. 64 # --banner=".." Output specified text instead of default completion banner [all …]
|
| /third_party/openssl/doc/man1/ |
| D | openssl-engine.pod.in | 2 {- OpenSSL::safe::output_do_not_edit_headers(); -} 6 openssl-engine - load and query engines 10 B<openssl engine> 11 [B<-help>] 12 [B<-v>] 13 [B<-vv>] 14 [B<-vvv>] 15 [B<-vvvv>] 16 [B<-c>] 17 [B<-t>] [all …]
|
| /third_party/openssl/crypto/engine/ |
| D | eng_dyn.c | 2 * Copyright 2001-2022 The OpenSSL Project Authors. All Rights Reserved. 10 /* We need to use some engine deprecated APIs */ 18 * Shared libraries implementing ENGINEs for use by the "dynamic" ENGINE 19 * loader should implement the hook-up functions with the following 23 /* Our ENGINE handlers */ 24 static int dynamic_init(ENGINE *e); 25 static int dynamic_finish(ENGINE *e); 26 static int dynamic_ctrl(ENGINE *e, int cmd, long i, void *p, 31 static int dynamic_load(ENGINE *e, dynamic_data_ctx *ctx); 41 /* The constants used when creating the ENGINE */ [all …]
|
| D | eng_cnf.c | 2 * Copyright 2002-2020 The OpenSSL Project Authors. All Rights Reserved. 10 /* We need to use some engine deprecated APIs */ 17 /* ENGINE config module */ 28 static STACK_OF(ENGINE) *initialized_engines = NULL; 30 static int int_engine_init(ENGINE *e) in int_engine_init() 47 long do_init = -1; in int_engine_configure() 51 ENGINE *e = NULL; in int_engine_configure() 55 OSSL_TRACE1(CONF, "Configuring engine %s\n", name); in int_engine_configure() 56 /* Value is a section containing ENGINE commands */ in int_engine_configure() 66 ctrlname = skip_dot(ecmd->name); in int_engine_configure() [all …]
|
| /third_party/openssl/.github/workflows/ |
| D | run-checker-daily.yml | 1 # Copyright 2021-2022 The OpenSSL Project Authors. All Rights Reserved. 8 name: Run-checker daily 13 - cron: '0 6 * * *' 18 run-checker: 20 fail-fast: false 24 no-afalgeng, 25 no-aria, 26 no-asan, 27 no-asm, 28 no-async, [all …]
|
| D | run-checker-merge.yml | 1 # Copyright 2021-2022 The OpenSSL Project Authors. All Rights Reserved. 8 name: Run-checker merge 16 run-checker: 18 fail-fast: false 21 enable-asan no-shared no-asm -DOPENSSL_SMALL_FOOTPRINT, 22 no-dgram, 23 no-dso, 24 no-dynamic-engine, 25 no-engine no-shared, 26 no-err, [all …]
|
| /third_party/flutter/flutter/packages/flutter_tools/lib/src/runner/ |
| D | flutter_command_runner.dart | 2 // Use of this source code is governed by a BSD-style license that can be 39 …nmentVariableName = 'FLUTTER_ENGINE'; // should point to //engine/src/ (root of flutter/engine rep… 61 'If used with --help, shows hidden options.'); 71 argParser.addOption('wrap-column', 73 help: 'Sets the output wrap column. If not set, uses the width of the terminal. No ' 74 'wrapping occurs if not writing to a terminal. Use --no-wrap to turn off wrapping ' 77 argParser.addOption('device-id', 86 help: 'When used with the --version flag, outputs the information using JSON.'); 92 argParser.addFlag('version-check', 97 argParser.addFlag('suppress-analytics', [all …]
|
| /third_party/flutter/flutter/packages/flutter_tools/lib/src/ |
| D | tracing.dart | 2 // Use of this source code is governed by a BSD-style license that can be 38 Future<Map<String, dynamic>> stopTracingAndDownloadTimeline({ 68 final Map<String, dynamic> timeline = await vmService.vm.getVMTimeline(); 90 final Map<String, dynamic> timeline = await tracing.stopTracingAndDownloadTimeline( 95 final List<Map<String, dynamic>> events = 96 List<Map<String, dynamic>>.from(timeline['traceEvents']); 97 final Map<String, dynamic> event = events.firstWhere( 98 (Map<String, dynamic> event) => event['name'] == eventName, orElse: () => null, 103 String message = 'No useful metrics were gathered.'; 109 printTrace('Engine start event is missing in the timeline: $timeline'); [all …]
|
| D | services.dart | 2 // Use of this source code is governed by a BSD-style license that can be 18 dynamic _loadYamlFile(String path) { 40 dynamic manifest; 50 printTrace('No services specified in the manifest'); 56 final dynamic serviceConfig = _loadYamlFile('$serviceRoot/$_kFlutterServicesManifestPath'); 58 printStatus('No $_kFlutterServicesManifestPath found for service "$serviceRoot"; skipping.'); 66 'android-class': service['android-class'], 67 'ios-framework': service['ios-framework'], 79 if (url.startsWith('android-sdk:') && androidSdk != null) { 81 return url.replaceAll('android-sdk:', '${androidSdk.directory}/'); [all …]
|
| /third_party/openssl/apps/lib/ |
| D | engine.c | 11 * Here is a set of wrappers for the ENGINE API, which are no-ops when the 12 * ENGINE API is disabled / removed. 19 #include <openssl/types.h> /* Ensure we have the ENGINE type, regardless */ 22 # include <openssl/engine.h> 27 /* Try to load an engine in a shareable library */ 28 static ENGINE *try_load_engine(const char *engine) in try_load_engine() argument 30 ENGINE *e = NULL; in try_load_engine() 32 if ((e = ENGINE_by_id("dynamic")) != NULL) { in try_load_engine() 33 if (!ENGINE_ctrl_cmd_string(e, "SO_PATH", engine, 0) in try_load_engine() 43 ENGINE *setup_engine_methods(const char *id, unsigned int methods, int debug) in setup_engine_methods() [all …]
|
| /third_party/rust/crates/regex/ |
| D | HACKING.md | 7 you can do no better than Russ Cox's article series on implementing regular 19 --- This library contains such an implementation in src/pikevm.rs. 29 prefixes is in the regex-syntax crate (in this repository). The code to search 31 we fall back to an Aho-Corasick DFA using the aho-corasick crate. For one 32 literal, we use a variant of the Boyer-Moore algorithm. Both Aho-Corasick and 33 Boyer-Moore use `memchr` when appropriate. The Boyer-Moore variant in this 45 memory requirement, we only use this engine on small search strings *and* small 63 The following sub-sections describe the rest of the library and how each of the 68 Regular expressions are parsed using the regex-syntax crate, which is 69 maintained in this repository. The regex-syntax crate defines an abstract [all …]
|
| /third_party/flutter/flutter/packages/flutter/lib/src/widgets/ |
| D | route_notification_messages.dart | 2 // Use of this source code is governed by a BSD-style license that can be 14 /// When the engine is Web notify the platform for a route change. 15 …static void maybeNotifyRouteChange(String methodName, Route<dynamic> route, Route<dynamic> previou… 19 // No op. 29 …static void _notifyRouteChange(String methodName, Route<dynamic> route, Route<dynamic> previousRou… 35 <String, dynamic>{
|
| /third_party/openssl/test/recipes/ |
| D | 70-test_sslversions.t | 2 # Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved. 33 plan skip_all => "$test_name needs the dynamic engine feature enabled" 34 if disabled("engine") || disabled("dynamic-engine"); 47 my $proxy = TLSProxy::Proxy->new( 55 #02-protocol-version.cnf should check all the various combinations of normal 60 $proxy->filter(\&modify_supported_versions_filter); 61 $proxy->start() or plan skip_all => "Unable to start up Proxy for tests"; 63 ok(TLSProxy::Message->fail(), "Empty supported versions"); 65 #Test 2: supported_versions extension with no recognised versions should not 67 $proxy->clear(); [all …]
|
| D | 70-test_sslsignature.t | 2 # Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved. 20 plan skip_all => "$test_name needs the dynamic engine feature enabled" 21 if disabled("engine") || disabled("dynamic-engine"); 30 my $proxy = TLSProxy::Proxy->new( 44 $proxy->filter(\&signature_filter); 46 #Test 1: No corruption should succeed 48 $proxy->clientflags("-no_tls1_3") if disabled("ec") && disabled("dh"); 49 $proxy->start() or plan skip_all => "Unable to start up Proxy for tests"; 51 ok(TLSProxy::Message->success, "No corruption"); 58 $proxy->clear(); [all …]
|
| D | 70-test_tls13cookie.t | 2 # Copyright 2017-2021 The OpenSSL Project Authors. All Rights Reserved. 20 plan skip_all => "$test_name needs the dynamic engine feature enabled" 21 if disabled("engine") || disabled("dynamic-engine"); 36 my $proxy = TLSProxy::Proxy->new( 48 $proxy->filter(\&cookie_filter); 49 $proxy->serverflags("-curves X25519") if !disabled("ec"); 50 $proxy->start() or plan skip_all => "Unable to start up Proxy for tests"; 54 ok(TLSProxy::Message->success() && $cookieseen == 1, "Cookie seen"); 62 $proxy->clear(); 64 $proxy->clientflags("-curves ffdhe3072:ffdhe2048"); [all …]
|
| D | 70-test_renegotiation.t | 2 # Copyright 2016-2021 The OpenSSL Project Authors. All Rights Reserved. 20 plan skip_all => "$test_name needs the dynamic engine feature enabled" 21 if disabled("engine") || disabled("dynamic-engine"); 32 my $proxy = TLSProxy::Proxy->new( 40 $proxy->clientflags("-no_tls1_3"); 41 $proxy->serverflags("-client_renegotiation"); 42 $proxy->reneg(1); 43 $proxy->start() or plan skip_all => "Unable to start up Proxy for tests"; 44 ok(TLSProxy::Message->success(), "Basic renegotiation"); 47 $proxy->clear(); [all …]
|
| D | 70-test_tlsextms.t | 2 # Copyright 2015-2021 The OpenSSL Project Authors. All Rights Reserved. 21 plan skip_all => "$test_name needs the dynamic engine feature enabled" 22 if disabled("engine") || disabled("dynamic-engine"); 42 my $proxy = TLSProxy::Proxy->new( 57 $proxy->clientflags("-no_tls1_3"); 58 $proxy->start() or plan skip_all => "Unable to start up Proxy for tests"; 68 $proxy->clientflags("-no_tls1_3"); 69 $proxy->start(); 70 checkmessages(2, "No client extension extended master secret test", 0, 0, 1); 76 $proxy->clientflags("-no_ticket -no_tls1_3"); [all …]
|
| /third_party/flutter/flutter/packages/flutter_tools/lib/src/test/ |
| D | flutter_platform.dart | 2 // Use of this source code is governed by a BSD-style license that can be 101 // registerPlatformPlugin can be injected for testing since it's not very mock-friendly. 185 StreamChannel<dynamic> serializeSuite(Function getMain(), 186 {bool hidePrints = true, Future<dynamic> beforeLoad()}) { 191 /// Capture any top-level errors (mostly lazy syntax errors, since other are 195 // Treat errors non-fatal because otherwise they'll be double-printed. 198 errorPort.listen((dynamic message) { 213 StreamChannel<dynamic> channel = serializeSuite(() { 230 socket.map((dynamic x) { 296 // then spin up the engine in a subprocess. We pass the engine a Dart file [all …]
|
| /third_party/openssl/ohos_lite/include/openssl/ |
| D | engine.h | 2 * Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved. 48 /* Obvious all-or-nothing cases. */ 54 * internally to control registration of ENGINE implementations, and can be 60 /* ENGINE flags that can be set by ENGINE_set_flags(). */ 65 * This flag is for ENGINEs that wish to handle the various 'CMD'-related 67 * these control commands on behalf of the ENGINE using their "cmd_defns" 74 * via "ENGINE_by_id()". When an ENGINE must store state (eg. if 76 * process like key-generation setup and execution), it can set this flag - 77 * then each attempt to obtain the ENGINE will result in it being copied into 79 * ENGINE_by_id() just increments the existing ENGINE's structural reference [all …]
|
| /third_party/flutter/flutter/packages/flutter_tools/lib/src/base/ |
| D | user_messages.dart | 2 // Use of this source code is governed by a BSD-style license that can be 18 String engineRevision(String revision) => 'Engine revision $revision'; 24 'On Debian/Ubuntu/Mint: sudo apt-get install lib32stdc++6\n' 26 'On Arch: pacman -S lib32-gcc-libs'; 29 String get noIdeStatusInfo => 'No supported IDEs installed'; 30 String get noIdeInstallationInfo => 'IntelliJ - https://www.jetbrains.com/idea/'; 36 'https://flutter.dev/intellij-setup/#installing-the-plugins'; 45 String get devicesMissing => 'No devices available'; 68 '(or visit https://flutter.dev/setup/#android-setup for detailed instructions).\n' 73 'Platform $platform, build-tools $tools'; [all …]
|
| /third_party/openssl/include/openssl/ |
| D | engine.h | 2 * Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved. 54 /* Obvious all-or-nothing cases. */ 60 * internally to control registration of ENGINE implementations, and can be 66 /* ENGINE flags that can be set by ENGINE_set_flags(). */ 71 * This flag is for ENGINEs that wish to handle the various 'CMD'-related 73 * these control commands on behalf of the ENGINE using their "cmd_defns" 80 * via "ENGINE_by_id()". When an ENGINE must store state (eg. if 82 * process like key-generation setup and execution), it can set this flag - 83 * then each attempt to obtain the ENGINE will result in it being copied into 85 * ENGINE_by_id() just increments the existing ENGINE's structural reference [all …]
|
| /third_party/openssl/doc/man5/ |
| D | config.pod | 5 config - OpenSSL CONF library configuration files 24 between the elements of a line, have no significance. A comment starts 26 is the first non-space character in a line, the entire line is ignored. 45 available on systems with POSIX IO support.) Any sub-directories found 76 B<true> or B<on>, then C<foo$bar> is a single seven-character name nad 121 In order to support this, commands like L<openssl-req(1)> ignore any 203 ... engine properties here ... 231 OPENSSL_CONF=example.cnf openssl asn1parse -genstr OID:1.2.3.4.1 244 for that provider. The provider-specific section is used to specify how 273 All parameters in the section as well as sub-sections are made [all …]
|
| /third_party/openssl/doc/man3/ |
| D | OPENSSL_config.pod | 5 OPENSSL_config, OPENSSL_no_config - simple OpenSSL configuration functions 24 Multiple calls have no effect. 27 no configuration takes place. 45 advisable. For example, to load dynamic ENGINEs from shared libraries (DSOs). 47 very few can load and use dynamic ENGINEs. Equally in future more sophisticated 50 ENGINE control operations because they can be performed by editing a 60 Ignored in set-user-ID and set-group-ID programs. 80 Copyright 2004-2021 The OpenSSL Project Authors. All Rights Reserved.
|
| /third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/services/ |
| D | message_codec.dart | 2 // Use of this source code is governed by a BSD-style license that can be 5 part of engine; 41 final dynamic arguments; 68 dynamic decodeEnvelope(ByteData envelope); 71 ByteData encodeSuccessEnvelope(dynamic result); 75 /// The specified error [code], human-readable error [message], and error 78 {@required String code, String message, dynamic details}); 107 /// A human-readable error message, possibly null. 111 final dynamic details; 123 /// with a [MissingPluginException], if no plugin handler for the method call [all …]
|