2 Commits
2.10 ... master

Author SHA1 Message Date
5ac11e9f58 Fix -Wsign-conversion warning in x509_name_to_utf8() 2025-07-01 12:21:44 +02:00
55541c6ace Initial 2.11-dev commit 2025-06-23 21:42:26 +02:00
4 changed files with 5 additions and 3 deletions

View File

@ -7,7 +7,7 @@ on:
env: env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release BUILD_TYPE: Release
version: osslsigncode-2.10 version: osslsigncode-2.11-dev
jobs: jobs:
build: build:

View File

@ -16,7 +16,7 @@ project(osslsigncode
LANGUAGES C) LANGUAGES C)
# force nonstandard version format for development packages # force nonstandard version format for development packages
set(DEV "") set(DEV "-dev")
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}${DEV}") set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}${DEV}")
# version and contact information # version and contact information

View File

@ -1,5 +1,7 @@
# osslsigncode change log # osslsigncode change log
### 2.11 (unreleased)
### 2.10 (2025.06.23) ### 2.10 (2025.06.23)
- added JavaScript signing - added JavaScript signing

View File

@ -1766,7 +1766,7 @@ static char *x509_name_to_utf8(const X509_NAME *name)
flags = XN_FLAG_RFC2253 | ASN1_STRFLGS_UTF8_CONVERT | flags = XN_FLAG_RFC2253 | ASN1_STRFLGS_UTF8_CONVERT |
ASN1_STRFLGS_ESC_CTRL; ASN1_STRFLGS_ESC_CTRL;
flags &= ~ASN1_STRFLGS_ESC_MSB; flags &= ~(unsigned long)ASN1_STRFLGS_ESC_MSB;
bio = BIO_new(BIO_s_mem()); bio = BIO_new(BIO_s_mem());
if (!bio) if (!bio)