/openssl-master/crypto/objects/ |
A D | objects.pl | 52 $module = $1."-"; 53 $module =~ s/\./_/g; 54 $module =~ s/-/_/g; 57 { $module = ""; } 62 $Cname = $module.$1; 92 if ($Cname ne "" && defined($ln{$module.$Cname})) 93 ….txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$order{$module.… 99 if ($Cname ne "" && defined($sn{$module.$Cname})) 100 …txt:$o:There's already an object with short name ",$sn{$module.$Cname}," on line ",$order{$module.… 109 ….txt:$o:There's already an object with long name ",$ln{$module.$Cname}," on line ",$order{$module.… [all …]
|
A D | README.md | 33 !module foo 37 The !module command was meant to define a kind of modularity. 38 What it does is to make sure the module name is prepended
|
/openssl-master/ |
A D | README-FIPS.md | 4 This release of OpenSSL includes a cryptographic module that is intended to be 5 FIPS 140-2 validated. The module is implemented as an OpenSSL provider. 6 A provider is essentially a dynamically loadable module which implements 15 Installing the FIPS module 45 - Runs the FIPS module self tests 46 - Generates the so-called FIPS module configuration file containing information 47 about the module such as the self test status, and the module checksum. 49 The FIPS module must have the self tests run, and the FIPS module config file 51 the FIPS module config file output data from one machine to another. 55 …$ openssl fipsinstall -out /usr/local/ssl/fipsmodule.cnf -module /usr/local/lib/ossl-modules/fips.… [all …]
|
A D | NOTES-PERL.md | 9 - [Notes on installing a Perl module](#notes-on-installing-a-perl-module]) 43 for which you may need to explicitly select the Perl module Win32/Console.pm 74 To avoid unnecessary initial hurdles, we include a copy of this module 75 in the source. It will work as a fallback if the module isn't already 82 This module is required for testing only! If you don't plan on running 85 Notes on installing a Perl module 88 There are a number of ways to install a perl module. In all 93 for the module name and to install the package that comes up. 99 libtext-template-perl - perl module to process text templates 103 the name of the module in question, with "lib" prepended and [all …]
|
/openssl-master/Configurations/ |
A D | gentemplate.pm | 446 my $module = shift; 447 return "" if $cache{$module}; 449 my @objs = @{$self->{info}->{sources}->{$module}}; 450 my @deps = ( grep { $_ ne $module } 451 $self->resolvedepends($module) ); 452 print STDERR "DEBUG[domodule] \%attrs for $module :", 455 print STDERR "DEBUG[domodule] \@objs for $module : ", 458 print STDERR "DEBUG[domodule] \@deps for $module : ", 462 module => $module, 466 foreach (@{$self->{info}->{sources}->{$module}}) { [all …]
|
A D | platform.pm | 10 my $module = $target{perl_platform} || 'Unix'; 11 (my $module_path = $module) =~ s|::|/|g; 14 @ISA = ("platform::$module");
|
/openssl-master/doc/man1/ |
A D | openssl-fipsinstall.pod.in | 14 [B<-module> I<modulefilename>] 31 This command is used to generate a FIPS module configuration file. 32 This configuration file can be used each time a FIPS module is loaded 33 in order to pass data to the FIPS module self tests. The FIPS module always 41 =item - A MAC of the FIPS module file. 55 If the value is '0' then the module error state will not be entered. 58 the operation if the module error state is not entered. 80 =item B<-module> I<filename> 82 Filename of the FIPS module to perform an integrity check on. 83 The path provided in the filename is used to load the module when it is [all …]
|
/openssl-master/doc/man5/ |
A D | fips_config.pod | 10 is used to hold information about the FIPS module. This includes a digest 12 This data is used automatically by the module itself for two 20 run each time the module is used. 22 =item - Verify the module's checksum. 24 This is done each time the module is used. 29 used internally by the FIPS module during its initialization. 39 If present, the module is activated. The value assigned to this name is not 67 =item B<module-mac> 74 This should only be written after the module has 76 If this field is not present, then the self tests will run when the module [all …]
|
/openssl-master/doc/man7/ |
A D | fips_module.pod | 5 fips_module - OpenSSL fips module guide 45 =head2 Making all applications use the FIPS module by default 48 use the FIPS module for cryptographic algorithms by default. 53 FIPS module without the need for any further code changes. 92 FIPS module config file that you installed earlier. 115 You may not want all applications to use the FIPS module. 118 FIPS module. 137 Usage of certain deprecated APIs avoids the use of the FIPS module. 225 =head2 Loading the FIPS module at the same time as other providers 384 =head2 Using Encoders and Decoders with the FIPS module [all …]
|
A D | OSSL_PROVIDER-FIPS.pod | 10 Information Processing Standards (FIPS) specified in FIPS 140-2. This 'module' 171 One of the requirements for the FIPS module is self testing. An optional callback 177 The OpenSSL FIPS module uses the following mechanism to provide information 184 The FIPS module passes the following type(s) to OSSL_SELF_TEST_onbegin(). 190 Uses HMAC SHA256 on the module file to validate that the module has not been 254 The FIPS module passes the following descriptions(s) to OSSL_SELF_TEST_onbegin().
|
/openssl-master/doc/internal/man3/ |
A D | ossl_provider_new.pod | 53 * If the Provider is a module, the module will be loaded 108 module. 162 ossl_provider_set_module_path() sets the module path to load the 163 provider module given the provider object I<prov>. 212 be located in that module, and called. 256 ossl_provider_module_name() returns the filename of the module, for 311 Locating a provider module happens as follows: 318 module path. 319 Otherwise, use the provider object's name as module path, with 327 with the module path. [all …]
|
A D | ossl_provider_add_conf_module.pod | 5 ossl_provider_add_conf_module - internal standard configuration module 16 ossl_provider_add_conf_module() adds the standard configuration module
|
A D | ossl_random_add_conf_module.pod | 5 ossl_random_add_conf_module - internal random configuration module 16 ossl_random_add_conf_module() adds the random configuration module
|
/openssl-master/demos/bio/ |
A D | cmod.cnf | 1 # Example config module configuration 13 # SSL configuration module
|
/openssl-master/providers/ |
A D | build.info | 19 # This is how a provider module should be linked: 95 # necessary information even if we don't build the module. This will allow 104 # This is the trigger to actually build the FIPS module. Without these 119 -module $(FIPSMODULE) -section_name fips_sect -key $(FIPSKEY) 129 IF[{- $disabled{module} -}] 140 # Become a module
|
/openssl-master/crypto/ |
A D | provider_core.c | 150 DSO *module; member 705 DSO_free(prov->module); in ossl_provider_free() 840 if (prov->module == NULL) { in provider_init() 848 if ((prov->module = DSO_new()) == NULL) { in provider_init() 875 DSO_ctrl(prov->module, DSO_CTRL_SET_FLAGS, in provider_init() 887 DSO_free(prov->module); in provider_init() 888 prov->module = NULL; in provider_init() 896 if (prov->module != NULL) in provider_init() 1415 return prov->module; in ossl_provider_dso() 1423 return DSO_get_filename(prov->module); in ossl_provider_module_name() [all …]
|
A D | build.info | 63 # provider module that uses it. ctype.c is included here because the CPUID 73 # separate module and it's dynamically linked with libcrypto. Otherwise, it 76 IF[{- !$disabled{module} && !$disabled{shared} -}]
|
/openssl-master/doc/man3/ |
A D | OPENSSL_Applink.pod | 17 expected to implement it, but to compile provided module with 19 The referred module is available as F<applink.c>, located alongside
|
A D | OPENSSL_load_builtin_modules.pod | 21 ASN1_add_oid_module() adds just the ASN1 OBJECT module. 23 ENGINE_add_conf_module() adds just the ENGINE configuration module.
|
A D | CONF_modules_load_file.pod | 50 configuration modules are ignored. If not set the first module error is 64 If B<CONF_MFLAGS_NO_DSO> is set configuration module loading from DSOs is 91 failure. If module errors are not ignored the return code will reflect the 92 return value of the failing module (this will always be zero or negative).
|
/openssl-master/test/recipes/30-test_defltfips/ |
A D | fipsmodule.cnf | 7 module-mac = 00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00…
|
/openssl-master/test/ |
A D | provider_internal_test.cnf.in | 14 module = {- platform->dso('p_test') -}
|
A D | fips-alt.cnf | 10 # Ensure FIPS non-approved algorithms in the FIPS module are suppressed (e.g.
|
A D | fips.cnf | 13 # Ensure FIPS non-approved algorithms in the FIPS module are suppressed (e.g.
|
/openssl-master/providers/common/ |
A D | build.info | 7 IF[{- !$disabled{module} && !$disabled{shared} -}]
|