You can subscribe to this list here.
2013 |
Jan
(18) |
Feb
(20) |
Mar
(15) |
Apr
(5) |
May
(7) |
Jun
(3) |
Jul
(4) |
Aug
(20) |
Sep
(10) |
Oct
(12) |
Nov
(12) |
Dec
(7) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2014 |
Jan
(12) |
Feb
(8) |
Mar
(3) |
Apr
(7) |
May
(12) |
Jun
(19) |
Jul
(1) |
Aug
(5) |
Sep
(9) |
Oct
(11) |
Nov
(13) |
Dec
(20) |
2015 |
Jan
(12) |
Feb
(25) |
Mar
(33) |
Apr
(37) |
May
(36) |
Jun
(2) |
Jul
(18) |
Aug
(31) |
Sep
(98) |
Oct
(50) |
Nov
(25) |
Dec
(34) |
2016 |
Jan
(95) |
Feb
(35) |
Mar
(78) |
Apr
(12) |
May
(11) |
Jun
(20) |
Jul
(28) |
Aug
(21) |
Sep
(30) |
Oct
(29) |
Nov
(15) |
Dec
(15) |
2017 |
Jan
(29) |
Feb
(17) |
Mar
(34) |
Apr
(28) |
May
(12) |
Jun
(25) |
Jul
(39) |
Aug
(14) |
Sep
(12) |
Oct
(38) |
Nov
(28) |
Dec
(6) |
2018 |
Jan
(15) |
Feb
(22) |
Mar
(27) |
Apr
(71) |
May
(78) |
Jun
(47) |
Jul
(24) |
Aug
(63) |
Sep
(43) |
Oct
(34) |
Nov
(27) |
Dec
(18) |
2019 |
Jan
(51) |
Feb
(17) |
Mar
(48) |
Apr
(46) |
May
(25) |
Jun
(9) |
Jul
(14) |
Aug
(46) |
Sep
(18) |
Oct
(25) |
Nov
(26) |
Dec
(25) |
2020 |
Jan
(28) |
Feb
(30) |
Mar
(20) |
Apr
(69) |
May
(40) |
Jun
(16) |
Jul
(13) |
Aug
(9) |
Sep
(17) |
Oct
(40) |
Nov
(55) |
Dec
(6) |
2021 |
Jan
(44) |
Feb
(13) |
Mar
(33) |
Apr
(31) |
May
(32) |
Jun
(10) |
Jul
(9) |
Aug
(27) |
Sep
(33) |
Oct
(7) |
Nov
(14) |
Dec
(17) |
2022 |
Jan
(25) |
Feb
(11) |
Mar
(42) |
Apr
(14) |
May
(18) |
Jun
(3) |
Jul
(10) |
Aug
(41) |
Sep
(12) |
Oct
(13) |
Nov
(18) |
Dec
(9) |
2023 |
Jan
(10) |
Feb
(18) |
Mar
(25) |
Apr
(27) |
May
(16) |
Jun
(26) |
Jul
(9) |
Aug
(29) |
Sep
(17) |
Oct
(24) |
Nov
(18) |
Dec
(16) |
2024 |
Jan
(23) |
Feb
(55) |
Mar
(40) |
Apr
(17) |
May
(15) |
Jun
(12) |
Jul
(12) |
Aug
(6) |
Sep
(15) |
Oct
(16) |
Nov
(29) |
Dec
(26) |
2025 |
Jan
(29) |
Feb
(37) |
Mar
(24) |
Apr
(35) |
May
(38) |
Jun
(20) |
Jul
(7) |
Aug
(10) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Doug E. <no...@gi...> - 2020-11-25 07:50:52
|
Branch: refs/heads/master Home: https://github.com/OpenSC/OpenSC Commit: 483e1531825d539d2faa8b6445b81b749be6acde https://github.com/OpenSC/OpenSC/commit/483e1531825d539d2faa8b6445b81b749be6acde Author: Doug Engert <dee...@gm...> Date: 2020-11-25 (Wed, 25 Nov 2020) Changed paths: M src/libopensc/asn1.h Log Message: ----------- ASN1 cleanup part 1 ASN1 tags are represented in two many ways within OpenSC. This is a trivial change to simplify one aspect of this. It also makes the code more readable. SC_ASN1_CLASS_MASK, SC_ASN1_APP, SC_ASN1_CTX, SC_ASN1_PRV, SC_ASN1_CONS are changed, and SC_ASN1_CLASS_MASK is added. These then align with the bits defined by SC_ASN1_TAG_CLASS, SC_ASN1_TAG_APPLICATION, SC_ASN1_TAG_CONTEXT, SC_ASN1_TAG_PRIVATE, and SC_ASN1_TAG_CONSTRUCTED. (SC_ASN1_UNI and SC_ASN1_TAG_UNIVERSAL are both 0x00 thus no change is needed). (No sign of a right shift of SC_ASN1_CTX or SC_ASN1_PRV causeing problems has been seen in the code.) If found, can be solved.) Close examination of the OpenSC code base shows all uses of tags used by routines and sc_asn1_entry use the defines. This could allows 26 lines of code in sc_asn1_skip_tag used to test the 3 CLASS and CONSTRUCTED bits to be replaced by: if (((cla << 24) | tag) != tag_in) return NULL; The 26 lines still work as will any other code in OpenSC that tests the bits using the defines. It also allows new code to be simplified. Problem identified while looking at better way to check response on GET_DATA (0xCB) that returns TLV as used in card-piv.c Changes tested using pkcs11-tool --test --login with PIV, SC_HSM and OpenPGP cards. |
From: Frank M. <no...@gi...> - 2020-11-24 12:01:16
|
Branch: refs/tags/0.21.0 Home: https://github.com/OpenSC/OpenSC |
From: Frank M. <no...@gi...> - 2020-11-24 09:13:18
|
Branch: refs/heads/master Home: https://github.com/OpenSC/OpenSC Commit: e13294b085b7c126bf037d9b94903a2a41b23f46 https://github.com/OpenSC/OpenSC/commit/e13294b085b7c126bf037d9b94903a2a41b23f46 Author: Frank Morgner <fra...@gm...> Date: 2020-11-23 (Mon, 23 Nov 2020) Changed paths: M .travis.yml Log Message: ----------- speedup macOS build brew update is just dead slow on older travis images Commit: 30180986a08cf71fe4af4b50251a8bb5b1ab95af https://github.com/OpenSC/OpenSC/commit/30180986a08cf71fe4af4b50251a8bb5b1ab95af Author: Frank Morgner <fra...@gm...> Date: 2020-11-24 (Tue, 24 Nov 2020) Changed paths: M NEWS Log Message: ----------- update date in NEWS Compare: https://github.com/OpenSC/OpenSC/compare/0e55a3497c4b...30180986a08c |
From: Frank M. <no...@gi...> - 2020-11-23 20:59:28
|
Branch: refs/heads/speedup Home: https://github.com/OpenSC/OpenSC Commit: 16b6786930dbcd9ff328b7e3295e47fb7d7b84d9 https://github.com/OpenSC/OpenSC/commit/16b6786930dbcd9ff328b7e3295e47fb7d7b84d9 Author: Frank Morgner <fra...@gm...> Date: 2020-11-23 (Mon, 23 Nov 2020) Changed paths: M .travis.yml Log Message: ----------- brew |
From: Frank M. <no...@gi...> - 2020-11-23 20:43:46
|
Branch: refs/heads/speedup Home: https://github.com/OpenSC/OpenSC Commit: ef8a4980fbf1773c6831fc772fc2ff72499f27e7 https://github.com/OpenSC/OpenSC/commit/ef8a4980fbf1773c6831fc772fc2ff72499f27e7 Author: Frank Morgner <fra...@gm...> Date: 2020-11-23 (Mon, 23 Nov 2020) Changed paths: M .travis.yml Log Message: ----------- a |
From: Frank M. <no...@gi...> - 2020-11-23 19:37:50
|
Branch: refs/heads/speedup Home: https://github.com/OpenSC/OpenSC Commit: af399a6f2e356b9ec2306e4aa10dc997ad92f96f https://github.com/OpenSC/OpenSC/commit/af399a6f2e356b9ec2306e4aa10dc997ad92f96f Author: Frank Morgner <fra...@gm...> Date: 2020-11-23 (Mon, 23 Nov 2020) Changed paths: M .travis.yml Log Message: ----------- a |
From: Frank M. <no...@gi...> - 2020-11-23 16:27:21
|
Branch: refs/heads/speedup Home: https://github.com/OpenSC/OpenSC Commit: af94c657f8164cf7236cf75d0f982c711be927a7 https://github.com/OpenSC/OpenSC/commit/af94c657f8164cf7236cf75d0f982c711be927a7 Author: Frank Morgner <fra...@gm...> Date: 2020-11-23 (Mon, 23 Nov 2020) Changed paths: M .travis.yml Log Message: ----------- a |
From: Frank M. <no...@gi...> - 2020-11-23 16:11:28
|
Branch: refs/heads/speedup Home: https://github.com/OpenSC/OpenSC Commit: 12431f99aab39cfff4d2b3a01a0d682d1582bcb8 https://github.com/OpenSC/OpenSC/commit/12431f99aab39cfff4d2b3a01a0d682d1582bcb8 Author: Frank Morgner <fra...@gm...> Date: 2020-11-23 (Mon, 23 Nov 2020) Changed paths: M .travis.yml Log Message: ----------- speedupjk |
From: Frank M. <no...@gi...> - 2020-11-23 15:59:13
|
Branch: refs/heads/speedup Home: https://github.com/OpenSC/OpenSC Commit: af103572bfe7a9e053f5e9cb153bb478db662d27 https://github.com/OpenSC/OpenSC/commit/af103572bfe7a9e053f5e9cb153bb478db662d27 Author: Frank Morgner <fra...@gm...> Date: 2020-11-23 (Mon, 23 Nov 2020) Changed paths: M .travis.yml Log Message: ----------- a |
From: Frank M. <no...@gi...> - 2020-11-23 15:58:07
|
Branch: refs/heads/speedup Home: https://github.com/OpenSC/OpenSC Commit: 93429f821ce5034b64c3803056176a7f158bf02d https://github.com/OpenSC/OpenSC/commit/93429f821ce5034b64c3803056176a7f158bf02d Author: Frank Morgner <fra...@gm...> Date: 2020-11-23 (Mon, 23 Nov 2020) Changed paths: M .travis.yml Log Message: ----------- a Commit: 2ca4a67ac27dd377d8095c3bda579029c2280f90 https://github.com/OpenSC/OpenSC/commit/2ca4a67ac27dd377d8095c3bda579029c2280f90 Author: Frank Morgner <fra...@gm...> Date: 2020-11-23 (Mon, 23 Nov 2020) Changed paths: M .travis.yml Log Message: ----------- a Compare: https://github.com/OpenSC/OpenSC/compare/5af51960b033...2ca4a67ac27d |
From: Frank M. <no...@gi...> - 2020-11-23 15:30:39
|
Branch: refs/heads/speedup Home: https://github.com/OpenSC/OpenSC Commit: 5af51960b033090313716411674b35395ff761d2 https://github.com/OpenSC/OpenSC/commit/5af51960b033090313716411674b35395ff761d2 Author: Frank Morgner <fra...@gm...> Date: 2020-11-23 (Mon, 23 Nov 2020) Changed paths: M .travis.yml Log Message: ----------- a |
From: Frank M. <no...@gi...> - 2020-11-23 15:04:22
|
Branch: refs/heads/speedup Home: https://github.com/OpenSC/OpenSC Commit: 678c5fe2b57a55bb83815fdbd33b4ccf5b92cadb https://github.com/OpenSC/OpenSC/commit/678c5fe2b57a55bb83815fdbd33b4ccf5b92cadb Author: Frank Morgner <fra...@gm...> Date: 2020-11-23 (Mon, 23 Nov 2020) Changed paths: M .travis.yml Log Message: ----------- bugfix |
From: Frank M. <no...@gi...> - 2020-11-23 13:39:32
|
Branch: refs/heads/speedup Home: https://github.com/OpenSC/OpenSC Commit: 40657b7ac6c9814a20b99ce04f4db5fa68e82ced https://github.com/OpenSC/OpenSC/commit/40657b7ac6c9814a20b99ce04f4db5fa68e82ced Author: Frank Morgner <fra...@gm...> Date: 2020-11-23 (Mon, 23 Nov 2020) Changed paths: M .travis.yml Log Message: ----------- bugfux |
From: Frank M. <no...@gi...> - 2020-11-23 13:19:31
|
Branch: refs/heads/speedup Home: https://github.com/OpenSC/OpenSC Commit: db76ee13ad7e8c4d927e6bbb6cd1f5039c85c0b9 https://github.com/OpenSC/OpenSC/commit/db76ee13ad7e8c4d927e6bbb6cd1f5039c85c0b9 Author: Frank Morgner <fra...@gm...> Date: 2020-11-23 (Mon, 23 Nov 2020) Changed paths: M .travis.yml Log Message: ----------- speedup macOS build |
From: Jakub J. <no...@gi...> - 2020-11-22 19:30:54
|
Branch: refs/heads/master Home: https://github.com/OpenSC/libp11 Commit: d03aa89abe88c4f8696d1279c858733ca9a0ba13 https://github.com/OpenSC/libp11/commit/d03aa89abe88c4f8696d1279c858733ca9a0ba13 Author: Jakub Jelen <jj...@re...> Date: 2020-11-22 (Sun, 22 Nov 2020) Changed paths: M tests/list-tokens.c Log Message: ----------- tests: Remove unused variable |
From: Frank M. <no...@gi...> - 2020-11-22 00:18:56
|
Branch: refs/tags/0.21.0 Home: https://github.com/OpenSC/OpenSC |
From: Frank M. <no...@gi...> - 2020-11-20 21:48:35
|
Branch: refs/heads/master Home: https://github.com/OpenSC/OpenSC Commit: 0e55a3497c4bbae52ebc138e6ebc570b481524de https://github.com/OpenSC/OpenSC/commit/0e55a3497c4bbae52ebc138e6ebc570b481524de Author: Frank Morgner <fra...@gm...> Date: 2020-11-20 (Fri, 20 Nov 2020) Changed paths: M NEWS Log Message: ----------- fixed date in NEWS |
From: Frank M. <no...@gi...> - 2020-11-20 21:47:49
|
Branch: refs/tags/0.21.0 Home: https://github.com/OpenSC/OpenSC |
From: Frank M. <no...@gi...> - 2020-11-20 21:44:29
|
Branch: refs/heads/master Home: https://github.com/OpenSC/OpenSC Commit: 96a9fcd6285ae7908268c11c5346b74d227642f5 https://github.com/OpenSC/OpenSC/commit/96a9fcd6285ae7908268c11c5346b74d227642f5 Author: Frank Morgner <fra...@gm...> Date: 2020-11-20 (Fri, 20 Nov 2020) Changed paths: M NEWS M configure.ac Log Message: ----------- prepare 0.21.0 |
From: Jakub J. <no...@gi...> - 2020-11-18 22:03:06
|
Branch: refs/heads/master Home: https://github.com/OpenSC/OpenSC Commit: d3451faa2190e9f4c12bb00adf00149b7af1d18d https://github.com/OpenSC/OpenSC/commit/d3451faa2190e9f4c12bb00adf00149b7af1d18d Author: Jakub Jelen <jj...@re...> Date: 2020-11-18 (Wed, 18 Nov 2020) Changed paths: M src/libopensc/pkcs15-tcos.c Log Message: ----------- tcos: Reformat insert_key Commit: b5b1afe401bb6a04783ca36b5253948d6cf5ee48 https://github.com/OpenSC/OpenSC/commit/b5b1afe401bb6a04783ca36b5253948d6cf5ee48 Author: Jakub Jelen <jj...@re...> Date: 2020-11-18 (Wed, 18 Nov 2020) Changed paths: M src/libopensc/pkcs15-tcos.c Log Message: ----------- tcos: Avoid reading behind the end of allocated buffer Thanks oss-fuzz https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=27480 Commit: 5eccebb4eee1b041f8ed67741d6d1a7424be5a8a https://github.com/OpenSC/OpenSC/commit/5eccebb4eee1b041f8ed67741d6d1a7424be5a8a Author: Jakub Jelen <jj...@re...> Date: 2020-11-18 (Wed, 18 Nov 2020) Changed paths: M src/libopensc/pkcs15-cert.c Log Message: ----------- pkcs15-cert: Free memory on error Thanks oss-fuzz https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=26145 Commit: c8b2e8271350ad3a5a4ebb5824f387b727d424f7 https://github.com/OpenSC/OpenSC/commit/c8b2e8271350ad3a5a4ebb5824f387b727d424f7 Author: Jakub Jelen <jj...@re...> Date: 2020-11-18 (Wed, 18 Nov 2020) Changed paths: M src/libopensc/pkcs15-oberthur.c Log Message: ----------- oberthur: Once again, fix the error check The shared codition was executed but the condition in LOG_TEST_RET was not met in case of the acl was null. Thanks oss-fuzz https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=25962 Commit: 445c651549eefff771fe96a8499fc5ecd0190549 https://github.com/OpenSC/OpenSC/commit/445c651549eefff771fe96a8499fc5ecd0190549 Author: Jakub Jelen <jj...@re...> Date: 2020-11-18 (Wed, 18 Nov 2020) Changed paths: M src/libopensc/card-authentic.c Log Message: ----------- authentic: Improve debugging logs Commit: 65461e4eb5aff766b3137022d3af61e2b66a6076 https://github.com/OpenSC/OpenSC/commit/65461e4eb5aff766b3137022d3af61e2b66a6076 Author: Jakub Jelen <jj...@re...> Date: 2020-11-18 (Wed, 18 Nov 2020) Changed paths: M src/libopensc/card-authentic.c Log Message: ----------- authentic: Avoid accessing behind buffers Thanks oss-fuzz https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=26900 https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=26860 Commit: 412372b02412c05612bea7f53b01134a3fc435b8 https://github.com/OpenSC/OpenSC/commit/412372b02412c05612bea7f53b01134a3fc435b8 Author: Jakub Jelen <jj...@re...> Date: 2020-11-18 (Wed, 18 Nov 2020) Changed paths: M src/libopensc/pkcs15-tcos.c Log Message: ----------- tcos: Make sure we have at least two bytes to dive into the cycle Compare: https://github.com/OpenSC/OpenSC/compare/4554d6911912...412372b02412 |
From: Frank M. <no...@gi...> - 2020-11-18 12:23:50
|
Branch: refs/heads/master Home: https://github.com/OpenSC/OpenSC Commit: 4554d69119127b725e768b62270ad04cc23e201a https://github.com/OpenSC/OpenSC/commit/4554d69119127b725e768b62270ad04cc23e201a Author: Frank Morgner <fra...@gm...> Date: 2020-11-18 (Wed, 18 Nov 2020) Changed paths: M .travis.yml Log Message: ----------- code signing is not available in pull requests (since this is untrusted code) |
From: Alon Bar-L. <no...@gi...> - 2020-11-17 18:53:35
|
Branch: refs/heads/master Home: https://github.com/OpenSC/pkcs11-helper Commit: 74b1e9b4ce5921fe82c93a64ebceca53e5a15532 https://github.com/OpenSC/pkcs11-helper/commit/74b1e9b4ce5921fe82c93a64ebceca53e5a15532 Author: Alon Bar-Lev <alo...@gm...> Date: 2020-11-17 (Tue, 17 Nov 2020) Changed paths: M ChangeLog M lib/pkcs11h-core.c Log Message: ----------- core: fix plug&play when no threading and no safefork Commit: 564a582d600c7eec7b8e303a22b575fd52622174 https://github.com/OpenSC/pkcs11-helper/commit/564a582d600c7eec7b8e303a22b575fd52622174 Author: Alon Bar-Lev <alo...@gm...> Date: 2020-11-17 (Tue, 17 Nov 2020) Changed paths: M ChangeLog M configure.ac Log Message: ----------- pkcs11-helper-1.27 Commit: 9fa150329535e1cccb5a3451b2249365571b66d7 https://github.com/OpenSC/pkcs11-helper/commit/9fa150329535e1cccb5a3451b2249365571b66d7 Author: Alon Bar-Lev <alo...@gm...> Date: 2020-11-17 (Tue, 17 Nov 2020) Changed paths: M ChangeLog M configure.ac Log Message: ----------- post pkcs11-helper-1.27 Compare: https://github.com/OpenSC/pkcs11-helper/compare/95efa3352a59...9fa150329535 |
From: Alon Bar-L. <no...@gi...> - 2020-11-17 18:53:22
|
Branch: refs/tags/pkcs11-helper-1.27 Home: https://github.com/OpenSC/pkcs11-helper |
From: Frank M. <no...@gi...> - 2020-11-12 10:16:44
|
Branch: refs/tags/0.21.0-rc2 Home: https://github.com/OpenSC/OpenSC |
From: Frank M. <no...@gi...> - 2020-11-12 10:15:38
|
Branch: refs/tags/0.21.0-rc2 Home: https://github.com/OpenSC/OpenSC |