Home
last modified time | relevance | path

Searched refs:create (Results 1 – 25 of 181) sorted by relevance

12345678

/openssl/test/recipes/
H A D40-test_rehash.t32 }, create => 1, cleanup => 1;
38 }, create => 1, cleanup => 1;
43 }, create => 1, cleanup => 1;
57 }, create => 1, cleanup => 1;
H A D60-test_x509_store.t53 }, create => 1, cleanup => 1;
/openssl/crypto/property/
H A Dproperty_string.c143 int create, const char *s) in ossl_property_string() argument
161 if (ps == NULL && create) { in ossl_property_string()
252 int create) in ossl_property_name() argument
254 return ossl_property_string(ctx, 1, create, s); in ossl_property_name()
263 int create) in ossl_property_value() argument
265 return ossl_property_string(ctx, 0, create, s); in ossl_property_value()
H A Dproperty_local.h42 int create);
45 int create);
H A Dproperty_parse.c56 static int parse_name(OSSL_LIB_CTX *ctx, const char *t[], int create, in parse_name() argument
92 *idx = ossl_property_name(ctx, name, user_name && create); in parse_name()
194 OSSL_PROPERTY_DEFINITION *res, const int create) in parse_string() argument
217 res->v.str_val = ossl_property_value(ctx, v, create); in parse_string()
225 OSSL_PROPERTY_DEFINITION *res, const int create) in parse_unquoted() argument
249 else if ((res->v.str_val = ossl_property_value(ctx, v, create)) == 0) in parse_unquoted()
257 OSSL_PROPERTY_DEFINITION *res, int create) in parse_value() argument
264 r = parse_string(ctx, &s, s[-1], res, create); in parse_value()
281 return parse_unquoted(ctx, t, res, create); in parse_value()
/openssl/doc/HOWTO/
H A Dcertificates.txt29 keys, so before you create a certificate or a certificate request, you
30 need to create a private key.
38 create private keys can be found at https://www.openssl.org/docs/HOWTO/keys.txt.
44 To create a certificate, you need to start with a certificate request
50 yourself if you have your own certificate authority or create a
75 You can create a self-signed certificate if you don't want to deal
76 with a certificate authority, or if you just want to create a test
79 This is NOT the recommended way to create a CA certificate, see
/openssl/crypto/bio/
H A Dbio_meth.c189 return biom->create; in BIO_meth_get_create()
192 int BIO_meth_set_create(BIO_METHOD *biom, int (*create) (BIO *)) in BIO_meth_set_create()
194 biom->create = create; in BIO_meth_set_create()
/openssl/doc/man3/
H A DOSSL_PARAM_BLD.pod72 B<OSSL_PARAM_BLD_push_I<TYPE>>() are a series of functions which will create
82 OSSL_PARAM_BLD_push_BN() is a function that will create an OSSL_PARAM object
92 OSSL_PARAM_BLD_push_BN_pad() is a function that will create an OSSL_PARAM object
104 OSSL_PARAM_BLD_push_utf8_string() is a function that will create an OSSL_PARAM
111 OSSL_PARAM_BLD_push_octet_string() is a function that will create an OSSL_PARAM
116 OSSL_PARAM_BLD_push_utf8_ptr() is a function that will create an OSSL_PARAM
123 OSSL_PARAM_BLD_push_octet_ptr() is a function that will create an OSSL_PARAM
160 This example shows how to create an OSSL_PARAM array that contains an RSA
184 This example shows how to create an OSSL_PARAM array that contains an RSA
H A DSSL_new_stream.pod6 SSL_STREAM_FLAG_ADVANCE - create a new locally-initiated QUIC stream
37 This function can only be used to create stream objects for locally-initiated
45 it is currently not possible to create a new locally initiated stream of the
55 The flag B<SSL_STREAM_FLAG_ADVANCE> may be used to create a QUIC stream SSL
H A DX509_NAME_ENTRY_get_object.pod45 and X509_NAME_ENTRY_create_by_OBJ() create and return an
59 create and add new entries in a single operation.
H A DSRP_VBASE_new.pod11 - Functions to create and manage a stack of SRP user verifier information
56 to the B<vb> structure. See L<SRP_user_pwd_new(3)> to create and populate this
H A DCMAC_CTX.pod8 - create cipher-based message authentication codes
39 =item L<EVP_MAC_CTX_new(3)> to create a new MAC context.
/openssl/doc/man1/
H A Dopenssl-kdf.pod.in150 Use TLS1-PRF to create a hex-encoded derived key from a secret key and seed:
155 Use HKDF to create a hex-encoded derived key from a secret key, salt and info:
160 Use SSKDF with KMAC to create a hex-encoded derived key from a secret key, salt and info:
166 Use SSKDF with HMAC to create a hex-encoded derived key from a secret key, salt and info:
172 Use SSKDF with Hash to create a hex-encoded derived key from a secret key, salt and info:
178 Use SSHKDF to create a hex-encoded derived key from a secret key, hash and session_id:
186 Use PBKDF2 to create a hex-encoded derived key from a password and salt:
191 Use scrypt to create a hex-encoded derived key from a password and salt:
H A Dopenssl-mac.pod.in125 To create a hex-encoded HMAC-SHA1 MAC of a file and write to stdout:
131 To create a SipHash MAC from a file with a binary file output:
136 To create a hex-encoded CMAC-AES-128-CBC MAC from a file:
142 To create a hex-encoded KMAC128 MAC from a file with a Customisation String
148 To create a hex-encoded GMAC-AES-128-GCM with a IV from a file:
H A Dopenssl-ecparam.pod.in34 this command can only create EC parameters from known (named) curves.
139 To create EC parameters with the group 'prime192v1':
143 To create EC parameters with explicit parameters:
151 To create EC parameters and a private key:
/openssl/doc/man7/
H A Dossl-guide-libssl-introduction.pod49 An B<SSL_CTX> object is used to create the B<SSL> object for the underlying
50 connection. A single B<SSL_CTX> object can be used to create many connections
54 any B<SSL> object that you create from it. Alternatively you can apply settings
76 can be reused to create future connections with the same peer more rapidly. The
H A Dossl-guide-quic-client-block.pod47 object for our client and used it to create an B<SSL> object to represent the
48 TLS connection. A QUIC connection works in exactly the same way. We first create
49 an B<SSL_CTX> object and then use it to create an B<SSL> object to represent the
52 As in the TLS example the first step is to create an B<SSL_CTX> object for our
58 protocol. The second one is the same, but it will additionally create a
65 * Create an SSL_CTX which we can use to create SSL objects from. We
71 printf("Failed to create the SSL_CTX\n");
/openssl/include/openssl/
H A Dconftypes.h23 CONF *(*create) (CONF_METHOD *meth); member
/openssl/crypto/engine/
H A Deng_lib.c118 static int int_cleanup_check(int create) in int_cleanup_check() argument
122 if (!create) in int_cleanup_check()
H A Deng_table.c65 static int int_table_check(ENGINE_TABLE **t, int create) in int_table_check() argument
71 if (!create) in int_table_check()
/openssl/engines/
H A De_afalg.txt20 AFALG_R_SOCKET_CREATE_FAILED:109:socket create failed
/openssl/.github/workflows/
H A Dprovider-compatibility.yml59 - name: create download directory
82 - name: create release artifacts
156 - name: create branch artifacts
H A Dfips-checksums.yml22 - name: create build dirs
82 - name: create build dirs
/openssl/demos/sslecho/
H A DREADME.md26 Best to create the 'pem' files using an actual hostname.
/openssl/demos/certs/apps/
H A Dapps.cnf2 # OpenSSL configuration file to create apps directory certificates

Completed in 44 milliseconds

12345678