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:
|
||||
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
||||
BUILD_TYPE: Release
|
||||
version: osslsigncode-2.10
|
||||
version: osslsigncode-2.11-dev
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -16,7 +16,7 @@ project(osslsigncode
|
||||
LANGUAGES C)
|
||||
|
||||
# force nonstandard version format for development packages
|
||||
set(DEV "")
|
||||
set(DEV "-dev")
|
||||
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}${DEV}")
|
||||
|
||||
# version and contact information
|
||||
|
2
NEWS.md
2
NEWS.md
@ -1,5 +1,7 @@
|
||||
# osslsigncode change log
|
||||
|
||||
### 2.11 (unreleased)
|
||||
|
||||
### 2.10 (2025.06.23)
|
||||
|
||||
- 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 |
|
||||
ASN1_STRFLGS_ESC_CTRL;
|
||||
flags &= ~ASN1_STRFLGS_ESC_MSB;
|
||||
flags &= ~(unsigned long)ASN1_STRFLGS_ESC_MSB;
|
||||
|
||||
bio = BIO_new(BIO_s_mem());
|
||||
if (!bio)
|
||||
|
Reference in New Issue
Block a user