Skip to content

Commit bb31533

Browse files
committed
Patterns.
1 parent ddbd34c commit bb31533

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

AGENTS.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Agent Instructions
2+
3+
## Evidence-Required Changes
4+
- `patterns.toml` may only be edited after reviewing official library documentation and confirming the change is defensible. Provide evidence before making any edits.
5+
- Fixtures may only be edited after obtaining irrefutable evidence that the fixture itself is wrong. Provide that evidence before editing.
6+
7+
## Pre-Commit Quality
8+
- Resolve all `cargo fmt` and `cargo clippy` issues before committing.

patterns.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4497,6 +4497,24 @@ symbol_patterns = [
44974497
"\\bhmac::Key::new\\s*\\(\\s*hmac::HMAC_SHA256",
44984498
]
44994499

4500+
[[library.algorithms]]
4501+
name = "HMAC-SHA384"
4502+
primitive = "mac"
4503+
nistQuantumSecurityLevel = 3
4504+
symbol_patterns = [
4505+
"\\bhmac::HMAC_SHA384",
4506+
"\\bhmac::Key::new\\s*\\(\\s*hmac::HMAC_SHA384",
4507+
]
4508+
4509+
[[library.algorithms]]
4510+
name = "HMAC-SHA512"
4511+
primitive = "mac"
4512+
nistQuantumSecurityLevel = 3
4513+
symbol_patterns = [
4514+
"\\bhmac::HMAC_SHA512",
4515+
"\\bhmac::Key::new\\s*\\(\\s*hmac::HMAC_SHA512",
4516+
]
4517+
45004518
[[library.algorithms]]
45014519
name = "ChaCha20Poly1305"
45024520
primitive = "symmetric"

0 commit comments

Comments
 (0)