mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
gpgsm: Support ECDSA in de-vs mode.
* common/compliance.h (PK_ALGO_FLAG_ECC18): New. * common/compliance.c (gnupg_pk_is_allowed): Implement. * sm/decrypt.c (gpgsm_decrypt): Pass new flag. * sm/sign.c (gpgsm_sign): Ditto. * sm/verify.c (gpgsm_verify): Ditto. -- GnuPG-bug-id: 6802
This commit is contained in:
parent
bf7b785b0e
commit
3572b19fbd
2
NEWS
2
NEWS
@ -1,6 +1,8 @@
|
|||||||
Noteworthy changes in version 2.4.4 (unreleased)
|
Noteworthy changes in version 2.4.4 (unreleased)
|
||||||
------------------------------------------------
|
------------------------------------------------
|
||||||
|
|
||||||
|
* gpgsm: Support ECDSA in de-vs compliance mode. [T6802]
|
||||||
|
|
||||||
* Fix garbled time output in non-English Windows. [T6741]
|
* Fix garbled time output in non-English Windows. [T6741]
|
||||||
|
|
||||||
Release-info: https://dev.gnupg.org/T6578
|
Release-info: https://dev.gnupg.org/T6578
|
||||||
|
@ -256,6 +256,13 @@ gnupg_pk_is_allowed (enum gnupg_compliance_mode compliance,
|
|||||||
if (! initialized)
|
if (! initialized)
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
|
/* Map the the generic ECC algo to ECDSA if requested. */
|
||||||
|
if ((algo_flags & PK_ALGO_FLAG_ECC18)
|
||||||
|
&& algo == GCRY_PK_ECC
|
||||||
|
&& (use == PK_USE_VERIFICATION
|
||||||
|
|| use == PK_USE_SIGNING))
|
||||||
|
algo = GCRY_PK_ECDSA;
|
||||||
|
|
||||||
switch (compliance)
|
switch (compliance)
|
||||||
{
|
{
|
||||||
case CO_DE_VS:
|
case CO_DE_VS:
|
||||||
@ -280,7 +287,6 @@ gnupg_pk_is_allowed (enum gnupg_compliance_mode compliance,
|
|||||||
default:
|
default:
|
||||||
log_assert (!"reached");
|
log_assert (!"reached");
|
||||||
}
|
}
|
||||||
(void)algo_flags;
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case PUBKEY_ALGO_DSA:
|
case PUBKEY_ALGO_DSA:
|
||||||
@ -301,7 +307,7 @@ gnupg_pk_is_allowed (enum gnupg_compliance_mode compliance,
|
|||||||
result = (use == PK_USE_DECRYPTION);
|
result = (use == PK_USE_DECRYPTION);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case PUBKEY_ALGO_ECDH:
|
case PUBKEY_ALGO_ECDH: /* Same value as GCRY_PK_ECC, i.e. 18 */
|
||||||
case GCRY_PK_ECDH:
|
case GCRY_PK_ECDH:
|
||||||
if (use == PK_USE_DECRYPTION)
|
if (use == PK_USE_DECRYPTION)
|
||||||
result = 1;
|
result = 1;
|
||||||
@ -549,6 +555,9 @@ gnupg_rng_is_compliant (enum gnupg_compliance_mode compliance)
|
|||||||
int *result;
|
int *result;
|
||||||
int res;
|
int res;
|
||||||
|
|
||||||
|
/* #warning debug code ahead */
|
||||||
|
/* return 1; */
|
||||||
|
|
||||||
result = get_compliance_cache (compliance, 1);
|
result = get_compliance_cache (compliance, 1);
|
||||||
|
|
||||||
if (result && *result != -1)
|
if (result && *result != -1)
|
||||||
|
@ -50,6 +50,7 @@ enum pk_use_case
|
|||||||
|
|
||||||
/* Flags to distinguish public key algorithm variants. */
|
/* Flags to distinguish public key algorithm variants. */
|
||||||
#define PK_ALGO_FLAG_RSAPSS 1 /* Use rsaPSS padding. */
|
#define PK_ALGO_FLAG_RSAPSS 1 /* Use rsaPSS padding. */
|
||||||
|
#define PK_ALGO_FLAG_ECC18 256 /* GCRY_PK_ECC is used in a generic way. */
|
||||||
|
|
||||||
|
|
||||||
int gnupg_pk_is_compliant (enum gnupg_compliance_mode compliance, int algo,
|
int gnupg_pk_is_compliant (enum gnupg_compliance_mode compliance, int algo,
|
||||||
|
@ -1318,7 +1318,8 @@ gpgsm_decrypt (ctrl_t ctrl, int in_fd, estream_t out_fp)
|
|||||||
/* Check compliance. */
|
/* Check compliance. */
|
||||||
if (!gnupg_pk_is_allowed (opt.compliance,
|
if (!gnupg_pk_is_allowed (opt.compliance,
|
||||||
PK_USE_DECRYPTION,
|
PK_USE_DECRYPTION,
|
||||||
pk_algo, 0, NULL, nbits, curve))
|
pk_algo, PK_ALGO_FLAG_ECC18,
|
||||||
|
NULL, nbits, curve))
|
||||||
{
|
{
|
||||||
char kidstr[10+1];
|
char kidstr[10+1];
|
||||||
|
|
||||||
|
@ -835,8 +835,8 @@ gpgsm_sign (ctrl_t ctrl, certlist_t signerlist,
|
|||||||
goto leave;
|
goto leave;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!gnupg_pk_is_allowed (opt.compliance, PK_USE_SIGNING, pk_algo, 0,
|
if (!gnupg_pk_is_allowed (opt.compliance, PK_USE_SIGNING, pk_algo,
|
||||||
NULL, nbits, curve))
|
PK_ALGO_FLAG_ECC18, NULL, nbits, curve))
|
||||||
{
|
{
|
||||||
char kidstr[10+1];
|
char kidstr[10+1];
|
||||||
|
|
||||||
|
@ -503,6 +503,7 @@ gpgsm_verify (ctrl_t ctrl, int in_fd, int data_fd, estream_t out_fp)
|
|||||||
audit_log_i (ctrl->audit, AUDIT_DATA_HASH_ALGO, algo);
|
audit_log_i (ctrl->audit, AUDIT_DATA_HASH_ALGO, algo);
|
||||||
|
|
||||||
/* Check compliance. */
|
/* Check compliance. */
|
||||||
|
pkalgoflags |= PK_ALGO_FLAG_ECC18;
|
||||||
if (! gnupg_pk_is_allowed (opt.compliance, PK_USE_VERIFICATION,
|
if (! gnupg_pk_is_allowed (opt.compliance, PK_USE_VERIFICATION,
|
||||||
pkalgo, pkalgoflags, NULL, nbits, pkcurve))
|
pkalgo, pkalgoflags, NULL, nbits, pkcurve))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user