Lines Matching refs:cipher
18 identifier that, in the current API, "lingers". These cipher description +
25 const EVP_CIPHER *cipher = EVP_des_cbc();
26 EVP_EncryptInit(&ctx, cipher, key, iv);
31 cipher = EVP_get_cipherbyname("des_cbc");
32 EVP_EncryptInit(&ctx, cipher, key, iv);
36 looked up based on other identifiers which can be useful for automatic cipher
50 ciphers simultaneously registers cipher *types* and cipher *implementations* -
59 Another sticking point for integrating cipher support into ENGINE is linkage.
90 of "cipher description" and less meaning in terms of "implementation". When an
93 cipher-specific ENGINE code is asked for an ENGINE pointer (a functional
96 ENGINE code will return NULL because no ENGINEs will have had any cipher
113 course, when one of these "private" cipher implementations is hooked into
118 The "cipher-specific ENGINE code" I mentioned is implemented in tb_cipher.c but