/openssl/test/recipes/ |
H A D | 40-test_rehash.t | 32 }, create => 1, cleanup => 1; 38 }, create => 1, cleanup => 1; 43 }, create => 1, cleanup => 1; 57 }, create => 1, cleanup => 1;
|
H A D | 60-test_x509_store.t | 53 }, create => 1, cleanup => 1;
|
/openssl/crypto/property/ |
H A D | property_string.c | 143 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 D | property_local.h | 42 int create); 45 int create);
|
H A D | property_parse.c | 56 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 D | certificates.txt | 29 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 D | bio_meth.c | 189 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 D | OSSL_PARAM_BLD.pod | 72 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 D | SSL_new_stream.pod | 6 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 D | X509_NAME_ENTRY_get_object.pod | 45 and X509_NAME_ENTRY_create_by_OBJ() create and return an 59 create and add new entries in a single operation.
|
H A D | SRP_VBASE_new.pod | 11 - 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 D | CMAC_CTX.pod | 8 - 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 D | openssl-kdf.pod.in | 150 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 D | openssl-mac.pod.in | 125 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 D | openssl-ecparam.pod.in | 34 this command can only create EC parameters from known (named) curves. 141 To create EC parameters with the group 'prime192v1': 145 To create EC parameters with explicit parameters: 153 To create EC parameters and a private key:
|
/openssl/doc/man7/ |
H A D | ossl-guide-libssl-introduction.pod | 49 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 D | ossl-guide-quic-client-block.pod | 47 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 D | conftypes.h | 23 CONF *(*create) (CONF_METHOD *meth); member
|
/openssl/crypto/engine/ |
H A D | eng_lib.c | 118 static int int_cleanup_check(int create) in int_cleanup_check() argument 122 if (!create) in int_cleanup_check()
|
H A D | eng_table.c | 65 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 D | e_afalg.txt | 20 AFALG_R_SOCKET_CREATE_FAILED:109:socket create failed
|
/openssl/demos/sslecho/ |
H A D | README.md | 26 Best to create the 'pem' files using an actual hostname.
|
/openssl/.github/workflows/ |
H A D | fips-checksums.yml | 22 - name: create build dirs 82 - name: create build dirs
|
H A D | prov-compat-label.yml | 55 - name: create download directory 78 - name: create release artifacts 161 - name: create branch artifacts
|
/openssl/demos/certs/apps/ |
H A D | apps.cnf | 2 # OpenSSL configuration file to create apps directory certificates
|