Merge pull request #14800 from 6ec123321/master

gost_engine: Add GOST2012 Engine for OpenSSL
This commit is contained in:
Rosen Penev 2021-02-19 23:29:54 -08:00 committed by GitHub
commit be7c5d9dc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 79 additions and 0 deletions

79
libs/gost_engine/Makefile Normal file
View File

@ -0,0 +1,79 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=gost_engine
PKG_VERSION:=1.1.0.3
PKG_RELEASE:=$(AUTORELEASE)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://github.com/gost-engine/engine/archive/v$(PKG_VERSION)
PKG_HASH:=fff725052e82c9adb5b738729b30141f61ac91fa457a4f4b5de18b8b24092f75
PKG_MAINTAINER:=Artur Petrov <github@phpchain.ru>
PKG_LICENSE:=OpenSSL
include $(INCLUDE_DIR)/package.mk
include $(INCLUDE_DIR)/cmake.mk
PKG_UNPACK:=$(HOST_TAR) -C "$(PKG_BUILD_DIR)" --strip-components=1 -xzf "$(DL_DIR)/$(PKG_SOURCE)"
PKG_INSTALL:=
ENGINES_DIR:=engines-1.1
define Package/gost_engine/Default
TITLE:=GOST engine for OpenSSL
URL:=http://www.openssl.org/
SECTION:=libs
CATEGORY:=Libraries
endef
define Package/gost_engine/Default/description
Russian GOST crypto algorithms for OpenSSL.
endef
define Package/libopenssl-gost_engine
$(call Package/gost_engine/Default)
SUBMENU:=SSL
TITLE+= (library)
URL:=https://github.com/gost-engine/engine/
DEPENDS:=libopenssl @OPENSSL_ENGINE @OPENSSL_WITH_GOST +libopenssl-conf
endef
define Package/libopenssl-gost_engine/description
$(call Package/gost_engine/Default/description)
This package contains the GOST engine library.
Support ciphers:
GOST2012-GOST8912-GOST8912
GOST2001-GOST89-GOST89
endef
define Package/gost_engine-util
$(call Package/gost_engine/Default)
SECTION:=utils
CATEGORY:=Utilities
DEPENDS:=libopenssl-gost_engine
TITLE+= (utilities)
endef
define Package/gost_engine-util/description
$(call Package/gost_engine/Default/description)
This package contains the GOST engine command-line utilities gostsum and gost12sum.
endef
CMAKE_OPTIONS += -DOPENSSL_ENGINES_DIR=/usr/lib/$(ENGINES_DIR)
define Package/libopenssl-gost_engine/install
$(INSTALL_DIR) $(1)/usr/lib/$(ENGINES_DIR)
$(INSTALL_DATA) $(PKG_BUILD_DIR)/bin/gost.so \
$(1)/usr/lib/$(ENGINES_DIR)/
endef
define Package/gost_engine-util/install
$(INSTALL_DIR) $(1)/usr/bin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/bin/{gost12sum,gostsum} \
$(1)/usr/bin/
endef
$(eval $(call BuildPackage,libopenssl-gost_engine))
$(eval $(call BuildPackage,gost_engine-util))