Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
lede-mikrotik
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johannes Rudolph
lede-mikrotik
Commits
f3112b06
Commit
f3112b06
authored
12 years ago
by
Luka Perkov
Browse files
Options
Downloads
Patches
Plain Diff
openssl: enable the use of cryptodev digests
SVN-Revision: 32673
parent
283021ac
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
package/kernel/modules/crypto.mk
+3
-3
3 additions, 3 deletions
package/kernel/modules/crypto.mk
package/openssl/Config.in
+6
-1
6 additions, 1 deletion
package/openssl/Config.in
package/openssl/Makefile
+6
-3
6 additions, 3 deletions
package/openssl/Makefile
with
15 additions
and
7 deletions
package/kernel/modules/crypto.mk
+
3
−
3
View file @
f3112b06
...
...
@@ -393,7 +393,7 @@ $(eval $(call KernelPackage,crypto-misc))
define
KernelPackage/crypto-ocf
TITLE
:=
OCF modules
DEPENDS
:=
+@OPENSSL_ENGINE @!TARGET_uml +kmod-crypto-manager
DEPENDS
:=
+@OPENSSL_ENGINE
_CRYPTO
@!TARGET_uml +kmod-crypto-manager
KCONFIG
:=
\
CONFIG_OCF_OCF
\
CONFIG_OCF_CRYPTODEV
\
...
...
@@ -417,7 +417,7 @@ $(eval $(call KernelPackage,crypto-ocf))
define
KernelPackage/crypto-ocf-hifn7751
TITLE
:=
OCF support
for
Hifn 6500/7751/7811/795x, Invertex AEON and NetSec 7751 devices
DEPENDS
:=
+@OPENSSL_ENGINE @PCI_SUPPORT @!TARGET_uml kmod-crypto-ocf
DEPENDS
:=
+@OPENSSL_ENGINE
_CRYPTO
@PCI_SUPPORT @!TARGET_uml kmod-crypto-ocf
KCONFIG
:=
CONFIG_OCF_HIFN
FILES
:=
$(
LINUX_DIR
)
/crypto/ocf/hifn/hifn7751.ko
AUTOLOAD
:=
$(
call AutoLoad,10,hifn7751
)
...
...
@@ -429,7 +429,7 @@ $(eval $(call KernelPackage,crypto-ocf-hifn7751))
define
KernelPackage/crypto-ocf-hifnhipp
TITLE
:=
OCF support
for
Hifn 7855/8155 devices
DEPENDS
:=
+@OPENSSL_ENGINE @PCI_SUPPORT @!TARGET_uml kmod-crypto-ocf
DEPENDS
:=
+@OPENSSL_ENGINE
_CRYPTO
@PCI_SUPPORT @!TARGET_uml kmod-crypto-ocf
KCONFIG
:=
CONFIG_OCF_HIFNHIPP
FILES
:=
$(
LINUX_DIR
)
/crypto/ocf/hifn/hifnHIPP.ko
AUTOLOAD
:=
$(
call AutoLoad,10,hifnHIPP
)
...
...
This diff is collapsed.
Click to expand it.
package/openssl/Config.in
+
6
−
1
View file @
f3112b06
menu "Configuration"
depends on PACKAGE_libopenssl
config OPENSSL_ENGINE
config OPENSSL_ENGINE
_CRYPTO
bool
prompt "Crypto acceleration support"
config OPENSSL_ENGINE_DIGEST
bool
depends OPENSSL_ENGINE_CRYPTO
prompt "Digests acceleration support"
endmenu
This diff is collapsed.
Click to expand it.
package/openssl/Makefile
+
6
−
3
View file @
f3112b06
...
...
@@ -19,7 +19,7 @@ PKG_SOURCE_URL:=http://www.openssl.org/source/ \
PKG_MD5SUM
:=
ae412727c8c15b67880aef7bd2999b2e
PKG_BUILD_DEPENDS
:=
ocf-crypto-headers
PKG_CONFIG_DEPENDS
:=
CONFIG_OPENSSL_ENGINE
PKG_CONFIG_DEPENDS
:=
CONFIG_OPENSSL_ENGINE
_CRYPTO CONFIG_OPENSSL_ENGINE_DIGEST
include
$(INCLUDE_DIR)/package.mk
...
...
@@ -73,11 +73,14 @@ endef
OPENSSL_NO_CIPHERS
:=
no-idea no-md2 no-mdc2 no-rc5 no-sha0 no-smime
\
no-rmd160 no-aes192 no-ripemd no-camellia no-ans1 no-krb5
no-rmd160 no-aes192 no-ripemd no-camellia no-ans1 no-krb5
OPENSSL_OPTIONS
:=
shared no-ec no-err no-hw no-threads zlib-dynamic no-sse2
ifdef
CONFIG_OPENSSL_ENGINE
ifdef
CONFIG_OPENSSL_ENGINE
_CRYPTO
OPENSSL_OPTIONS
+=
-DHAVE_CRYPTODEV
ifdef
CONFIG_OPENSSL_ENGINE_DIGEST
OPENSSL_OPTIONS
+=
-DUSE_CRYPTODEV_DIGESTS
endif
else
OPENSSL_OPTIONS
+=
no-engines
endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment