Commit 11333d23 authored by Axel Kenzo's avatar Axel Kenzo
Browse files

Зафиксирована версия 0.9.8

 - Скорректирована сборка библиотеки в Windows 10
    - msvc19 (с использованием nmake)
    - mingw64 8.1  (входит в стандартную поставку Qt 6.1)
    - mingw64 10.2 (доступен с msys2.org)
 - Исправлена ошибка хеширования/имитозащиты файлов с пробелами в именах
 - Изменена кодовая страница консоли в Windows для вывода русских символов
 - Добавлен ряд новых OID, в частности, INNLE (инн юридического лица)
 - Исправлена ошибка при выводе владельца/эмитента сертификата без common name
 - Добавлены функции тестирования содержимого asn1 дерева
   ak_asn1_is_(request, certificate, p7b )
 - Утилита aktool теперь может верифицировать и добавлять в репозиторий
   последовательности сертификатов, содержащиеся в p7b контейнерах (формат cms),
   создавать, выводить в консоль и разделять на отдельные сертификаты
   содержимое p7b контейнеров.
No related merge requests found
Showing with 3 additions and 2 deletions
+3 -2
......@@ -138,6 +138,7 @@ add_compile_options( -DLIBAKRYPT_VERSION="${FULL_VERSION}" )
add_compile_options( -DLIBAKRYPT_COMPILER_NAME="${CMAKE_C_COMPILER}" )
add_compile_options( -DLIBAKRYPT_COMPILER_VERSION="${CMAKE_C_COMPILER_VERSION}" )
add_compile_options( -DLIBAKRYPT_CA_PATH="${AK_CA_PATH}" )
add_compile_options( -DLIBAKRYPT_LOCALE_PATH="${CMAKE_INSTALL_FULL_LOCALEDIR}" )
if( AK_SHARED_LIB )
add_library( akbase-shared SHARED ${MAIN_HEADERS} ${AKBASE_SOURCES} )
......
......@@ -27,7 +27,7 @@ We have implementation of:
all elliptic curves described by R 1323565.024-2019;
12. GOST R 34.10-2012 digital signature generation and verification algorithms, see ISO/IEC 14888-3:2016;
13. Low level ASN.1 routines for data encoding with support of DER and PEM formats;
14. x509 certificate management, including public keys formats described by R 1323565.023-2018;
14. x509 certificate management, including public keys formats described by R 1323565.023-2018 and PKCS #7;
15. Rolf Blom's scheme for symmetric keys generation.
The library can be compiled with many compilers,
......
......@@ -76,7 +76,7 @@
#ifdef AK_HAVE_LOCALE_H
setlocale( LC_ALL, "ru" );
#endif
bindtextdomain( "aktool", "/usr/share/locale/" );
bindtextdomain( "aktool", LIBAKRYPT_LOCALE_PATH );
textdomain( "aktool" );
#endif
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment