]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/evp/evp_key.c
Remove the possibility to disable the UI module entirely
[thirdparty/openssl.git] / crypto / evp / evp_key.c
CommitLineData
62867571
RS
1/*
2 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
0f113f3e 3 *
62867571
RS
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
d02b48c6
RE
8 */
9
10#include <stdio.h>
b39fc560 11#include "internal/cryptlib.h"
ec577822
BM
12#include <openssl/x509.h>
13#include <openssl/objects.h>
14#include <openssl/evp.h>
a63d5eaa 15#include <openssl/ui.h>
d02b48c6
RE
16
17/* should be init to zeros. */
18static char prompt_string[80];
19
875a644a 20void EVP_set_pw_prompt(const char *prompt)
0f113f3e
MC
21{
22 if (prompt == NULL)
23 prompt_string[0] = '\0';
24 else {
25 strncpy(prompt_string, prompt, 79);
26 prompt_string[79] = '\0';
27 }
28}
d02b48c6 29
6b691a5c 30char *EVP_get_pw_prompt(void)
0f113f3e
MC
31{
32 if (prompt_string[0] == '\0')
33 return (NULL);
34 else
35 return (prompt_string);
36}
d02b48c6 37
0f113f3e
MC
38/*
39 * For historical reasons, the standard function for reading passwords is in
40 * the DES library -- if someone ever wants to disable DES, this function
41 * will fail
42 */
6b691a5c 43int EVP_read_pw_string(char *buf, int len, const char *prompt, int verify)
0f113f3e
MC
44{
45 return EVP_read_pw_string_min(buf, 0, len, prompt, verify);
46}
a63d5eaa 47
0f113f3e
MC
48int EVP_read_pw_string_min(char *buf, int min, int len, const char *prompt,
49 int verify)
50{
51 int ret;
52 char buff[BUFSIZ];
53 UI *ui;
d02b48c6 54
0f113f3e
MC
55 if ((prompt == NULL) && (prompt_string[0] != '\0'))
56 prompt = prompt_string;
57 ui = UI_new();
90945fa3
MC
58 if (ui == NULL)
59 return -1;
0f113f3e
MC
60 UI_add_input_string(ui, prompt, 0, buf, min,
61 (len >= BUFSIZ) ? BUFSIZ - 1 : len);
62 if (verify)
63 UI_add_verify_string(ui, prompt, 0,
64 buff, min, (len >= BUFSIZ) ? BUFSIZ - 1 : len,
65 buf);
66 ret = UI_process(ui);
67 UI_free(ui);
68 OPENSSL_cleanse(buff, BUFSIZ);
69 return ret;
70}
d02b48c6 71
0f113f3e
MC
72int EVP_BytesToKey(const EVP_CIPHER *type, const EVP_MD *md,
73 const unsigned char *salt, const unsigned char *data,
74 int datal, int count, unsigned char *key,
75 unsigned char *iv)
76{
77a01145 77 EVP_MD_CTX *c;
0f113f3e
MC
78 unsigned char md_buf[EVP_MAX_MD_SIZE];
79 int niv, nkey, addmd = 0;
80 unsigned int mds = 0, i;
81 int rv = 0;
135727ab
RL
82 nkey = EVP_CIPHER_key_length(type);
83 niv = EVP_CIPHER_iv_length(type);
0f113f3e
MC
84 OPENSSL_assert(nkey <= EVP_MAX_KEY_LENGTH);
85 OPENSSL_assert(niv <= EVP_MAX_IV_LENGTH);
d02b48c6 86
0f113f3e
MC
87 if (data == NULL)
88 return (nkey);
d02b48c6 89
bfb0641f 90 c = EVP_MD_CTX_new();
77a01145
RL
91 if (c == NULL)
92 goto err;
0f113f3e 93 for (;;) {
77a01145 94 if (!EVP_DigestInit_ex(c, md, NULL))
3f6c7691 95 goto err;
0f113f3e 96 if (addmd++)
77a01145 97 if (!EVP_DigestUpdate(c, &(md_buf[0]), mds))
0f113f3e 98 goto err;
77a01145 99 if (!EVP_DigestUpdate(c, data, datal))
0f113f3e
MC
100 goto err;
101 if (salt != NULL)
77a01145 102 if (!EVP_DigestUpdate(c, salt, PKCS5_SALT_LEN))
0f113f3e 103 goto err;
77a01145 104 if (!EVP_DigestFinal_ex(c, &(md_buf[0]), &mds))
0f113f3e 105 goto err;
d02b48c6 106
0f113f3e 107 for (i = 1; i < (unsigned int)count; i++) {
77a01145 108 if (!EVP_DigestInit_ex(c, md, NULL))
0f113f3e 109 goto err;
77a01145 110 if (!EVP_DigestUpdate(c, &(md_buf[0]), mds))
0f113f3e 111 goto err;
77a01145 112 if (!EVP_DigestFinal_ex(c, &(md_buf[0]), &mds))
0f113f3e
MC
113 goto err;
114 }
115 i = 0;
116 if (nkey) {
117 for (;;) {
118 if (nkey == 0)
119 break;
120 if (i == mds)
121 break;
122 if (key != NULL)
123 *(key++) = md_buf[i];
124 nkey--;
125 i++;
126 }
127 }
128 if (niv && (i != mds)) {
129 for (;;) {
130 if (niv == 0)
131 break;
132 if (i == mds)
133 break;
134 if (iv != NULL)
135 *(iv++) = md_buf[i];
136 niv--;
137 i++;
138 }
139 }
140 if ((nkey == 0) && (niv == 0))
141 break;
142 }
135727ab 143 rv = EVP_CIPHER_key_length(type);
0f113f3e 144 err:
bfb0641f 145 EVP_MD_CTX_free(c);
3f6c7691 146 OPENSSL_cleanse(md_buf, sizeof(md_buf));
0f113f3e
MC
147 return rv;
148}