-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix invalid simplified access control applied to subentries
- Loading branch information
1 parent
c698353
commit 6852681
Showing
10 changed files
with
53 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -807,7 +807,7 @@ jobs: | |
--set enable_dsp=true \ | ||
--set [email protected] \ | ||
--set administrator_email_public=true \ | ||
--set vendor_version='2.4.3' \ | ||
--set vendor_version='2.4.4' \ | ||
--set signing_required_for_chaining=false \ | ||
--set tcp_timeout_in_seconds=300 \ | ||
--set min_transfer_speed_bytes_per_minute=10 \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
apps/meerkat/src/app/authz/accessControlSchemesThatUseASingleAdminPoint.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { | ||
simplifiedAccessControlScheme, | ||
} from "@wildboar/x500/src/lib/modules/BasicAccessControl/simplifiedAccessControlScheme.va"; | ||
import { | ||
rule_and_simple_access_control, | ||
} from "@wildboar/x500/src/lib/modules/BasicAccessControl/rule-and-simple-access-control.va"; | ||
import { IndexableOID } from "@wildboar/meerkat-types"; | ||
|
||
/** | ||
* @summary The access control schemes that use a single admin point | ||
* @description | ||
* | ||
* This is a set of stringified object identifiers in dot-delimited notation, | ||
* each of which is an access control scheme that uses a single access control | ||
* administrative point to make access control decisions. | ||
* | ||
* @constant | ||
*/ | ||
export | ||
const accessControlSchemesThatUseASingleAdminPoint: Set<IndexableOID> = new Set([ | ||
simplifiedAccessControlScheme.toString(), | ||
rule_and_simple_access_control.toString(), | ||
]); | ||
|
||
export default accessControlSchemesThatUseASingleAdminPoint; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Package: meerkat-dsa | ||
Version: 2.4.3 | ||
Version: 2.4.4 | ||
Section: database | ||
Priority: optional | ||
Architecture: i386 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters