Home
last modified time | relevance | path

Searched defs:evp_cipher_st (Results 1 – 3 of 3) sorted by relevance

/third_party/openssl/include/crypto/
Devp.h290 struct evp_cipher_st { struct
291 int nid;
293 int block_size;
295 int key_len;
296 int iv_len;
300 unsigned long flags;
302 int origin;
304 int (*init) (EVP_CIPHER_CTX *ctx, const unsigned char *key,
307 int (*do_cipher) (EVP_CIPHER_CTX *ctx, unsigned char *out,
310 int (*cleanup) (EVP_CIPHER_CTX *);
[all …]
/third_party/openssl/ohos_lite/include/crypto/
Devp.h131 struct evp_cipher_st { struct
132 int nid;
133 int block_size;
135 int key_len;
136 int iv_len;
138 unsigned long flags;
140 int (*init) (EVP_CIPHER_CTX *ctx, const unsigned char *key,
143 int (*do_cipher) (EVP_CIPHER_CTX *ctx, unsigned char *out,
146 int (*cleanup) (EVP_CIPHER_CTX *);
148 int ctx_size;
[all …]
/third_party/python/Lib/lib2to3/tests/data/
Dinfinite_recursion.py667 class evp_cipher_st(Structure): class