#include <stdio.h>
#include "cryptlib.h"
#include <openssl/x509.h>
#include <openssl/objects.h>
#include <openssl/evp.h>
#include <openssl/ui.h>
Go to the source code of this file.
|
void | EVP_set_pw_prompt (const char *prompt) |
|
char * | EVP_get_pw_prompt (void) |
|
int | EVP_read_pw_string (char *buf, int len, const char *prompt, int verify) |
|
int | EVP_read_pw_string_min (char *buf, int min, int len, const char *prompt, int verify) |
|
int | EVP_BytesToKey (const EVP_CIPHER *type, const EVP_MD *md, const unsigned char *salt, const unsigned char *data, int datal, int count, unsigned char *key, unsigned char *iv) |
|
int EVP_BytesToKey |
( |
const EVP_CIPHER * |
type, |
|
|
const EVP_MD * |
md, |
|
|
const unsigned char * |
salt, |
|
|
const unsigned char * |
data, |
|
|
int |
datal, |
|
|
int |
count, |
|
|
unsigned char * |
key, |
|
|
unsigned char * |
iv |
|
) |
| |
char* EVP_get_pw_prompt |
( |
void |
| ) |
|
int EVP_read_pw_string |
( |
char * |
buf, |
|
|
int |
len, |
|
|
const char * |
prompt, |
|
|
int |
verify |
|
) |
| |
int EVP_read_pw_string_min |
( |
char * |
buf, |
|
|
int |
min, |
|
|
int |
len, |
|
|
const char * |
prompt, |
|
|
int |
verify |
|
) |
| |
void EVP_set_pw_prompt |
( |
const char * |
prompt | ) |
|