pkeyutl: allow peerkey for EC_DERIVE to reside on a hardware token (public key for now)
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
2b80d00e3a
commit
3665fa2543
1 changed files with 8 additions and 4 deletions
|
@ -78,7 +78,7 @@ static EVP_PKEY_CTX *init_ctx(int *pkeysize,
|
||||||
int impl);
|
int impl);
|
||||||
|
|
||||||
static int setup_peer(BIO *err, EVP_PKEY_CTX *ctx, int peerform,
|
static int setup_peer(BIO *err, EVP_PKEY_CTX *ctx, int peerform,
|
||||||
const char *file);
|
const char *file, ENGINE* e);
|
||||||
|
|
||||||
static int do_keyop(EVP_PKEY_CTX *ctx, int pkey_op,
|
static int do_keyop(EVP_PKEY_CTX *ctx, int pkey_op,
|
||||||
unsigned char *out, size_t *poutlen,
|
unsigned char *out, size_t *poutlen,
|
||||||
|
@ -149,7 +149,7 @@ int MAIN(int argc, char **argv)
|
||||||
} else if (!strcmp(*argv, "-peerkey")) {
|
} else if (!strcmp(*argv, "-peerkey")) {
|
||||||
if (--argc < 1)
|
if (--argc < 1)
|
||||||
badarg = 1;
|
badarg = 1;
|
||||||
else if (!setup_peer(bio_err, ctx, peerform, *(++argv)))
|
else if (!setup_peer(bio_err, ctx, peerform, *(++argv), e))
|
||||||
badarg = 1;
|
badarg = 1;
|
||||||
} else if (!strcmp(*argv, "-passin")) {
|
} else if (!strcmp(*argv, "-passin")) {
|
||||||
if (--argc < 1)
|
if (--argc < 1)
|
||||||
|
@ -479,16 +479,20 @@ static EVP_PKEY_CTX *init_ctx(int *pkeysize,
|
||||||
}
|
}
|
||||||
|
|
||||||
static int setup_peer(BIO *err, EVP_PKEY_CTX *ctx, int peerform,
|
static int setup_peer(BIO *err, EVP_PKEY_CTX *ctx, int peerform,
|
||||||
const char *file)
|
const char *file, ENGINE* e)
|
||||||
{
|
{
|
||||||
EVP_PKEY *peer = NULL;
|
EVP_PKEY *peer = NULL;
|
||||||
|
ENGINE* engine = NULL;
|
||||||
int ret;
|
int ret;
|
||||||
if (!ctx) {
|
if (!ctx) {
|
||||||
BIO_puts(err, "-peerkey command before -inkey\n");
|
BIO_puts(err, "-peerkey command before -inkey\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
peer = load_pubkey(bio_err, file, peerform, 0, NULL, NULL, "Peer Key");
|
if (peerform == FORMAT_ENGINE)
|
||||||
|
engine = e;
|
||||||
|
|
||||||
|
peer = load_pubkey(bio_err, file, peerform, 0, NULL, engine, "Peer Key");
|
||||||
|
|
||||||
if (!peer) {
|
if (!peer) {
|
||||||
BIO_printf(bio_err, "Error reading peer key %s\n", file);
|
BIO_printf(bio_err, "Error reading peer key %s\n", file);
|
||||||
|
|
Loading…
Reference in a new issue