diff options
author | Werner Koch <[email protected]> | 2022-06-01 15:55:49 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2022-10-20 10:22:08 +0000 |
commit | 1e69676981ac4849bc687c975da0925d65ee03a8 (patch) | |
tree | 46b2d2681a164d75a173a10150bc2b7cef27e0b3 | |
parent | scd:nks: Some code cleanup. (diff) | |
download | gnupg-1e69676981ac4849bc687c975da0925d65ee03a8.tar.gz gnupg-1e69676981ac4849bc687c975da0925d65ee03a8.zip |
scd:nks: Don't flag the ESIGN keypair EF as encryption capable.
* scd/app-nks.c (filelist): Tweak 0x4531.
--
Actually the certificate has no encryption usage but we should also
tell that via KEYINFO so that this key is never tried to create an
encryption certificate.
(cherry picked from commit 3a2fb1c30633373d17880469e0b84ab2a9524585)
-rw-r--r-- | scd/app-nks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scd/app-nks.c b/scd/app-nks.c index c8b2ac33d..8a99864cb 100644 --- a/scd/app-nks.c +++ b/scd/app-nks.c @@ -158,7 +158,7 @@ static struct { 1, 0xC008, 3, 101 }, /* EF_C.CA.SIG */ { 1, 0xC00E, 3, 111 }, /* EF_C.RCA.SIG */ - { 2, 0x4531, 15, 0, 0xC001, 0,1,1, 0x84}, /* EF_PK.CH.SIG */ + { 2, 0x4531, 15, 0, 0xC001, 0,1,0, 0x84}, /* EF_PK.CH.SIG */ { 2, 0xC000, 15,101 }, /* EF.C.SCA.QES (SubCA) */ { 2, 0xC001, 15,100 }, /* EF.C.ICC.QES (Cert) */ { 2, 0xC00E, 15,111 }, /* EF.C.RCA.QES (RootCA */ |