Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion openssl.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: openssl
version: "3.6.0"
epoch: 4
epoch: 5
description: "the OpenSSL cryptography suite"
copyright:
- license: Apache-2.0
Expand Down Expand Up @@ -48,6 +48,7 @@ pipeline:
fix-jitter.patch
0001-baseprovider-add-MD5-and-SHA1.patch
0001-fips-block-HMAC-calculation-with-unapproved-digests.patch
0001-DNM-test-build.patch

- name: Create dbg sourcecode
runs: |
Expand Down
29 changes: 29 additions & 0 deletions openssl/0001-DNM-test-build.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From 8d9879dd8402d8f775370117b21dd93fc59f5626 Mon Sep 17 00:00:00 2001
From: Dimitri John Ledkov <[email protected]>
Date: Tue, 25 Nov 2025 05:41:28 +0000
Subject: [PATCH] DNM: test build

---
providers/implementations/rands/seed_src_jitter.c.in | 2 --
1 file changed, 2 deletions(-)

diff --git a/providers/implementations/rands/seed_src_jitter.c.in b/providers/implementations/rands/seed_src_jitter.c.in
index 4d73f07574..e3065a9d98 100644
--- a/providers/implementations/rands/seed_src_jitter.c.in
+++ b/providers/implementations/rands/seed_src_jitter.c.in
@@ -156,12 +156,10 @@ static int jitter_instantiate(void *vseed, unsigned int strength,
PROV_JITTER *s = (PROV_JITTER *)vseed;
int ret;

- if ((ret = jent_entropy_init_ex(0, JENT_FORCE_FIPS)) != 0) {
ERR_raise_data(ERR_LIB_RAND, RAND_R_ERROR_RETRIEVING_ENTROPY,
"jent_entropy_init_ex (%d)", ret);
s->state = EVP_RAND_STATE_ERROR;
return 0;
- }

s->state = EVP_RAND_STATE_READY;
return 1;
--
2.51.0

Loading