Home
last modified time | relevance | path

Searched refs:env (Results 1 – 25 of 26) sorted by relevance

12

/openssl/
H A Dappveyor.yml33 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 …]
H A DConfigure369 if (defined env($local_config_envname)) {
688 AR => env('AR'),
692 CC => env('CC'),
693 CFLAGS => [ env('CFLAGS') || () ],
694 CXX => env('CXX'),
700 CROSS_COMPILE => env('CROSS_COMPILE'),
701 HASHBANGPERL=> env('HASHBANGPERL') || env('PERL'),
708 RANLIB => env('RANLIB'),
709 RC => env('RC') || env('WINDRES'),
710 RCFLAGS => [ env('RCFLAGS') || () ],
[all …]
H A DNOTES-DJGPP.md24 `WATT_ROOT="/dev/env/DJDIR/watt32"`.
29 ./Configure no-threads --prefix=/dev/env/DJDIR DJGPP
H A DNOTES-ANDROID.md86 env EXE_SHELL=qemu-<arch> make test
90 env EXE_SHELL="qemu-mips64el -cpu MIPS64R6-generic" make test
H A DINSTALL.md1423 Default: /usr/bin/env perl
/openssl/crypto/
H A Dcpuid.c100 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()
H A Dinfo.c44 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()
H A Ds390xcap.c69 static const char *env; variable
141 env = getenv("OPENSSL_s390xcap"); in OPENSSL_cpuid_setup()
142 if (env != NULL) { in OPENSSL_cpuid_setup()
144 env = NULL; in OPENSSL_cpuid_setup()
147 if (env != NULL) { in OPENSSL_cpuid_setup()
155 if (env != NULL) { in OPENSSL_cpuid_setup()
682 buff = malloc(strlen(env) + 1); in parse_env()
688 strcpy(buff, env); in parse_env()
/openssl/crypto/cms/
H A Dcms_env.c221 CMS_EnvelopedData *env; in CMS_EnvelopedData_create_ex() local
227 if (env == NULL) in CMS_EnvelopedData_create_ex()
254 if (env == NULL) { in CMS_EnvelopedData_decrypt()
263 ci->d.envelopedData = env; in CMS_EnvelopedData_decrypt()
1083 if (env->version >= 4) in cms_env_set_version()
1088 if (env->version >= 3) in cms_env_set_version()
1101 if (env->originatorInfo || env->unprotectedAttrs) in cms_env_set_version()
1102 env->version = 2; in cms_env_set_version()
1103 if (env->version == 2) in cms_env_set_version()
1105 env->version = 0; in cms_env_set_version()
[all …]
/openssl/crypto/async/arch/
H A Dasync_posix.h59 jmp_buf env; member
74 if (!r || !_setjmp(o->env)) { in async_fibre_swapcontext()
76 _longjmp(n->env, 1); in async_fibre_swapcontext()
/openssl/Configurations/
H A D10-main.conf85 my $wceplatf = env('PLATFORM');
1517 add(combine(sub { defined(env('WCECOMPAT'))
1531 if (defined(env('WCECOMPAT'))) {
1541 if (defined(env('PORTSDK_LIBPATH')));
1543 if (env('TARGETCPU') =~ /^X86|^ARMV4[IT]/);
1874 CC => sub { env('CC') },
1879 dso_scheme => sub { env('LIBSSL_dlfcn') },
1882 ranlib => sub { env('RANLIB') },
1886 CC => sub { env('CC') },
1891 dso_scheme => sub { env('LIBSSL_dlfcn') },
[all …]
/openssl/VMS/
H A Dtest-includes.com8 $ define openssl 'f$env("DEFAULT")'
/openssl/doc/man3/
H A DCMS_EncryptedData_decrypt.pod16 BIO *CMS_EnvelopedData_decrypt(CMS_EnvelopedData *env, BIO *detached_data,
36 a CMS EnvelopedData object I<env> using the symmetric key I<secret> or
H A DOPENSSL_ia32cap.pod9 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
H A DOPENSSL_malloc.pod66 env OPENSSL_MALLOC_FAILURES=... <application>
67 env OPENSSL_MALLOC_FD=... <application>
H A DOPENSSL_s390xcap.pod9 env OPENSSL_s390xcap=... <application>
/openssl/apps/
H A Drehash.c503 const char *env, *prog; in rehash_main() local
548 } else if ((env = getenv(X509_get_default_cert_dir_env())) != NULL) { in rehash_main()
550 m = OPENSSL_strdup(env); in rehash_main()
/openssl/test/
H A DREADME-dev.md47 #! /usr/bin/env perl
70 #! /usr/bin/env perl
/openssl/doc/man1/
H A Dopenssl-passphrase-options.pod41 =item B<env:>I<var>
H A Dopenssl.pod682 see L<openssl-env(7)>.
831 L<openssl-env(7)>.
H A Dopenssl-pkeyutl.pod.in386 openssl pkeyutl -kdf scrypt -kdflen 16 -pkeyopt_passin pass:env:MYPASS \
/openssl/doc/man7/
H A Dopenssl-env.pod5 openssl-env - OpenSSL environment variables
/openssl/include/openssl/
H A Dcms.h.in208 BIO *CMS_EnvelopedData_decrypt(CMS_EnvelopedData *env, BIO *detached_data,
/openssl/doc/
H A Dbuild.info4476 DEPEND[html/man7/openssl-env.html]=man7/openssl-env.pod
4477 GENERATE[html/man7/openssl-env.html]=man7/openssl-env.pod
4478 DEPEND[man/man7/openssl-env.7]=man7/openssl-env.pod
4479 GENERATE[man/man7/openssl-env.7]=man7/openssl-env.pod
4690 html/man7/openssl-env.html \
4815 man/man7/openssl-env.7 \
/openssl/crypto/aes/asm/
H A Daes-ia64.S424 #!/usr/bin/env perl

Completed in 125 milliseconds

12