/netbsd-src/crypto/external/bsd/openssl/dist/crypto/evp/ |
H A D | cmeth_lib.c | 25 EVP_CIPHER *cipher = evp_cipher_new(); in EVP_CIPHER_meth_new() local 27 if (cipher != NULL) { in EVP_CIPHER_meth_new() 28 cipher->nid = cipher_type; in EVP_CIPHER_meth_new() 29 cipher->block_size = block_size; in EVP_CIPHER_meth_new() 30 cipher->key_len = key_len; in EVP_CIPHER_meth_new() 31 cipher->origin = EVP_ORIG_METH; in EVP_CIPHER_meth_new() 33 return cipher; in EVP_CIPHER_meth_new() 36 EVP_CIPHER *EVP_CIPHER_meth_dup(const EVP_CIPHER *cipher) in EVP_CIPHER_meth_dup() argument 44 if (cipher->prov != NULL) in EVP_CIPHER_meth_dup() 47 if ((to = EVP_CIPHER_meth_new(cipher->nid, cipher->block_size, in EVP_CIPHER_meth_dup() [all …]
|
H A D | evp_enc.c | 35 if (ctx->cipher == NULL || ctx->cipher->prov == NULL) in EVP_CIPHER_CTX_reset() 39 if (ctx->cipher->freectx != NULL) in EVP_CIPHER_CTX_reset() 40 ctx->cipher->freectx(ctx->algctx); in EVP_CIPHER_CTX_reset() 53 if (ctx->cipher != NULL) { in EVP_CIPHER_CTX_reset() 54 if (ctx->cipher->cleanup && !ctx->cipher->cleanup(ctx)) in EVP_CIPHER_CTX_reset() 57 if (ctx->cipher_data && ctx->cipher->ctx_size) in EVP_CIPHER_CTX_reset() 58 OPENSSL_cleanse(ctx->cipher_data, ctx->cipher->ctx_size); in EVP_CIPHER_CTX_reset() 83 const EVP_CIPHER *cipher, in evp_cipher_init_internal() argument 108 if (cipher == NULL && ctx->cipher == NULL) { in evp_cipher_init_internal() 122 if (ctx->engine && ctx->cipher in evp_cipher_init_internal() [all …]
|
H A D | asymcipher.c | 25 EVP_ASYM_CIPHER *cipher = NULL; in evp_pkey_asym_cipher_init() local 93 EVP_ASYM_CIPHER_free(cipher); in evp_pkey_asym_cipher_init() 98 cipher = EVP_ASYM_CIPHER_fetch(ctx->libctx, supported_ciph, in evp_pkey_asym_cipher_init() 100 if (cipher != NULL) in evp_pkey_asym_cipher_init() 101 tmp_prov = EVP_ASYM_CIPHER_get0_provider(cipher); in evp_pkey_asym_cipher_init() 105 cipher = in evp_pkey_asym_cipher_init() 108 if (cipher == NULL) in evp_pkey_asym_cipher_init() 112 if (cipher == NULL) in evp_pkey_asym_cipher_init() 136 EVP_ASYM_CIPHER_free(cipher); in evp_pkey_asym_cipher_init() 144 ctx->op.ciph.cipher = cipher; in evp_pkey_asym_cipher_init() [all …]
|
H A D | evp_lib.c | 84 const EVP_CIPHER *cipher = c->cipher; in evp_cipher_param_to_asn1_ex() local 102 if (cipher->set_asn1_parameters != NULL) { in evp_cipher_param_to_asn1_ex() 103 ret = cipher->set_asn1_parameters(c, type); in evp_cipher_param_to_asn1_ex() 104 } else if ((EVP_CIPHER_get_flags(cipher) & EVP_CIPH_FLAG_CUSTOM_ASN1) == 0) { in evp_cipher_param_to_asn1_ex() 105 switch (EVP_CIPHER_get_mode(cipher)) { in evp_cipher_param_to_asn1_ex() 107 if (EVP_CIPHER_is_a(cipher, SN_id_smime_alg_CMS3DESwrap)) in evp_cipher_param_to_asn1_ex() 125 } else if (cipher->prov != NULL) { in evp_cipher_param_to_asn1_ex() 175 const EVP_CIPHER *cipher = c->cipher; in evp_cipher_asn1_to_param_ex() local 193 if (cipher->get_asn1_parameters != NULL) { in evp_cipher_asn1_to_param_ex() 194 ret = cipher->get_asn1_parameters(c, type); in evp_cipher_asn1_to_param_ex() [all …]
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/evp/ |
H A D | cmeth_lib.c | 18 EVP_CIPHER *cipher = OPENSSL_zalloc(sizeof(EVP_CIPHER)); in EVP_CIPHER_meth_new() local 20 if (cipher != NULL) { in EVP_CIPHER_meth_new() 21 cipher->nid = cipher_type; in EVP_CIPHER_meth_new() 22 cipher->block_size = block_size; in EVP_CIPHER_meth_new() 23 cipher->key_len = key_len; in EVP_CIPHER_meth_new() 25 return cipher; in EVP_CIPHER_meth_new() 28 EVP_CIPHER *EVP_CIPHER_meth_dup(const EVP_CIPHER *cipher) in EVP_CIPHER_meth_dup() argument 30 EVP_CIPHER *to = EVP_CIPHER_meth_new(cipher->nid, cipher->block_size, in EVP_CIPHER_meth_dup() 31 cipher->key_len); in EVP_CIPHER_meth_dup() 34 memcpy(to, cipher, sizeof(*to)); in EVP_CIPHER_meth_dup() [all …]
|
H A D | evp_enc.c | 26 if (c->cipher != NULL) { in EVP_CIPHER_CTX_reset() 27 if (c->cipher->cleanup && !c->cipher->cleanup(c)) in EVP_CIPHER_CTX_reset() 30 if (c->cipher_data && c->cipher->ctx_size) in EVP_CIPHER_CTX_reset() 31 OPENSSL_cleanse(c->cipher_data, c->cipher->ctx_size); in EVP_CIPHER_CTX_reset() 52 int EVP_CipherInit(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit() argument 55 if (cipher != NULL) in EVP_CipherInit() 57 return EVP_CipherInit_ex(ctx, cipher, NULL, key, iv, enc); in EVP_CipherInit() 60 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, in EVP_CipherInit_ex() argument 78 if (ctx->engine && ctx->cipher in EVP_CipherInit_ex() 79 && (cipher == NULL || cipher->nid == ctx->cipher->nid)) in EVP_CipherInit_ex() [all …]
|
H A D | evp_lib.c | 21 if (c->cipher->set_asn1_parameters != NULL) in EVP_CIPHER_param_to_asn1() 22 ret = c->cipher->set_asn1_parameters(c, type); in EVP_CIPHER_param_to_asn1() 23 else if (c->cipher->flags & EVP_CIPH_FLAG_DEFAULT_ASN1) { in EVP_CIPHER_param_to_asn1() 56 if (c->cipher->get_asn1_parameters != NULL) in EVP_CIPHER_asn1_to_param() 57 ret = c->cipher->get_asn1_parameters(c, type); in EVP_CIPHER_asn1_to_param() 58 else if (c->cipher->flags & EVP_CIPH_FLAG_DEFAULT_ASN1) { in EVP_CIPHER_asn1_to_param() 184 return ctx->cipher->block_size; in EVP_CIPHER_CTX_block_size() 195 return ctx->cipher->do_cipher(ctx, out, in, inl); in EVP_Cipher() 200 return ctx->cipher; in EVP_CIPHER_CTX_cipher() 208 unsigned long EVP_CIPHER_flags(const EVP_CIPHER *cipher) in EVP_CIPHER_flags() argument [all …]
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/test/ssl-tests/ |
H A D | 25-cipher.conf | 5 test-0 = 0-cipher-server-1 6 test-1 = 1-cipher-server-2 7 test-2 = 2-cipher-server-client-list 8 test-3 = 3-cipher-server-pref-1 9 test-4 = 4-cipher-server-pref-2 10 test-5 = 5-cipher-server-pref-client-list 11 test-6 = 6-cipher-server-pref-not-mobile 12 test-7 = 7-cipher-server-pref-mobile 13 test-8 = 8-cipher-server-pref-mobile2 16 [0-cipher-server-1] [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/test/ssl-tests/ |
H A D | 25-cipher.cnf | 5 test-0 = 0-cipher-server-1 6 test-1 = 1-cipher-server-2 7 test-2 = 2-cipher-server-client-list 8 test-3 = 3-cipher-server-pref-1 9 test-4 = 4-cipher-server-pref-2 10 test-5 = 5-cipher-server-pref-client-list 11 test-6 = 6-cipher-server-pref-not-mobile 12 test-7 = 7-cipher-server-pref-mobile 13 test-8 = 8-cipher-server-pref-mobile2 16 [0-cipher-server-1] [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/ |
H A D | evpkdf_krb5.txt | 18 Ctrl.cipher = cipher:DES-EDE3-CBC 24 Ctrl.cipher = cipher:DES-EDE3-CBC 30 Ctrl.cipher = cipher:DES-EDE3-CBC 36 Ctrl.cipher = cipher:DES-EDE3-CBC 42 Ctrl.cipher = cipher:DES-EDE3-CBC 48 Ctrl.cipher = cipher:DES-EDE3-CBC 54 Ctrl.cipher = cipher:DES-EDE3-CBC 60 Ctrl.cipher = cipher:DES-EDE3-CBC 66 Ctrl.cipher = cipher:DES-EDE3-CBC 73 Ctrl.cipher = cipher:DES-EDE3-CBC [all …]
|
/netbsd-src/crypto/dist/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
H A D | rijndael-api-fst.c | 79 int rijndael_cipherInit(cipherInstance *cipher, BYTE mode, char *IV) { in rijndael_cipherInit() argument 81 cipher->mode = mode; in rijndael_cipherInit() 86 bcopy(IV, cipher->IV, MAX_IV_SIZE); in rijndael_cipherInit() 88 bzero(cipher->IV, MAX_IV_SIZE); in rijndael_cipherInit() 93 int rijndael_blockEncrypt(cipherInstance *cipher, keyInstance *key, in rijndael_blockEncrypt() argument 98 if (cipher == NULL || in rijndael_blockEncrypt() 109 switch (cipher->mode) { in rijndael_blockEncrypt() 120 bcopy(cipher->IV, block, 16); in rijndael_blockEncrypt() 127 ((word32*)block)[0] = ((word32*)cipher->IV)[0] ^ ((word32*)input)[0]; in rijndael_blockEncrypt() 128 ((word32*)block)[1] = ((word32*)cipher->IV)[1] ^ ((word32*)input)[1]; in rijndael_blockEncrypt() [all …]
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/ |
H A D | EVP_CIPHER_meth_new.pod | 20 EVP_CIPHER *EVP_CIPHER_meth_dup(const EVP_CIPHER *cipher); 21 void EVP_CIPHER_meth_free(EVP_CIPHER *cipher); 23 int EVP_CIPHER_meth_set_iv_length(EVP_CIPHER *cipher, int iv_len); 24 int EVP_CIPHER_meth_set_flags(EVP_CIPHER *cipher, unsigned long flags); 25 int EVP_CIPHER_meth_set_impl_ctx_size(EVP_CIPHER *cipher, int ctx_size); 26 int EVP_CIPHER_meth_set_init(EVP_CIPHER *cipher, 31 int EVP_CIPHER_meth_set_do_cipher(EVP_CIPHER *cipher, 36 int EVP_CIPHER_meth_set_cleanup(EVP_CIPHER *cipher, 38 int EVP_CIPHER_meth_set_set_asn1_params(EVP_CIPHER *cipher, 41 int EVP_CIPHER_meth_set_get_asn1_params(EVP_CIPHER *cipher, [all …]
|
H A D | SSL_CIPHER_get_name.pod | 26 const char *SSL_CIPHER_get_name(const SSL_CIPHER *cipher); 27 const char *SSL_CIPHER_standard_name(const SSL_CIPHER *cipher); 29 int SSL_CIPHER_get_bits(const SSL_CIPHER *cipher, int *alg_bits); 30 char *SSL_CIPHER_get_version(const SSL_CIPHER *cipher); 31 char *SSL_CIPHER_description(const SSL_CIPHER *cipher, char *buf, int size); 44 SSL_CIPHER_get_name() returns a pointer to the name of B<cipher>. If the 45 B<cipher> is NULL, it returns "(NONE)". 48 B<cipher>. If the B<cipher> is NULL, it returns "(NONE)". If the B<cipher> 49 has no standard name, it returns B<NULL>. If B<cipher> was defined in both 57 SSL_CIPHER_get_bits() returns the number of secret bits used for B<cipher>. [all …]
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/engine/ |
H A D | eng_openssl.c | 58 static int openssl_ciphers(ENGINE *e, const EVP_CIPHER **cipher, 217 EVP_CIPHER *cipher; in test_r4_cipher() local 219 if ((cipher = EVP_CIPHER_meth_new(NID_rc4, 1, TEST_RC4_KEY_SIZE)) == NULL in test_r4_cipher() 220 || !EVP_CIPHER_meth_set_iv_length(cipher, 0) in test_r4_cipher() 221 || !EVP_CIPHER_meth_set_flags(cipher, EVP_CIPH_VARIABLE_LENGTH) in test_r4_cipher() 222 || !EVP_CIPHER_meth_set_init(cipher, test_rc4_init_key) in test_r4_cipher() 223 || !EVP_CIPHER_meth_set_do_cipher(cipher, test_rc4_cipher) in test_r4_cipher() 224 || !EVP_CIPHER_meth_set_impl_ctx_size(cipher, sizeof(TEST_RC4_KEY))) { in test_r4_cipher() 225 EVP_CIPHER_meth_free(cipher); in test_r4_cipher() 226 cipher = NULL; in test_r4_cipher() [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/engine/ |
H A D | eng_openssl.c | 67 static int openssl_ciphers(ENGINE *e, const EVP_CIPHER **cipher, 234 EVP_CIPHER *cipher; in test_r4_cipher() local 236 if ((cipher = EVP_CIPHER_meth_new(NID_rc4, 1, TEST_RC4_KEY_SIZE)) == NULL in test_r4_cipher() 237 || !EVP_CIPHER_meth_set_iv_length(cipher, 0) in test_r4_cipher() 238 || !EVP_CIPHER_meth_set_flags(cipher, EVP_CIPH_VARIABLE_LENGTH) in test_r4_cipher() 239 || !EVP_CIPHER_meth_set_init(cipher, test_rc4_init_key) in test_r4_cipher() 240 || !EVP_CIPHER_meth_set_do_cipher(cipher, test_rc4_cipher) in test_r4_cipher() 241 || !EVP_CIPHER_meth_set_impl_ctx_size(cipher, sizeof(TEST_RC4_KEY))) { in test_r4_cipher() 242 EVP_CIPHER_meth_free(cipher); in test_r4_cipher() 243 cipher = NULL; in test_r4_cipher() [all …]
|
/netbsd-src/crypto/external/cpl/trousers/dist/src/trspi/crypto/openssl/ |
H A D | symmetric.c | 141 EVP_CIPHER *cipher = NULL; in get_openssl_cipher() local 152 cipher = (EVP_CIPHER *)EVP_aes_128_cbc(); in get_openssl_cipher() 155 cipher = (EVP_CIPHER *)EVP_aes_128_ofb(); in get_openssl_cipher() 172 cipher = (EVP_CIPHER *)EVP_des_cbc(); in get_openssl_cipher() 175 cipher = (EVP_CIPHER *)EVP_des_ofb(); in get_openssl_cipher() 192 cipher = (EVP_CIPHER *)EVP_des_ede3_cbc(); in get_openssl_cipher() 195 cipher = (EVP_CIPHER *)EVP_des_ede3_ofb(); in get_openssl_cipher() 212 cipher = (EVP_CIPHER *)EVP_aes_192_cbc(); in get_openssl_cipher() 215 cipher = (EVP_CIPHER *)EVP_aes_192_ofb(); in get_openssl_cipher() 232 cipher = (EVP_CIPHER *)EVP_aes_256_cbc(); in get_openssl_cipher() [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/ |
H A D | mac_legacy_kmgmt.c | 61 PROV_CIPHER cipher; member 100 ossl_prov_cipher_reset(&mackey->cipher); in ossl_mac_key_free() 170 || (key1->cipher.cipher == NULL && key2->cipher.cipher != NULL) in mac_match() 171 || (key1->cipher.cipher != NULL && key2->cipher.cipher == NULL)) in mac_match() 177 if (key1->cipher.cipher != NULL) in mac_match() 178 ok = ok && EVP_CIPHER_is_a(key1->cipher.cipher, in mac_match() 179 EVP_CIPHER_get0_name(key2->cipher.cipher)); in mac_match() 219 if (key->cmac && !ossl_prov_cipher_load_from_params(&key->cipher, params, in mac_key_fromdata() 256 if (key->cipher.cipher != NULL in key_to_params() 259 EVP_CIPHER_get0_name(key->cipher.cipher))) in key_to_params() [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/cms/ |
H A D | cms_enc.c | 31 const EVP_CIPHER *cipher = NULL; in ossl_cms_EncryptedContent_init_bio() local 44 enc = ec->cipher ? 1 : 0; in ossl_cms_EncryptedContent_init_bio() 56 cipher = ec->cipher; in ossl_cms_EncryptedContent_init_bio() 61 ec->cipher = NULL; in ossl_cms_EncryptedContent_init_bio() 63 cipher = EVP_get_cipherbyobj(calg->algorithm); in ossl_cms_EncryptedContent_init_bio() 65 if (cipher != NULL) { in ossl_cms_EncryptedContent_init_bio() 66 fetched_ciph = EVP_CIPHER_fetch(libctx, EVP_CIPHER_get0_name(cipher), in ossl_cms_EncryptedContent_init_bio() 69 cipher = fetched_ciph; in ossl_cms_EncryptedContent_init_bio() 71 if (cipher == NULL) { in ossl_cms_EncryptedContent_init_bio() 78 if (EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, enc) <= 0) { in ossl_cms_EncryptedContent_init_bio() [all …]
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/apps/ |
H A D | enc.c | 100 const EVP_CIPHER *cipher = NULL, *c; in enc_main() local 131 cipher = EVP_get_cipherbyname(prog); in enc_main() 132 if (cipher == NULL && strcmp(prog, "enc") != 0) { in enc_main() 261 cipher = c; in enc_main() 274 cipher = NULL; in enc_main() 287 if (cipher && EVP_CIPHER_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER) { in enc_main() 292 if (cipher && (EVP_CIPHER_mode(cipher) == EVP_CIPH_XTS_MODE)) { in enc_main() 338 if ((str == NULL) && (cipher != NULL) && (hkey == NULL)) { in enc_main() 345 OBJ_nid2ln(EVP_CIPHER_nid(cipher)), in enc_main() 413 if (cipher != NULL) { in enc_main() [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/providers/implementations/kdfs/ |
H A D | krb5kdf.c | 45 static int KRB5KDF(const EVP_CIPHER *cipher, ENGINE *engine, 52 PROV_CIPHER cipher; member 89 ossl_prov_cipher_reset(&ctx->cipher); in krb5kdf_reset() 109 const EVP_CIPHER *cipher; in krb5kdf_derive() local 115 cipher = ossl_prov_cipher_cipher(&ctx->cipher); in krb5kdf_derive() 116 if (cipher == NULL) { in krb5kdf_derive() 128 engine = ossl_prov_cipher_engine(&ctx->cipher); in krb5kdf_derive() 129 return KRB5KDF(cipher, engine, ctx->key, ctx->key_len, in krb5kdf_derive() 143 if (!ossl_prov_cipher_load_from_params(&ctx->cipher, params, provctx)) in krb5kdf_set_ctx_params() 174 const EVP_CIPHER *cipher; in krb5kdf_get_ctx_params() local [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/ |
H A D | SSL_CIPHER_get_name.pod | 26 const char *SSL_CIPHER_get_name(const SSL_CIPHER *cipher); 27 const char *SSL_CIPHER_standard_name(const SSL_CIPHER *cipher); 29 int SSL_CIPHER_get_bits(const SSL_CIPHER *cipher, int *alg_bits); 30 const char *SSL_CIPHER_get_version(const SSL_CIPHER *cipher); 31 char *SSL_CIPHER_description(const SSL_CIPHER *cipher, char *buf, int size); 44 SSL_CIPHER_get_name() returns a pointer to the name of B<cipher>. If the 45 B<cipher> is NULL, it returns "(NONE)". 48 B<cipher>. If the B<cipher> is NULL, it returns "(NONE)". If the B<cipher> 49 has no standard name, it returns B<NULL>. If B<cipher> was defined in both 57 SSL_CIPHER_get_bits() returns the number of secret bits used for B<cipher>. [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/test/ |
H A D | afalgtest.c | 31 const EVP_CIPHER *cipher; in test_afalg_aes_cbc() local 68 cipher = EVP_aes_128_cbc(); in test_afalg_aes_cbc() 72 cipher = EVP_aes_192_cbc(); in test_afalg_aes_cbc() 76 cipher = EVP_aes_256_cbc(); in test_afalg_aes_cbc() 80 cipher = NULL; in test_afalg_aes_cbc() 85 if (!TEST_true(EVP_CipherInit_ex(ctx, cipher, e, key, iv, 1)) in test_afalg_aes_cbc() 95 || !TEST_true(EVP_CipherInit_ex(ctx, cipher, e, key, iv, 0)) in test_afalg_aes_cbc() 115 const EVP_CIPHER * cipher; in test_pr16743() local 120 cipher = ENGINE_get_cipher(e, NID_aes_128_cbc); in test_pr16743() 122 if (cipher != NULL && ctx != NULL) in test_pr16743() [all …]
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/test/ |
H A D | afalgtest.c | 28 const EVP_CIPHER *cipher; in test_afalg_aes_cbc() local 53 cipher = EVP_aes_128_cbc(); in test_afalg_aes_cbc() 57 cipher = EVP_aes_192_cbc(); in test_afalg_aes_cbc() 61 cipher = EVP_aes_256_cbc(); in test_afalg_aes_cbc() 65 cipher = NULL; in test_afalg_aes_cbc() 70 if (!TEST_true(EVP_CipherInit_ex(ctx, cipher, e, key, iv, 1)) in test_afalg_aes_cbc() 80 || !TEST_true(EVP_CipherInit_ex(ctx, cipher, e, key, iv, 0)) in test_afalg_aes_cbc() 100 const EVP_CIPHER * cipher; in test_pr16743() local 105 cipher = ENGINE_get_cipher(e, NID_aes_128_cbc); in test_pr16743() 107 if (cipher != NULL && ctx != NULL) in test_pr16743() [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man1/ |
H A D | openssl-ciphers.pod.in | 6 openssl-ciphers - SSL cipher display and cipher list command 31 This command converts textual OpenSSL cipher lists into 32 ordered SSL cipher preference lists. It can be used to 48 minimum and maximum protocol version. This is closer to the actual cipher list 64 When combined with B<-s> includes cipher suites which require PSK. 68 When combined with B<-s> includes cipher suites which require SRP. This option 73 Verbose output: For each cipher suite, list details as provided by 78 Like B<-v>, but include the official cipher suite values in hex. 89 Precede each cipher suite by its standard name. 93 Convert a standard cipher I<name> to its OpenSSL name. [all …]
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man1/ |
H A D | ciphers.pod | 6 ciphers - SSL cipher display and cipher list tool 30 The B<ciphers> command converts textual OpenSSL cipher lists into ordered 31 SSL cipher preference lists. It can be used as a test tool to determine 45 minimum and maximum protocol version. This is closer to the actual cipher list 61 When combined with B<-s> includes cipher suites which require PSK. 65 When combined with B<-s> includes cipher suites which require SRP. 69 Verbose output: For each cipher suite, list details as provided by 74 Like B<-v>, but include the official cipher suite values in hex. 85 Precede each cipher suite by its standard name. 89 Convert a standard cipher B<name> to its OpenSSL name. [all …]
|