mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-07-02 19:22:47 -05:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
5ac11e9f58 | |||
55541c6ace |
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -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:
|
||||||
|
@ -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
|
||||||
|
2
NEWS.md
2
NEWS.md
@ -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
|
||||||
|
@ -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)
|
||||||
|
Reference in New Issue
Block a user