Page MenuHome GnuPG

gniibe (NIIBE Yutaka)
UserAdministrator

Projects (9)

User Details

User Since
Mar 27 2017, 4:47 PM (413 w, 1 d)
Roles
Administrator
Availability
Busy Busy until Feb 16 2031.

Recent Activity

Yesterday

gniibe added a comment to T7519: libgcrypt: (EC)DSA signature generation should be constant-time.

One more change for _gcry_dsa_gen_k in rC54caef02afa9: cipher:(EC)DSA: Simply use mpi_clear_highbit in _gcry_dsa_gen_k.

Tue, Feb 25, 3:47 AM · libgcrypt, Bug Report
gniibe committed rC54caef02afa9: cipher:(EC)DSA: Simply use mpi_clear_highbit in _gcry_dsa_gen_k. (authored by gniibe).
cipher:(EC)DSA: Simply use mpi_clear_highbit in _gcry_dsa_gen_k.
Tue, Feb 25, 3:46 AM
gniibe committed rCc1da86e45a6e: mpi: Avoid normalizing MPI in _gcry_mpi_invm. (authored by gniibe).
mpi: Avoid normalizing MPI in _gcry_mpi_invm.
Tue, Feb 25, 3:45 AM
gniibe added a comment to T7519: libgcrypt: (EC)DSA signature generation should be constant-time.

One more change for mpi_invm in rCc1da86e45a6e: mpi: Avoid normalizing MPI in _gcry_mpi_invm.

Tue, Feb 25, 3:25 AM · libgcrypt, Bug Report

Thu, Feb 20

gniibe committed rC88ae76d069c3: cipher,mpi: Expose some MPI helper functions by mpi.h. (authored by gniibe).
cipher,mpi: Expose some MPI helper functions by mpi.h.
Thu, Feb 20, 7:23 AM

Wed, Feb 19

gniibe changed the status of T7519: libgcrypt: (EC)DSA signature generation should be constant-time from Open to Testing.

All changes are pushed to master.

Wed, Feb 19, 5:36 AM · libgcrypt, Bug Report
gniibe changed the status of T7490: libgcrypt: constant-time modular exponentiation, a subtask of T3264: Possible RSA improvement, from Open to Testing.
Wed, Feb 19, 5:35 AM · libgcrypt
gniibe changed the status of T7490: libgcrypt: constant-time modular exponentiation from Open to Testing.

Pushed the changes by the commit rC2039d93289db: mpi: Add MPI helper modular exponentiation, Least Leak Intended.

Wed, Feb 19, 5:35 AM · libgcrypt
gniibe committed rC58aca75a295d: mpi: Add a comment on _gcry_mpih_lookup_lli. (authored by gniibe).
mpi: Add a comment on _gcry_mpih_lookup_lli.
Wed, Feb 19, 3:02 AM
gniibe committed rCbd53c51b0338: mpi: Fix _gcry_mpih_add_lli, as macro. (authored by gniibe).
mpi: Fix _gcry_mpih_add_lli, as macro.
Wed, Feb 19, 2:35 AM
gniibe committed rC8fd2aab881c7: mpi: Add MPH helper of table lookup, Least Leak Intended. (authored by gniibe).
mpi: Add MPH helper of table lookup, Least Leak Intended.
Wed, Feb 19, 1:03 AM
gniibe committed rC2039d93289db: mpi: Add MPI helper modular exponentiation, Least Leak Intended. (authored by gniibe).
mpi: Add MPI helper modular exponentiation, Least Leak Intended.
Wed, Feb 19, 1:03 AM

Tue, Feb 18

gniibe committed rCbb5e893456b1: cipher:(EC)DSA: Fix _gcry_dsa_gen_*k not to normalize MPI. (authored by gniibe).
cipher:(EC)DSA: Fix _gcry_dsa_gen_*k not to normalize MPI.
Tue, Feb 18, 3:18 AM
gniibe committed rC0b794c208db3: cipher:(EC)DSA: Avoid MPI normalize by mpi_rshift. (authored by gniibe).
cipher:(EC)DSA: Avoid MPI normalize by mpi_rshift.
Tue, Feb 18, 3:18 AM
gniibe committed rCd05cdb31689a: cipher:(EC)DSA: Fix _gcry_dsa_modify_k to least leak. (authored by gniibe).
cipher:(EC)DSA: Fix _gcry_dsa_modify_k to least leak.
Tue, Feb 18, 3:18 AM

Mon, Feb 17

gniibe committed rC58e72af4eac4: mpi: Add _gcry_mpih_add_lli. (authored by gniibe).
mpi: Add _gcry_mpih_add_lli.
Mon, Feb 17, 6:35 AM
gniibe committed rC459a6c9c81ee: mpi: Add _gcry_mpih_cmp_lli, Least Leak Intended. (authored by gniibe).
mpi: Add _gcry_mpih_cmp_lli, Least Leak Intended.
Mon, Feb 17, 6:35 AM
gniibe committed rC06de5bc27753: mpi: Add _gcry_mpih_add_1_lli as Least Leak Intended. (authored by gniibe).
mpi: Add _gcry_mpih_add_1_lli as Least Leak Intended.
Mon, Feb 17, 6:35 AM
gniibe committed rC13a71215c255: md: Make SHA1 non-FIPS and differentiate in the SLI (authored by Lucas Mulling <lucas.mulling@suse.com>).
md: Make SHA1 non-FIPS and differentiate in the SLI
Mon, Feb 17, 5:23 AM

Fri, Feb 14

gniibe added a comment to T7519: libgcrypt: (EC)DSA signature generation should be constant-time.

Use of mpi_cmp is now being fixed, by providing _gcry_mpih_cmp_lli function.
Along with that, we need to fix use of mpi_cmp_ui, since it's skips earlier depending its limbs.

diff --git a/cipher/dsa-common.c b/cipher/dsa-common.c
index 170dce12..e010e182 100644
--- a/cipher/dsa-common.c
+++ b/cipher/dsa-common.c
@@ -25,6 +25,7 @@
Fri, Feb 14, 1:32 AM · libgcrypt, Bug Report

Mon, Feb 10

gniibe added a comment to T7519: libgcrypt: (EC)DSA signature generation should be constant-time.

And then, we need to use less leaky version of mpi_cmp (because mpi_cmp calls mpi_normalize, it's not good).

Mon, Feb 10, 5:37 AM · libgcrypt, Bug Report
gniibe added a comment to T7519: libgcrypt: (EC)DSA signature generation should be constant-time.

And this is for less leak for _gcry_dsa_modify_k:

Mon, Feb 10, 5:36 AM · libgcrypt, Bug Report
gniibe added a comment to T7519: libgcrypt: (EC)DSA signature generation should be constant-time.

This is needed before we remove leaks by mpi_add in _gcry_dsa_modify_k :

Mon, Feb 10, 3:34 AM · libgcrypt, Bug Report
gniibe added a comment to T7519: libgcrypt: (EC)DSA signature generation should be constant-time.

Commit rC35a6a6feb9dc: Fix _gcry_dsa_modify_k. is related, but it doesn't matter for usual compilers (it's an issue for MSVC).

Mon, Feb 10, 3:24 AM · libgcrypt, Bug Report

Fri, Feb 7

gniibe added a comment to T7519: libgcrypt: (EC)DSA signature generation should be constant-time.

This is needed for RFC6979 flag support.

Fri, Feb 7, 6:42 AM · libgcrypt, Bug Report
gniibe claimed T7519: libgcrypt: (EC)DSA signature generation should be constant-time.
Fri, Feb 7, 6:37 AM · libgcrypt, Bug Report
gniibe created T7519: libgcrypt: (EC)DSA signature generation should be constant-time.
Fri, Feb 7, 6:37 AM · libgcrypt, Bug Report

Thu, Feb 6

gniibe committed rC35a6a6feb9dc: Fix _gcry_dsa_modify_k. (authored by gniibe).
Fix _gcry_dsa_modify_k.
Thu, Feb 6, 8:42 AM
gniibe committed rEdbf1e0dc4722: gpgrt-config: Append default directory to PKG_CONFIG_PATH. (authored by gniibe).
gpgrt-config: Append default directory to PKG_CONFIG_PATH.
Thu, Feb 6, 2:36 AM

Mon, Feb 3

gniibe committed rW542d002295ab: Add Japanese Translation. (authored by gniibe).
Add Japanese Translation.
Mon, Feb 3, 3:29 AM
gniibe committed rCff6c905bea7b: mpi: Rename _gcry_mpih_mod as the one of Least Leak Intended. (authored by gniibe).
mpi: Rename _gcry_mpih_mod as the one of Least Leak Intended.
Mon, Feb 3, 1:28 AM
gniibe committed rC5c5089ba3620: mpi: Add _gcry_mpih_mul_lli as Least Leak Intended. (authored by gniibe).
mpi: Add _gcry_mpih_mul_lli as Least Leak Intended.
Mon, Feb 3, 1:21 AM

Fri, Jan 31

gniibe added a comment to T7490: libgcrypt: constant-time modular exponentiation.

The commit rC58c11aa8 is the improved version by k-ary exponentiation (while rC6dffd105e2e2 is 1-bit at a time) and using heap.

Fri, Jan 31, 2:43 AM · libgcrypt
gniibe committed rC639b0fca1505: cipher:prime: Fix long standing bug for PRIME % 2 == 0. (authored by gniibe).
cipher:prime: Fix long standing bug for PRIME % 2 == 0.
Fri, Jan 31, 2:14 AM

Jan 27 2025

gniibe committed rGPGMEPP8880b461a48a: build: With LD_LIBRARY_PATH defined, use --disable-new-dtags. (authored by gniibe).
build: With LD_LIBRARY_PATH defined, use --disable-new-dtags.
Jan 27 2025, 10:39 AM
gniibe committed rC9f0fd2656d7d: cipher: Check and mark non-compliant cipher modes in the SLI (authored by Lucas Mulling <lucas.mulling@suse.com>).
cipher: Check and mark non-compliant cipher modes in the SLI
Jan 27 2025, 1:05 AM

Jan 25 2025

gniibe added a comment to T7490: libgcrypt: constant-time modular exponentiation.

I created https://dev.gnupg.org/source/libgcrypt/history/gniibe%252Ft7490/
The commit rC6dffd105e2e2 works for me.
It is a bit of exponent at time Montgomery exponentiation.
I don't put an optimization for the reduction as I don't know if it's OK for patent-wise (looks like expired, though).

Jan 25 2025, 3:04 AM · libgcrypt

Jan 22 2025

gniibe committed rEb6df31136813: Skip gpg-error-config-test.sh for specific incompatible pkg-config. (authored by gniibe).
Skip gpg-error-config-test.sh for specific incompatible pkg-config.
Jan 22 2025, 3:11 AM
gniibe changed the status of T7486: libgcrypt: Remove WindowsCE support from Open to Testing.
Jan 22 2025, 3:06 AM · libgcrypt
gniibe committed rW8a73ec62d5e1: Translate update (ja). (authored by gniibe).
Translate update (ja).
Jan 22 2025, 1:20 AM

Jan 21 2025

gniibe committed rC24a2ca672b21: Remove WindowsCE support. (authored by gniibe).
Remove WindowsCE support.
Jan 21 2025, 1:49 AM
gniibe triaged T7490: libgcrypt: constant-time modular exponentiation as Wishlist priority.
Jan 21 2025, 1:44 AM · libgcrypt
gniibe added a comment to T6425: improve pinentry behavior and texts in smart card context .

For command line, reported issues have been fixed; Confusions for wrong errors are gone, it correctly reports appropriate errors of:

  • GPG_ERR_PIN_BLOCKED
  • GPG_ERR_NO_RESET_CODE
  • GPG_ERR_BAD_PIN
Jan 21 2025, 1:21 AM · gnupg24 (gnupg-2.4.5), scd, Bug Report, Restricted Project
gniibe added a comment to T6910: pinentry: Possibly add pinentry-gtk with GTK 4, and Drop pinentry-gtk-2.

Do you think it's too difficult for a beginner to write a pinentry-gtk4?

Jan 21 2025, 1:10 AM

Jan 20 2025

gniibe committed rGb1857a2836c9: gpg: Fix handling with no CRC armor. (authored by gniibe).
gpg: Fix handling with no CRC armor.
Jan 20 2025, 7:16 AM
gniibe changed the status of T7071: gpg: Support of No CRC in ASCII armor from Open to Testing.

Reported gnupg channel on IRC.
An ascii armored file in question was: https://github.com/syncthing/syncthing/releases/download/v1.29.2/sha256sum.txt.asc

Jan 20 2025, 7:13 AM · gnupg, Bug Report
gniibe added a comment to T7071: gpg: Support of No CRC in ASCII armor.

Fixed in: rGb1857a2836c9: gpg: Fix handling with no CRC armor.

Jan 20 2025, 7:11 AM · gnupg, Bug Report
gniibe reopened T7071: gpg: Support of No CRC in ASCII armor as "Open".

When CHECKCRC == 0 (no CRC), ->any_data was not set, resulted

	no valid OpenPGP data found.

wrongly.

Jan 20 2025, 7:10 AM · gnupg, Bug Report

Jan 17 2025

gniibe reopened T3269: (Constant-time) modular reduction, a subtask of T3264: Possible RSA improvement, as Open.
Jan 17 2025, 7:01 AM · libgcrypt
gniibe reopened T3269: (Constant-time) modular reduction as "Open".

Re-open, so that I can pursue constant-time modular exponentiation.

Jan 17 2025, 7:01 AM · libgcrypt

Jan 15 2025

gniibe committed rKb2fccb07a321: build,tests: Remove WindowsCE support. (authored by gniibe).
build,tests: Remove WindowsCE support.
Jan 15 2025, 11:30 AM
gniibe committed rPc93e640fa8ca: build: Remove defining GPG_ERR_ENABLE_ERRNO_MACROS. (authored by gniibe).
build: Remove defining GPG_ERR_ENABLE_ERRNO_MACROS.
Jan 15 2025, 8:08 AM
gniibe committed rMfa17f2aaedb5: build: Remove defining GPG_ERR_ENABLE_ERRNO_MACROS. (authored by gniibe).
build: Remove defining GPG_ERR_ENABLE_ERRNO_MACROS.
Jan 15 2025, 7:56 AM
gniibe renamed T7486: libgcrypt: Remove WindowsCE support from libksba, libgcrypt: Remove WindowsCE support to libgcrypt: Remove WindowsCE support.
Jan 15 2025, 7:53 AM · libgcrypt
gniibe removed a project from T7486: libgcrypt: Remove WindowsCE support: libksba.
Jan 15 2025, 7:53 AM · libgcrypt
gniibe triaged T7486: libgcrypt: Remove WindowsCE support as Wishlist priority.
Jan 15 2025, 7:44 AM · libgcrypt
gniibe committed rG6c01d97b1756: build: Remove defining GPG_ERR_ENABLE_ERRNO_MACROS. (authored by gniibe).
build: Remove defining GPG_ERR_ENABLE_ERRNO_MACROS.
Jan 15 2025, 7:43 AM
gniibe committed rE71756ce37351: build: Remove defining GPG_ERR_ENABLE_ERRNO_MACROS. (authored by gniibe).
build: Remove defining GPG_ERR_ENABLE_ERRNO_MACROS.
Jan 15 2025, 7:35 AM

Jan 14 2025

gniibe committed rE0f4fe2edf5e5: spawn: Care about closefrom/close call is interrupted. (authored by gniibe).
spawn: Care about closefrom/close call is interrupted.
Jan 14 2025, 7:33 AM
gniibe changed the status of T7478: _gpg_close_all_fds hangs on nwer Linux systems in a simple chroot w/o /proc/self/fd from Open to Testing.

Fixed in: rE0f4fe2edf5e5: spawn: Care about closefrom/close call is interrupted.

Jan 14 2025, 7:12 AM · Linux, gnupg, gpgrt, Bug Report
gniibe added a comment to T7478: _gpg_close_all_fds hangs on nwer Linux systems in a simple chroot w/o /proc/self/fd.

@werner I read the code of gpgme/src/posix-io.c. I understand the two points:

  • For the correctness sake, the possible interrupted closefrom should be handled.
  • we can share the code with closefrom case and non-closefrom case.
Jan 14 2025, 6:55 AM · Linux, gnupg, gpgrt, Bug Report
gniibe committed rG137481fa1002: agent: Fix a memory leak. (authored by Sorah Fukumori <her@sorah.jp>).
agent: Fix a memory leak.
Jan 14 2025, 3:28 AM

Jan 10 2025

gniibe closed T6338: kleo: Japanese Translation, a subtask of T6337: libkleo: Japanese Translation, as Resolved.
Jan 10 2025, 8:04 AM · kleopatra, Bug Report
gniibe closed T6338: kleo: Japanese Translation as Resolved.

One year later, I also did translation work for kleo and libkleo, which are pushed by Andre.
So, closing this task.

Jan 10 2025, 8:04 AM · Restricted Project, kleopatra, Bug Report
gniibe closed T7436: Allow ssh to sign data larger than the assuan line length. as Resolved.

Fixed in 2.5.2.

Jan 10 2025, 8:00 AM · ssh, Feature Request, gnupg26
gniibe closed T7457: gpg --full-gen-key doesn't show list of keys on card (regression) as Resolved.

Fixed in 2.5.3.

Jan 10 2025, 7:59 AM · Bug Report, gnupg
gniibe closed T7291: scdaemon randomly hangs when trying to access a token as Resolved.

Fixed in 2.5.2.

Jan 10 2025, 7:51 AM · scd
gniibe committed rGddff3b01f4bc: po: Update Japanese Translation. (authored by gniibe).
po: Update Japanese Translation.
Jan 10 2025, 7:04 AM
gniibe committed rG6b233c6704df: po: Update Japanese Translation. (authored by gniibe).
po: Update Japanese Translation.
Jan 10 2025, 7:00 AM

Jan 9 2025

gniibe committed rC42e8858566e3: build: Improve __thread specifier check. (authored by gniibe).
build: Improve __thread specifier check.
Jan 9 2025, 2:36 AM

Jan 8 2025

gniibe committed rEe3e793302b67: spawn: Use closefrom when available. (authored by gniibe).
spawn: Use closefrom when available.
Jan 8 2025, 9:08 AM
gniibe added a comment to T7478: _gpg_close_all_fds hangs on nwer Linux systems in a simple chroot w/o /proc/self/fd.

Thank you for your report.

Jan 8 2025, 7:49 AM · Linux, gnupg, gpgrt, Bug Report
gniibe committed rA70d454e1ff48: w32: Enable "w32_error" for assuan_sock_get_flag. (authored by gniibe).
w32: Enable "w32_error" for assuan_sock_get_flag.
Jan 8 2025, 1:04 AM
gniibe merged task T7177: libassuan-3.0.1: Errant declaration of putc_unlocked in src/assuan-defs.h causes a Darwin build to fail into T7246: libassuan 3.0.1: putc_unlocked() is re-defined unconditionally.
Jan 8 2025, 12:51 AM · MacOS, gpgrt, Bug Report
gniibe merged T7177: libassuan-3.0.1: Errant declaration of putc_unlocked in src/assuan-defs.h causes a Darwin build to fail into T7246: libassuan 3.0.1: putc_unlocked() is re-defined unconditionally.
Jan 8 2025, 12:51 AM · libassuan, MacOS, Bug Report
gniibe added a comment to T7177: libassuan-3.0.1: Errant declaration of putc_unlocked in src/assuan-defs.h causes a Darwin build to fail.

Fixed in rA69069bc63e6b: Remove an declaration for an unused function.

Jan 8 2025, 12:49 AM · MacOS, gpgrt, Bug Report

Jan 6 2025

gniibe closed T6523: gpgscm: call-with-io deadlock when larger stderr output, a subtask of T6512: keyboxd with data pipe, as Resolved.
Jan 6 2025, 7:32 AM · gnupg26, Bug Report
gniibe closed T6523: gpgscm: call-with-io deadlock when larger stderr output as Resolved.
Jan 6 2025, 7:32 AM · gnupg26, Bug Report
gniibe closed T7180: gpgme: Use gpgrt_b64dec as Resolved.
Jan 6 2025, 7:31 AM · gpgme
gniibe committed rC5e925e6c3484: fips,cipher: Fix memory leak for gcry_pk_hash_sign. (authored by gniibe).
fips,cipher: Fix memory leak for gcry_pk_hash_sign.
Jan 6 2025, 4:15 AM

Dec 30 2024

gniibe committed rPb415f3108921: build: Fix warning about obsolete pinentry-emacs. (authored by gniibe).
build: Fix warning about obsolete pinentry-emacs.
Dec 30 2024, 5:28 AM
gniibe claimed T7470: pinentry warns about obsolete pinentry-emacs for --disable-pinentry-emacs.

Thank you. Fixed in: rPb415f3108921: build: Fix warning about obsolete pinentry-emacs.

Dec 30 2024, 2:56 AM · pinentry, Bug Report

Dec 27 2024

gniibe committed rC53c97483b17f: fips,ecc: Check DATA in gcry_pk_sign/verify in FIPS mode. (authored by gniibe).
fips,ecc: Check DATA in gcry_pk_sign/verify in FIPS mode.
Dec 27 2024, 1:27 AM
gniibe committed rCd71c88f78a4f: tests: Add more tests to tests/t-fips-service-ind. (authored by gniibe).
tests: Add more tests to tests/t-fips-service-ind.
Dec 27 2024, 1:26 AM
gniibe committed rCc6a092abbe7b: fips,ecc: Add rejecting or marking for gcry_pk_get_curve. (authored by gniibe).
fips,ecc: Add rejecting or marking for gcry_pk_get_curve.
Dec 27 2024, 1:26 AM

Dec 23 2024

gniibe committed rCa776b692669a: fips,cipher: Add behavior not to reject but mark non-compliant. (authored by gniibe).
fips,cipher: Add behavior not to reject but mark non-compliant.
Dec 23 2024, 7:01 AM

Dec 20 2024

gniibe closed T7169: libgpg-error 1.50 build issue (spawn-posix.c:345:5: error: use of undeclared identifier 'environ') as Resolved.

This problem has gone in libgpg-error 1.51, since the implementation doesn't use environ any more.

Dec 20 2024, 6:49 AM · gpgrt, MacOS, Bug Report
gniibe committed rGd32a315418a3: po: Update Japanese Translation. (authored by gniibe).
po: Update Japanese Translation.
Dec 20 2024, 3:56 AM
gniibe committed rGab8a2408a390: scd: Use gpgrt_spawn_actions_set_env_rev to have clean semantics. (authored by gniibe).
scd: Use gpgrt_spawn_actions_set_env_rev to have clean semantics.
Dec 20 2024, 3:53 AM
gniibe committed rCd060dd58b828: fips: Rejection by GCRYCTL_FIPS_REJECT_NON_FIPS, not by open flags. (authored by gniibe).
fips: Rejection by GCRYCTL_FIPS_REJECT_NON_FIPS, not by open flags.
Dec 20 2024, 2:50 AM
gniibe closed T7071: gpg: Support of No CRC in ASCII armor as Resolved.
Dec 20 2024, 1:17 AM · gnupg, Bug Report

Dec 19 2024

gniibe committed rCb4eb23dc01a4: Fix the previous change. (authored by gniibe).
Fix the previous change.
Dec 19 2024, 6:19 AM
gniibe committed rCe52adf0948c6: fips: Introduce GCRYCTL_FIPS_REJECT_NON_FIPS. (authored by gniibe).
fips: Introduce GCRYCTL_FIPS_REJECT_NON_FIPS.
Dec 19 2024, 3:42 AM
gniibe committed rCedb43bc29004: fips,cipher: Implement FIPS service indicator for gcry_pk_hash_ API. (authored by gniibe).
fips,cipher: Implement FIPS service indicator for gcry_pk_hash_ API.
Dec 19 2024, 3:42 AM
gniibe committed rC60db2a175d12: fips,md: gcry_md_copy should care about FIPS service indicator. (authored by gniibe).
fips,md: gcry_md_copy should care about FIPS service indicator.
Dec 19 2024, 3:42 AM

Dec 17 2024

gniibe committed rCcfd2d2f41ad4: tests,fips: Add gcry_cipher_open tests. (authored by gniibe).
tests,fips: Add gcry_cipher_open tests.
Dec 17 2024, 6:01 AM
gniibe committed rCb59bde31ded9: tests,fips: Move KDF tests to t-fips-service-ind. (authored by gniibe).
tests,fips: Move KDF tests to t-fips-service-ind.
Dec 17 2024, 6:01 AM
gniibe committed rC132f346232b3: tests,fips: Rename t-fips-service-ind. (authored by gniibe).
tests,fips: Rename t-fips-service-ind.
Dec 17 2024, 6:01 AM
gniibe committed rCc4f75014cb8a: tests,fips: Add gcry_mac_open tests. (authored by gniibe).
tests,fips: Add gcry_mac_open tests.
Dec 17 2024, 6:01 AM
gniibe committed rC69a5d0ed18a3: fips,cipher: Implement new FIPS service indicator for cipher_open. (authored by gniibe).
fips,cipher: Implement new FIPS service indicator for cipher_open.
Dec 17 2024, 6:01 AM