_apply_mask_strategy() — langchain Function Reference
Architecture documentation for the _apply_mask_strategy() function in _redaction.py from the langchain codebase.
Entity Profile
Dependency Diagram
graph TD 4c3aef38_195f_f867_1993_4e146c3618c0["_apply_mask_strategy()"] be639235_9a02_cc2d_5a7d_637d822fb3b3["_redaction.py"] 4c3aef38_195f_f867_1993_4e146c3618c0 -->|defined in| be639235_9a02_cc2d_5a7d_637d822fb3b3 a830b2dc_75ff_a1e7_d25c_7de2223efe55["apply_strategy()"] a830b2dc_75ff_a1e7_d25c_7de2223efe55 -->|calls| 4c3aef38_195f_f867_1993_4e146c3618c0 style 4c3aef38_195f_f867_1993_4e146c3618c0 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
libs/langchain_v1/langchain/agents/middleware/_redaction.py lines 251–294
def _apply_mask_strategy(content: str, matches: list[PIIMatch]) -> str:
result = content
for match in sorted(matches, key=operator.itemgetter("start"), reverse=True):
value = match["value"]
pii_type = match["type"]
if pii_type == "email":
parts = value.split("@")
if len(parts) == 2: # noqa: PLR2004
domain_parts = parts[1].split(".")
masked = (
f"{parts[0]}@****.{domain_parts[-1]}"
if len(domain_parts) > 1
else f"{parts[0]}@****"
)
else:
masked = "****"
elif pii_type == "credit_card":
digits_only = "".join(c for c in value if c.isdigit())
separator = "-" if "-" in value else " " if " " in value else ""
if separator:
masked = (
f"****{separator}****{separator}****{separator}"
f"{digits_only[-_UNMASKED_CHAR_NUMBER:]}"
)
else:
masked = f"************{digits_only[-_UNMASKED_CHAR_NUMBER:]}"
elif pii_type == "ip":
octets = value.split(".")
masked = f"*.*.*.{octets[-1]}" if len(octets) == _IPV4_PARTS_NUMBER else "****"
elif pii_type == "mac_address":
separator = ":" if ":" in value else "-"
masked = (
f"**{separator}**{separator}**{separator}**{separator}**{separator}{value[-2:]}"
)
elif pii_type == "url":
masked = "[MASKED_URL]"
else:
masked = (
f"****{value[-_UNMASKED_CHAR_NUMBER:]}"
if len(value) > _UNMASKED_CHAR_NUMBER
else "****"
)
result = result[: match["start"]] + masked + result[match["end"] :]
return result
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does _apply_mask_strategy() do?
_apply_mask_strategy() is a function in the langchain codebase, defined in libs/langchain_v1/langchain/agents/middleware/_redaction.py.
Where is _apply_mask_strategy() defined?
_apply_mask_strategy() is defined in libs/langchain_v1/langchain/agents/middleware/_redaction.py at line 251.
What calls _apply_mask_strategy()?
_apply_mask_strategy() is called by 1 function(s): apply_strategy.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free