[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
share
/
crypto-policies
/
python
/
cryptopolicies
/
validation
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 __pycache__
SET
[ DEL ]
📄 __init__.py
285 B
SET
[ EDIT ]
|
[ DEL ]
📄 alg_lists.py
667 B
SET
[ EDIT ]
|
[ DEL ]
📄 general.py
371 B
SET
[ EDIT ]
|
[ DEL ]
📄 rules.py
1,168 B
SET
[ EDIT ]
|
[ DEL ]
📄 scope.py
1,971 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: alg_lists.py
# SPDX-License-Identifier: LGPL-2.1-or-later # Copyright (c) 2021 Red Hat, Inc. from .general import PolicySyntaxError class AlgorithmClassSyntaxError(PolicySyntaxError): pass class AlgorithmClassUnknownError(AlgorithmClassSyntaxError): def __init__(self, alg_class): # The wording follows the previous versions super().__init__(f'Unknown policy property: `{alg_class}`') class AlgorithmEmptyMatchError(AlgorithmClassSyntaxError): def __init__(self, glob, alg_class): # The wording follows the previous versions super().__init__(f'Bad value of policy property `{alg_class}`: ' f'`{glob}`')