OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OPENSSL
(Results
1 - 25
of
60
) sorted by relevancy
1
2
3
/src/crypto/external/bsd/openssl.old/dist/util/
opensslwrap.sh
4
OPENSSL
="${HERE}../apps/
openssl
"
10
if [ -x "${
OPENSSL
}.exe" ]; then
21
exec "${
OPENSSL
}.exe" "$@"
22
elif [ -x "${
OPENSSL
}" -a -x "${HERE}shlib_wrap.sh" ]; then
23
exec "${HERE}shlib_wrap.sh" "${
OPENSSL
}" "$@"
25
exec "${
OPENSSL
}" "$@" # hope for the best...
/src/crypto/external/apache2/openssl/dist/util/
opensslwrap.sh
4
OPENSSL
="${HERE}../apps/
openssl
"
13
if [ -x "${
OPENSSL
}.exe" ]; then
24
exec "${
OPENSSL
}.exe" "$@"
25
elif [ -x "${
OPENSSL
}" -a -x "${HERE}shlib_wrap.sh" ]; then
26
exec "${HERE}shlib_wrap.sh" "${
OPENSSL
}" "$@"
28
exec "${
OPENSSL
}" "$@" # hope for the best...
/src/crypto/external/bsd/openssl/dist/util/
opensslwrap.sh
4
OPENSSL
="${HERE}../apps/
openssl
"
13
if [ -x "${
OPENSSL
}.exe" ]; then
24
exec "${
OPENSSL
}.exe" "$@"
25
elif [ -x "${
OPENSSL
}" -a -x "${HERE}shlib_wrap.sh" ]; then
26
exec "${HERE}shlib_wrap.sh" "${
OPENSSL
}" "$@"
28
exec "${
OPENSSL
}" "$@" # hope for the best...
/src/crypto/external/bsd/openssl/dist/demos/certs/
ocsprun.sh
1
# Example of running an querying
OpenSSL
test OCSP responder.
5
OPENSSL
=../../apps/
openssl
6
OPENSSL_CONF=../../apps/
openssl
.cnf
13
$
OPENSSL
ocsp -port $PORT -index index.txt -CA intca.pem \
ocspquery.sh
1
# Example querying
OpenSSL
test responder. Assumes ocsprun.sh has been
4
OPENSSL
=../../apps/
openssl
5
OPENSSL_CONF=../../apps/
openssl
.cnf
11
$
OPENSSL
ocsp -issuer intca.pem -cert client.pem -CAfile root.pem \
13
$
OPENSSL
ocsp -issuer intca.pem -cert server.pem -CAfile root.pem \
15
$
OPENSSL
ocsp -issuer intca.pem -cert rev.pem -CAfile root.pem \
19
$
OPENSSL
ocsp -issuer intca.pem \
mkcerts.sh
3
OPENSSL
=../../apps/
openssl
4
OPENSSL_CONF=../../apps/
openssl
.cnf
8
CN="Test Root CA" $
OPENSSL
req -config ca.cnf -x509 -nodes \
11
CN="Test Intermediate CA" $
OPENSSL
req -config ca.cnf -nodes \
14
$
OPENSSL
x509 -req -in intreq.pem -CA root.pem -days 3600 \
18
CN="Test Server Cert" $
OPENSSL
req -config ca.cnf -nodes \
21
$
OPENSSL
x509 -req -in req.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
25
CN="Test Client Cert" $
OPENSSL
req -config ca.cnf -nodes \
28
$
OPENSSL
x509 -req -in creq.pem -CA intca.pem -CAkey intkey.pem -days 3600
[
all
...]
/src/crypto/external/bsd/openssl.old/dist/demos/certs/
ocsprun.sh
1
# Example of running an querying
OpenSSL
test OCSP responder.
5
OPENSSL
=../../apps/
openssl
6
OPENSSL_CONF=../../apps/
openssl
.cnf
13
$
OPENSSL
ocsp -port $PORT -index index.txt -CA intca.pem \
ocspquery.sh
1
# Example querying
OpenSSL
test responder. Assumes ocsprun.sh has been
4
OPENSSL
=../../apps/
openssl
5
OPENSSL_CONF=../../apps/
openssl
.cnf
11
$
OPENSSL
ocsp -issuer intca.pem -cert client.pem -CAfile root.pem \
13
$
OPENSSL
ocsp -issuer intca.pem -cert server.pem -CAfile root.pem \
15
$
OPENSSL
ocsp -issuer intca.pem -cert rev.pem -CAfile root.pem \
19
$
OPENSSL
ocsp -issuer intca.pem \
mkcerts.sh
3
OPENSSL
=../../apps/
openssl
4
OPENSSL_CONF=../../apps/
openssl
.cnf
8
CN="Test Root CA" $
OPENSSL
req -config ca.cnf -x509 -nodes \
11
CN="Test Intermediate CA" $
OPENSSL
req -config ca.cnf -nodes \
14
$
OPENSSL
x509 -req -in intreq.pem -CA root.pem -days 3600 \
18
CN="Test Server Cert" $
OPENSSL
req -config ca.cnf -nodes \
21
$
OPENSSL
x509 -req -in req.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
25
CN="Test Client Cert" $
OPENSSL
req -config ca.cnf -nodes \
28
$
OPENSSL
x509 -req -in creq.pem -CA intca.pem -CAkey intkey.pem -days 3600
[
all
...]
/src/external/bsd/pam-u2f/dist/build-aux/ci/
build-osx.sh
4
# Link to the same
OpenSSL
version as libfido2.
5
OPENSSL
="$(brew deps libfido2 | grep
openssl
)"
7
OPENSSL_PKGCONF="$(brew --prefix "${
OPENSSL
}")/lib/pkgconfig"
/src/crypto/external/bsd/openssl.old/dist/test/smime-certs/
mksmime-certs.sh
2
# Copyright 2013-2022 The
OpenSSL
Project Authors. All Rights Reserved.
4
# Licensed under the
OpenSSL
license (the "License"). You may not use
7
# https://www.
openssl
.org/source/license.html
12
OPENSSL
=../../apps/
openssl
17
CN="Test S/MIME RSA Root" $
OPENSSL
req -config ca.cnf -x509 -nodes \
21
CN="Test S/MIME EE RSA #1" $
OPENSSL
req -config ca.cnf -nodes \
24
$
OPENSSL
x509 -req -in req.pem -CA smroot.pem -days 36500 \
27
CN="Test S/MIME EE RSA #2" $
OPENSSL
req -config ca.cnf -nodes \
29
$
OPENSSL
x509 -req -in req.pem -CA smroot.pem -days 36500
[
all
...]
/src/external/bsd/ntp/dist/tests/libntp/
ssl_init.c
7
#ifdef
OPENSSL
8
# include "
openssl
/err.h"
9
# include "
openssl
/rand.h"
10
# include "
openssl
/evp.h"
45
#ifdef
OPENSSL
51
/*
OPENSSL
*/
53
TEST_IGNORE_MESSAGE("Skipping because
OPENSSL
isn't defined");
60
#if defined(
OPENSSL
) && defined(ENABLE_CMAC)
66
/*
OPENSSL
*/
68
TEST_IGNORE_MESSAGE("Skipping because
OPENSSL
/CMAC isn't defined")
[
all
...]
a_md5encrypt.c
6
#ifdef
OPENSSL
7
# include "
openssl
/err.h"
8
# include "
openssl
/rand.h"
9
# include "
openssl
/evp.h"
17
* echo -n abcdefghijklmnopqrstuvwx |
openssl
sha1 -
19
#ifdef
OPENSSL
61
#endif /*
OPENSSL
*/
75
#ifndef
OPENSSL
94
#endif /*
OPENSSL
*/
100
#ifndef
OPENSSL
[
all
...]
/src/crypto/external/bsd/openssl/dist/test/smime-certs/
mksmime-certs.sh
2
# Copyright 2013-2022 The
OpenSSL
Project Authors. All Rights Reserved.
7
# https://www.
openssl
.org/source/license.html
12
OPENSSL
=../../apps/
openssl
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 \
24
$
OPENSSL
x509 -req -in req.pem -CA smroot.pem -days 36500 \
27
CN="Test S/MIME EE RSA #2" $
OPENSSL
req -config ca.cnf -noenc \
29
$
OPENSSL
x509 -req -in req.pem -CA smroot.pem -days 36500 \
32
CN="Test S/MIME EE RSA #3" $
OPENSSL
req -config ca.cnf -noenc
[
all
...]
/src/crypto/external/bsd/openssl/dist/demos/certs/apps/
mkacerts.sh
5
OPENSSL
=
openssl
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 \
14
$
OPENSSL
x509 -req -in intreq.pem -CA root.pem -CAkey rootkey.pem -days 3630 \
17
CN="Test Client Cert" $
OPENSSL
req -config apps.cnf -nodes \
20
$
OPENSSL
x509 -req -in creq.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
22
$
OPENSSL
x509 -nameopt oneline -subject -issuer >client.pe
[
all
...]
mkxcerts.sh
5
OPENSSL
=../../../apps/
openssl
6
CN="
OpenSSL
Test RSA SHA-1 cert" $
OPENSSL
req \
9
CN="
OpenSSL
Test RSA SHA-256 cert" $
OPENSSL
req \
12
CN="
OpenSSL
Test RSA SHA-512 cert" $
OPENSSL
req \
18
$
OPENSSL
ecparam -name P-256 -out ecp256.pem
19
$
OPENSSL
ecparam -name P-384 -out ecp384.pe
[
all
...]
/src/crypto/external/bsd/openssl.old/dist/demos/certs/apps/
mkacerts.sh
5
OPENSSL
=
openssl
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 \
14
$
OPENSSL
x509 -req -in intreq.pem -CA root.pem -CAkey rootkey.pem -days 3630 \
17
CN="Test Client Cert" $
OPENSSL
req -config apps.cnf -nodes \
20
$
OPENSSL
x509 -req -in creq.pem -CA intca.pem -CAkey intkey.pem -days 3600 \
22
$
OPENSSL
x509 -nameopt oneline -subject -issuer >client.pe
[
all
...]
mkxcerts.sh
5
OPENSSL
=../../../apps/
openssl
6
CN="
OpenSSL
Test RSA SHA-1 cert" $
OPENSSL
req \
9
CN="
OpenSSL
Test RSA SHA-256 cert" $
OPENSSL
req \
12
CN="
OpenSSL
Test RSA SHA-512 cert" $
OPENSSL
req \
18
$
OPENSSL
ecparam -name P-256 -out ecp256.pem
19
$
OPENSSL
ecparam -name P-384 -out ecp384.pe
[
all
...]
/src/crypto/external/apache2/openssl/dist/test/smime-certs/
mksmime-certs.sh
2
# Copyright 2013-2025 The
OpenSSL
Project Authors. All Rights Reserved.
7
# https://www.
openssl
.org/source/license.html
12
OPENSSL
=../../apps/
openssl
17
$
OPENSSL
x509 -CA smroot.pem -new -days 36524 -force_pubkey $1 -subj "$2" \
22
CN="Test S/MIME RSA Root" $
OPENSSL
req -config ca.cnf -x509 -noenc \
33
$
OPENSSL
x509 -in smrsa3.pem > smrsa3-cert.pem
34
$
OPENSSL
pkey -in smrsa3.pem > smrsa3-key.pem
53
#$
OPENSSL
ecparam -out ecp.pem -name P-256
54
#CN="Test S/MIME EE EC #3" $
OPENSSL
req -config ca.cnf -noenc
[
all
...]
/src/external/bsd/ntp/dist/include/
ssl_applink.c
4
* include/ssl_applink.c -- common NTP code for
openssl
/applink.c
6
* Each program which uses
OpenSSL
should include this file in _one_
7
* of its source files and call ssl_applink() before any
OpenSSL
11
#if defined(
OPENSSL
) && defined(SYS_WINNT)
20
# include <
openssl
/applink.c>
27
#if defined(
OPENSSL
) && defined(_MSC_VER) && defined(_DEBUG)
39
#if defined(
OPENSSL
) && defined(SYS_WINNT)
62
#endif /*
OpenSSL
version cascade */
64
#else /* !
OPENSSL
|| !SYS_WINNT */
71
*
OpenSSL
malloc overriding uses different parameter
[
all
...]
ntp_crypto.h
24
#ifndef
OPENSSL
25
#error AUTOKEY should be defined only if
OPENSSL
is.
26
invalidsyntax: AUTOKEY should be defined only if
OPENSSL
is.
29
#include "
openssl
/bn.h"
30
#include "
openssl
/evp.h"
/src/external/bsd/ntp/dist/libntp/
ssl_init.c
4
* ssl_init.c Common
OpenSSL
initialization code for the various
17
#ifdef
OPENSSL
18
# include <
openssl
/crypto.h>
19
# include <
openssl
/err.h>
20
# include <
openssl
/evp.h>
21
# include <
openssl
/opensslv.h>
24
# include <
openssl
/cmac.h>
43
#endif /*
OpenSSL
< 1.1 */
56
#endif /*
OpenSSL
< 1.1 */
74
"
OpenSSL
version mismatch.
[
all
...]
/src/crypto/external/bsd/netpgp/lib/netpgp/
Makefile
23
OPENSSL
=${NETBSDSRCDIR}/crypto/external/${EXTERNAL_OPENSSL_SUBDIR}
25
LIBDPLIBS+= crypto ${
OPENSSL
}/lib/libcrypto
/src/external/bsd/ntp/dist/sntp/tests/
crypto.c
32
#ifdef
OPENSSL
57
TEST_IGNORE_MESSAGE("
OpenSSL
not found, skipping...");
59
#endif /*
OPENSSL
*/
66
#ifdef
OPENSSL
91
TEST_IGNORE_MESSAGE("
OpenSSL
not found, skipping...");
93
#endif /*
OPENSSL
*/
100
#if defined(
OPENSSL
) && defined(ENABLE_CMAC)
125
#endif /*
OPENSSL
*/
132
#ifdef
OPENSSL
161
TEST_IGNORE_MESSAGE("
OpenSSL
not found, skipping...")
[
all
...]
/src/crypto/external/bsd/openssl.old/dist/test/recipes/
80-test_ca.t
2
# Copyright 2015-2016 The
OpenSSL
Project Authors. All Rights Reserved.
4
# Licensed under the
OpenSSL
license (the "License"). You may not use
7
# https://www.
openssl
.org/source/license.html
15
use
OpenSSL
::Test qw/:DEFAULT cmdstr srctop_file/;
16
use
OpenSSL
::Test::Utils;
20
$ENV{
OPENSSL
} = cmdstr(app(["
openssl
"]), display => 1);
22
srctop_file("apps", $^O eq "VMS" ? "
openssl
-vms.cnf" : "
openssl
.cnf");
Completed in 22 milliseconds
1
2
3
Indexes created Sat Apr 25 00:22:52 UTC 2026