/openssl-master/ |
A D | Configure | 350 $config{version} = "$config{major}.$config{minor}.$config{patch}"; 351 $config{full_version} = "$config{version}$config{prerelease}$config{build_metadata}"; 354 "$config{version}, $config{shlib_version}\n" 1163 %config = ( %config, %system_config ); 1364 delete $config{$_} unless defined $config{$_}; 1596 my $cc = $config{CROSS_COMPILE}.$config{CC}; 1614 ($config{b64l},$config{b64},$config{b32})=(0,0,1); 1621 ($config{b64l},$config{b64},$config{b32}) 1623 ($config{b64l},$config{b64},$config{b32}) 1625 ($config{b64l},$config{b64},$config{b32}) [all …]
|
A D | configdata.pm.in | 56 our %config = ({- dump_data(\%config, indent => 0); -}); 102 config => \%config, 203 $config{PERL}, 207 print ' ',$config{perl_cmd},"\n"; 208 print ' ',$config{perl_version},' for ',$config{perl_archname},"\n"; 268 $prefix = $config{CROSS_COMPILE} 274 : $prefix.$config{$var}), 276 if defined $config{$var}; 279 my @buildfile = ($config{builddir}, $config{build_file}); 292 my @buildfile = ($config{builddir}, $config{build_file}); [all …]
|
/openssl-master/include/openssl/ |
A D | configuration.h.in | 28 {- if (@{$config{openssl_sys_defines}}) { 29 foreach (@{$config{openssl_sys_defines}}) { 35 foreach (@{$config{openssl_api_defines}}) { 39 if (@{$config{openssl_feature_defines}}) { 40 foreach (@{$config{openssl_feature_defines}}) { 50 {- $config{processor} eq "386" ? "# define" : "# undef" -} I386_ONLY 56 {- $config{bn_ll} ? "# define" : "# undef" -} BN_LLONG 58 {- $config{b64l} ? "# define" : "# undef" -} SIXTY_FOUR_BIT_LONG 59 {- $config{b64} ? "# define" : "# undef" -} SIXTY_FOUR_BIT 60 {- $config{b32} ? "# define" : "# undef" -} THIRTY_TWO_BIT [all …]
|
A D | opensslv.h.in | 29 # define OPENSSL_VERSION_MAJOR {- $config{major} -} 30 # define OPENSSL_VERSION_MINOR {- $config{minor} -} 31 # define OPENSSL_VERSION_PATCH {- $config{patch} -} 41 # define OPENSSL_VERSION_PRE_RELEASE "{- $config{prerelease} -}" 44 # define OPENSSL_VERSION_BUILD_METADATA "{- $config{build_metadata} -}" 59 # define OPENSSL_SHLIB_VERSION {- $config{shlib_version} -} 76 # define OPENSSL_VERSION_STR "{- $config{version} -}" 77 # define OPENSSL_FULL_VERSION_STR "{- $config{full_version} -}" 84 # define OPENSSL_RELEASE_DATE "{- $config{release_date} -}" 90 # define OPENSSL_VERSION_TEXT "OpenSSL {- "$config{full_version} $config{release_date}" -}"
|
/openssl-master/util/ |
A D | ck_errf.pl | 19 my $config; 53 $config = $ARGV[1]; 73 $config = "crypto/err/openssl.ec" unless defined $config; 79 unless defined $config; 89 open my $cfh, $config or die "Trying to read $config: $!\n"; 113 print "$file:$.:$errlib not listed in $config\n";
|
/openssl-master/doc/internal/man7/ |
A D | VERSION.pod | 59 The following items in %config from F<configdata.pm> are affected: 63 =item $config{major}, $config{minor}, $config{patch}, $config{shlib_version} 68 =item $config{prerelease} 73 =item $config{build_metadata} 78 =item $config{release_date} 83 =item $config{version} 89 =item $config{full_version} 92 $config{prerelease} and $config{build_metadata}. See See L</EXAMPLES> for 109 The fully loaded version number ($config{full_version}) will be 120 The fully loaded version number ($config{full_version}) will be [all …]
|
/openssl-master/Configurations/ |
A D | shared-info.pl | 16 `$config{CROSS_COMPILE}$config{CC} -Wl,-V /dev/null 2>&1`; 21 `$config{CROSS_COMPILE}$config{CC} -v 2>&1`; 37 @{$config{CFLAGS}}, @{$config{cflags}})
|
A D | windows-makefile.tmpl | 38 PLATFORM={- $config{target} -} 45 MAJOR={- $config{major} -} 46 MINOR={- $config{minor} -} 254 CC="{- $config{CC} -}" 255 CPP={- $config{CPP} -} 261 LD="{- $config{LD} -}" 265 PERL={- $config{PERL} -} 267 AR="{- $config{AR} -}" 270 MT="{- $config{MT} -}" 273 AS="{- $config{AS} -}" [all …]
|
A D | descrip.mms.tmpl | 109 @{$config{lib_defines}}, @{$config{shared_defines}}, 122 @{$config{lib_cppflags}}, @{$config{shared_cppflag}}, 133 @{$config{lib_lflags}}, @{$config{shared_ldflag}}, 145 @{$config{dso_defines}}, @{$config{module_defines}}, 152 @{$config{dso_asflags}}, @{$config{module_asflags}}, 156 @{$config{dso_cppflags}}, @{$config{module_cppflag}}, 169 @{$config{dso_lflags}}, @{$config{module_ldflag}}, 352 $config{prefix} ? catdir($config{prefix},"COMMON") 363 CC={- $config{CC} -} 374 AS={- $config{AS} -} [all …]
|
A D | unix-Makefile.tmpl | 62 PLATFORM={- $config{target} -} 63 OPTIONS={- $config{options} -} 65 SRCDIR={- $config{sourcedir} -} 66 BLDDIR={- $config{builddir} -} 67 FIPSKEY={- $config{FIPSKEY} -} 71 MAJOR={- $config{major} -} 72 MINOR={- $config{minor} -} 320 # resulting in files such as config.5ssl rather than config.5. 338 CXX={- $config{CXX} ? "\$(CROSS_COMPILE)$config{CXX}" : '' -} 350 PERL={- $config{PERL} -} [all …]
|
/openssl-master/demos/certs/ |
A D | mkcerts.sh | 8 CN="Test Root CA" $OPENSSL req -config ca.cnf -x509 -nodes \ 11 CN="Test Intermediate CA" $OPENSSL req -config ca.cnf -nodes \ 18 CN="Test Server Cert" $OPENSSL req -config ca.cnf -nodes \ 25 CN="Test Client Cert" $OPENSSL req -config ca.cnf -nodes \ 32 CN="Test Revoked Cert" $OPENSSL req -config ca.cnf -nodes \ 57 CN="Test Server DH Cert" $OPENSSL req -config ca.cnf -new \ 68 CN="Test Client DH Cert" $OPENSSL req -config ca.cnf -new \ 82 -config ca.cnf -md sha1 84 -config ca.cnf -md sha1 86 -config ca.cnf -md sha1 [all …]
|
/openssl-master/test/smime-certs/ |
A D | mksmime-certs.sh | 17 CN="Test S/MIME RSA Root" $OPENSSL req -config ca.cnf -x509 -noenc \ 21 CN="Test S/MIME EE RSA #1" $OPENSSL req -config ca.cnf -noenc \ 27 CN="Test S/MIME EE RSA #2" $OPENSSL req -config ca.cnf -noenc \ 32 CN="Test S/MIME EE RSA #3" $OPENSSL req -config ca.cnf -noenc \ 41 CN="Test S/MIME EE DSA #1" $OPENSSL req -config ca.cnf -noenc \ 45 CN="Test S/MIME EE DSA #2" $OPENSSL req -config ca.cnf -noenc \ 49 CN="Test S/MIME EE DSA #3" $OPENSSL req -config ca.cnf -noenc \ 59 CN="Test S/MIME EE EC #1" $OPENSSL req -config ca.cnf -noenc \ 63 CN="Test S/MIME EE EC #2" $OPENSSL req -config ca.cnf -noenc \ 67 CN="Test S/MIME EE EC #3" $OPENSSL req -config ca.cnf -noenc \ [all …]
|
/openssl-master/util/perl/OpenSSL/ |
A D | config.pm | 12 package OpenSSL::config; 516 my %config = (); 530 %config }; 545 my %config = (); 549 %config = ( cflags => [ '-m32' ], 553 %config }; 842 my %config = (); 848 $config{target} = "aix"; 851 $config{target} = "aix64"; 867 $config{disable} = [ 'asm' ]; [all …]
|
/openssl-master/VMS/ |
A D | openssl_shutdown.com.in | 29 $ sv := {- sprintf "%02d%02d", split m|\.|, $config{shlib_version} -} 30 $ pz := {- $config{pointer_size} -} 41 ${- output_off() if $config{no_shared}; "" -} 44 ${- output_on() if $config{no_shared}; "" -} 50 ${- output_off() if $config{no_shared}; "" -} 53 ${- output_on() if $config{no_shared}; "" -}
|
A D | openssl_ivp.com.in | 7 $ INSTALLTOP := {- $config{INSTALLTOP} -} 8 $ OPENSSLDIR := {- $config{OPENSSLDIR} -} 17 $ v := {- sprintf "%02d%02d", split(/\./, $config{version}) -} 18 $ pz := {- $config{pointer_size} -} 24 .OR. F$SEARCH("OSSL$LIBSSL''pz'") .EQS. "" {- output_off() if $config{no_shared}; "" -}- 26 … .OR. F$SEARCH("OSSL$LIBSSL_SHR''pz'") .EQS. "" {- output_on() if $config{no_shared}; "" -}-
|
A D | openssl_startup.com.in | 61 $ INSTALLTOP := {- $config{INSTALLTOP} -} 62 $ OPENSSLDIR := {- $config{OPENSSLDIR} -} 91 $ sv := {- sprintf "%02d%02d", split m|\.|, $config{shlib_version} -} 92 $ pz := {- $config{pointer_size} -} 104 ${- output_off() if $config{no_shared}; "" -} 107 ${- output_on() if $config{no_shared}; "" -} 113 ${- output_off() if $config{no_shared}; "" -} 116 ${- output_on() if $config{no_shared}; "" -}
|
/openssl-master/demos/certs/apps/ |
A D | mkxcerts.sh | 7 -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 \
|
A D | mkacerts.sh | 8 CN="OpenSSL Test Root CA" $OPENSSL req -config apps.cnf -x509 -nodes \ 11 CN="OpenSSL Test Intermediate CA" $OPENSSL req -config apps.cnf -nodes \ 17 CN="Test Client Cert" $OPENSSL req -config apps.cnf -nodes \ 24 CN="Test Server Cert" $OPENSSL req -config apps.cnf -nodes \ 31 CN="Test Server Cert #2" $OPENSSL req -config apps.cnf -nodes \
|
/openssl-master/util/perl/OpenSSL/Test/ |
A D | Utils.pm | 82 our %config; 93 %config = %configdata::config; 159 sub config { subroutine 161 return $config{$_[0]};
|
/openssl-master/util/perl/OpenSSL/Config/ |
A D | Query.pm | 75 config => 'HASH'); 81 config => $opts{config} // {} }; 150 return { map { $_ => $self->{config}->{$_} } @_ };
|
/openssl-master/test/recipes/ |
A D | 25-test_verify_store.t | 36 -config => $cnf, 60 -config => $dummycnf, 66 -config => $dummycnf, 77 -config => $cnf,
|
/openssl-master/Configurations/platform/ |
A D | mingw.pm | 26 sub makedepcmd { $disabled{makedepend} ? undef : $config{makedepcmd} } 28 (my $sover_filename = $config{shlib_version}) =~ s|\.|_|g; 36 ($config{target} eq "mingw64"
|
/openssl-master/doc/man3/ |
A D | SSL_CTX_config.pod | 26 CONF_modules_load_file(). See L<config(5)> for details of the configuration 36 If the file "config.cnf" contains the following: 55 if (CONF_modules_load_file("config.cnf", "testapp", 0) <= 0) { 56 fprintf(stderr, "Error processing config file\n"); 73 L<config(5)>,
|
/openssl-master/include/crypto/ |
A D | bn_conf.h.in | 24 {- $config{b64l} ? "#define" : "#undef" -} SIXTY_FOUR_BIT_LONG 25 {- $config{b64} ? "#define" : "#undef" -} SIXTY_FOUR_BIT 26 {- $config{b32} ? "#define" : "#undef" -} THIRTY_TWO_BIT
|
/openssl-master/doc/man7/ |
A D | fips_module.pod | 55 To do this the default OpenSSL config file will have to be modified. The 71 config file is stored. So in this case the default config file will be called 74 Edit the config file to add the following lines near the beginning: 92 FIPS module config file that you installed earlier. 97 or mistaken configuration. See L<config(5)>. 148 possible to override the config file to be used via the B<OPENSSL_CONF> 150 application to be executed with a non-standard config file location: 164 on config to do this. The config file is still necessary in order to hold the 326 * Load config file for the FIPS library context. We assume that 327 * this config file will automatically activate the FIPS and base [all …]
|