Searched refs:cipherp (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/crypto/openssl/apps/include/
H A Dopt.h368 int opt_cipher(const char *name, EVP_CIPHER **cipherp);
369 int opt_cipher_any(const char *name, EVP_CIPHER **cipherp);
370 int opt_cipher_silent(const char *name, EVP_CIPHER **cipherp);
/freebsd-current/crypto/openssl/apps/lib/
H A Dopt.c373 * Parse a cipher name, put it in *cipherp after freeing what was there, if
374 * cipherp is not NULL. Return 0 on failure, else 1.
376 int opt_cipher_silent(const char *name, EVP_CIPHER **cipherp) argument
386 if (cipherp != NULL) {
387 EVP_CIPHER_free(*cipherp);
388 *cipherp = c;
398 int opt_cipher_any(const char *name, EVP_CIPHER **cipherp) argument
402 if ((ret = opt_cipher_silent(name, cipherp)) == 0)
407 int opt_cipher(const char *name, EVP_CIPHER **cipherp) argument
422 if (cipherp !
[all...]
/freebsd-current/crypto/openssl/providers/implementations/encode_decode/
H A Dencode_key2any.c981 const OSSL_PARAM *cipherp = local
988 if (cipherp != NULL) {
992 if (!OSSL_PARAM_get_utf8_string_ptr(cipherp, &ciphername))

Completed in 126 milliseconds