/openssl-master/ |
A D | appveyor.yml | 33 If ($env:Platform -Match "x86") { 34 $env:VCVARS_PLATFORM="x86" 37 $env:VCVARS_PLATFORM="amd64" 38 $env:TARGET="VC-WIN64A-masm" 41 If ($env:Configuration -Match "shared") { 42 $env:CONFIG_OPTS="enable-fips" 46 $env:CONFIG_OPTS="no-fips no-shared" 55 If ($env:BUILDONLY -or $env:MAKEVERBOSE) { 56 $env:NMAKE="nmake" 58 $env:NMAKE="nmake /S" [all …]
|
A D | Configure | 367 if (defined env($local_config_envname)) { 681 AR => env('AR'), 685 CC => env('CC'), 686 CFLAGS => [ env('CFLAGS') || () ], 687 CXX => env('CXX'), 693 CROSS_COMPILE => env('CROSS_COMPILE'), 694 HASHBANGPERL=> env('HASHBANGPERL') || env('PERL'), 701 RANLIB => env('RANLIB'), 702 RC => env('RC') || env('WINDRES'), 703 RCFLAGS => [ env('RCFLAGS') || () ], [all …]
|
A D | NOTES-DJGPP.md | 24 `WATT_ROOT="/dev/env/DJDIR/watt32"`. 29 ./Configure no-threads --prefix=/dev/env/DJDIR DJGPP
|
A D | NOTES-ANDROID.md | 86 env EXE_SHELL=qemu-<arch> make test 90 env EXE_SHELL="qemu-mips64el -cpu MIPS64R6-generic" make test
|
A D | INSTALL.md | 1413 Default: /usr/bin/env perl
|
/openssl-master/crypto/ |
A D | cpuid.c | 100 const variant_char *env; in OPENSSL_cpuid_setup() local 106 if ((env = ossl_getenv("OPENSSL_ia32cap")) != NULL) { in OPENSSL_cpuid_setup() 107 int off = (env[0] == '~') ? 1 : 0; in OPENSSL_cpuid_setup() 109 vec = ossl_strtouint64(env + off); in OPENSSL_cpuid_setup() 125 } else if (env[0] == ':') { in OPENSSL_cpuid_setup() 129 if ((env = ossl_strchr(env, ':')) != NULL) { in OPENSSL_cpuid_setup() 132 env++; in OPENSSL_cpuid_setup() 133 off = (env[0] == '~') ? 1 : 0; in OPENSSL_cpuid_setup() 134 vecx = ossl_strtouint64(env + off); in OPENSSL_cpuid_setup()
|
A D | info.c | 44 const char *env; in DEFINE_RUN_ONCE_STATIC() local 52 if ((env = getenv("OPENSSL_ia32cap")) != NULL) in DEFINE_RUN_ONCE_STATIC() 55 " env:%s", env); in DEFINE_RUN_ONCE_STATIC() 57 const char *env; in DEFINE_RUN_ONCE_STATIC() 61 if ((env = getenv("OPENSSL_armcap")) != NULL) in DEFINE_RUN_ONCE_STATIC() 64 " env:%s", env); in DEFINE_RUN_ONCE_STATIC() 66 const char *env; in DEFINE_RUN_ONCE_STATIC() 97 if ((env = getenv("OPENSSL_s390xcap")) != NULL) in DEFINE_RUN_ONCE_STATIC() 100 " env:%s", env); in DEFINE_RUN_ONCE_STATIC()
|
A D | s390xcap.c | 69 static const char *env; variable 138 env = getenv("OPENSSL_s390xcap"); in OPENSSL_cpuid_setup() 139 if (env != NULL) { in OPENSSL_cpuid_setup() 141 env = NULL; in OPENSSL_cpuid_setup() 144 if (env != NULL) { in OPENSSL_cpuid_setup() 152 if (env != NULL) { in OPENSSL_cpuid_setup() 673 buff = malloc(strlen(env) + 1); in parse_env() 679 strcpy(buff, env); in parse_env()
|
/openssl-master/crypto/cms/ |
A D | cms_env.c | 221 CMS_EnvelopedData *env; in CMS_EnvelopedData_create_ex() local 227 if (env == NULL) in CMS_EnvelopedData_create_ex() 1020 env->version = 4; in cms_env_set_originfo_version() 1032 env->version = 4; in cms_env_set_originfo_version() 1046 if (env->version >= 4) in cms_env_set_version() 1051 if (env->version >= 3) in cms_env_set_version() 1064 if (env->originatorInfo || env->unprotectedAttrs) in cms_env_set_version() 1065 env->version = 2; in cms_env_set_version() 1066 if (env->version == 2) in cms_env_set_version() 1068 env->version = 0; in cms_env_set_version() [all …]
|
/openssl-master/crypto/async/arch/ |
A D | async_posix.h | 45 jmp_buf env; member 57 if (!r || !_setjmp(o->env)) { in async_fibre_swapcontext() 59 _longjmp(n->env, 1); in async_fibre_swapcontext()
|
/openssl-master/Configurations/ |
A D | 10-main.conf | 85 my $wceplatf = env('PLATFORM'); 1431 add(combine(sub { defined(env('WCECOMPAT')) 1445 if (defined(env('WCECOMPAT'))) { 1455 if (defined(env('PORTSDK_LIBPATH'))); 1457 if (env('TARGETCPU') =~ /^X86|^ARMV4[IT]/); 1788 CC => sub { env('CC') }, 1793 dso_scheme => sub { env('LIBSSL_dlfcn') }, 1796 ranlib => sub { env('RANLIB') }, 1800 CC => sub { env('CC') }, 1805 dso_scheme => sub { env('LIBSSL_dlfcn') }, [all …]
|
A D | unix-Makefile.tmpl | 1599 # Use $(PERL) to execute wrap.pl directly to avoid calling env
|
/openssl-master/VMS/ |
A D | test-includes.com | 8 $ define openssl 'f$env("DEFAULT")'
|
/openssl-master/doc/man3/ |
A D | OPENSSL_ia32cap.pod | 9 env OPENSSL_ia32cap=... <application> 74 C<env OPENSSL_ia32cap=0x16980010 apps/openssl>, or better yet 75 C<env OPENSSL_ia32cap=~0x1000000 apps/openssl> would achieve the desired
|
A D | OPENSSL_malloc.pod | 66 env OPENSSL_MALLOC_FAILURES=... <application> 67 env OPENSSL_MALLOC_FD=... <application>
|
A D | OPENSSL_s390xcap.pod | 9 env OPENSSL_s390xcap=... <application>
|
/openssl-master/apps/ |
A D | rehash.c | 497 const char *env, *prog; in rehash_main() local 542 } else if ((env = getenv(X509_get_default_cert_dir_env())) != NULL) { in rehash_main() 544 m = OPENSSL_strdup(env); in rehash_main()
|
/openssl-master/test/ |
A D | README-dev.md | 47 #! /usr/bin/env perl 70 #! /usr/bin/env perl
|
/openssl-master/doc/man1/ |
A D | openssl-passphrase-options.pod | 41 =item B<env:>I<var>
|
A D | openssl.pod | 705 see L<openssl-env(7)>. 825 L<openssl-env(7)>.
|
A D | openssl-pkeyutl.pod.in | 386 openssl pkeyutl -kdf scrypt -kdflen 16 -pkeyopt_passin pass:env:MYPASS \
|
/openssl-master/doc/man7/ |
A D | openssl-env.pod | 5 openssl-env - OpenSSL environment variables
|
/openssl-master/doc/ |
A D | build.info | 4434 DEPEND[html/man7/openssl-env.html]=man7/openssl-env.pod 4435 GENERATE[html/man7/openssl-env.html]=man7/openssl-env.pod 4436 DEPEND[man/man7/openssl-env.7]=man7/openssl-env.pod 4437 GENERATE[man/man7/openssl-env.7]=man7/openssl-env.pod 4648 html/man7/openssl-env.html \ 4773 man/man7/openssl-env.7 \
|
/openssl-master/crypto/aes/asm/ |
A D | aes-ia64.S | 424 #!/usr/bin/env perl
|