diff options
| author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-12-01 20:15:51 +0000 |
|---|---|---|
| committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2025-12-02 12:04:14 +0000 |
| commit | d31f10edf5b190aaae5d4e3a34c94c48d83cc3ff (patch) | |
| tree | 92db9e1ad95dbc6c2c961dff7cb1928c5a001ac2 | |
| parent | e191cf0d6fc902ae30264239d40c5c8b52f38a2a (diff) | |
devel/py-microsoft-security-utilities-secret-masker: Add py-microsoft-security-utilities-secret-masker 1.0.0b4
microsoft-security-utilities-secret-masker is part of the Microsoft Security
Utilities used internally. You can find the related .NET SDK package here. This
Secret Masker Python library focuses on:
- providing some built-in detection rules in json format
- detecting sensitive data for given input
- masking sensitive data with simple symbols or sha256 hash for given input
4 files changed, 34 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 3f04d2f95df7..ba98724672f6 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -5290,6 +5290,7 @@ SUBDIR += py-mergedeep SUBDIR += py-merossiot SUBDIR += py-methodtools + SUBDIR += py-microsoft-security-utilities-secret-masker SUBDIR += py-microversion-parse SUBDIR += py-milc SUBDIR += py-mime diff --git a/devel/py-microsoft-security-utilities-secret-masker/Makefile b/devel/py-microsoft-security-utilities-secret-masker/Makefile new file mode 100644 index 000000000000..60ca1d21365c --- /dev/null +++ b/devel/py-microsoft-security-utilities-secret-masker/Makefile @@ -0,0 +1,24 @@ +PORTNAME= microsoft-security-utilities-secret-masker +PORTVERSION= 1.0.0b4 +CATEGORIES= devel python +MASTER_SITES= PYPI +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= microsoft_security_utilities_secret_masker-${PORTVERSION} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Tool for detecting and masking secrets +WWW= https://pypi.org/project/microsoft-security-utilities-secret-masker/ \ + https://github.com/microsoft/security-utilities + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent pep517 + +NO_ARCH= yes + +.include <bsd.port.mk> diff --git a/devel/py-microsoft-security-utilities-secret-masker/distinfo b/devel/py-microsoft-security-utilities-secret-masker/distinfo new file mode 100644 index 000000000000..386cc81e34cd --- /dev/null +++ b/devel/py-microsoft-security-utilities-secret-masker/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1764510870 +SHA256 (microsoft_security_utilities_secret_masker-1.0.0b4.tar.gz) = a30bd361ac18c8b52f6844076bc26465335949ea9c7a004d95f5196ec6fdef3e +SIZE (microsoft_security_utilities_secret_masker-1.0.0b4.tar.gz) = 10919 diff --git a/devel/py-microsoft-security-utilities-secret-masker/pkg-descr b/devel/py-microsoft-security-utilities-secret-masker/pkg-descr new file mode 100644 index 000000000000..7c1d179c99db --- /dev/null +++ b/devel/py-microsoft-security-utilities-secret-masker/pkg-descr @@ -0,0 +1,6 @@ +microsoft-security-utilities-secret-masker is part of the Microsoft Security +Utilities used internally. You can find the related .NET SDK package here. This +Secret Masker Python library focuses on: +- providing some built-in detection rules in json format +- detecting sensitive data for given input +- masking sensitive data with simple symbols or sha256 hash for given input |
