This is an automated email from the ASF dual-hosted git repository.

olli pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/sling-org-apache-sling-commons-crypto.git

commit 56f426370358fedd4c25a907b80c60580c7b73cb
Author: Oliver Lietz <[email protected]>
AuthorDate: Mon Jun 21 13:12:02 2021 +0200

    SLING-10499 Provide a salt provider using a secure random number generator
    
    fix Require-Capability header
---
 bnd.bnd | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/bnd.bnd b/bnd.bnd
index c053c3a..70ab586 100644
--- a/bnd.bnd
+++ b/bnd.bnd
@@ -11,6 +11,7 @@ Import-Package:\
 
 Require-Capability:\
   
osgi.service;filter:="(objectClass=org.apache.sling.commons.crypto.PasswordProvider)";effective:=active;resolution:=optional,\
+  
osgi.service;filter:="(objectClass=org.apache.sling.commons.crypto.SaltProvider)";effective:=active;resolution:=optional,\
   
osgi.service;filter:="(objectClass=org.jasypt.iv.IvGenerator)";effective:=active;resolution:=optional
 
 -noimportjava: true
@@ -19,6 +20,8 @@ Require-Capability:\
   org.apache.sling.bnd.plugin.headers.parameters.remove.Plugin;\
     
'Require-Capability'='osgi.service;filter:="(objectClass=org.apache.sling.commons.crypto.PasswordProvider)";effective:=active',\
   org.apache.sling.bnd.plugin.headers.parameters.remove.Plugin;\
+    
'Require-Capability'='osgi.service;filter:="(objectClass=org.apache.sling.commons.crypto.SaltProvider)";effective:=active',\
+  org.apache.sling.bnd.plugin.headers.parameters.remove.Plugin;\
     
'Require-Capability'='osgi.service;filter:="(objectClass=org.jasypt.iv.IvGenerator)";effective:=active'
 
 -removeheaders:\

Reply via email to