Set sets Protected[key] = val. It'll overwrite without warning.
(key string, val interface{})
| 73 | |
| 74 | // Set sets Protected[key] = val. It'll overwrite without warning. |
| 75 | func (p Protected) Set(key string, val interface{}) { |
| 76 | p[key] = val |
| 77 | } |
| 78 | |
| 79 | // Del removes the value that corresponds with key from the Protected Header. |
| 80 | func (p Protected) Del(key string) { |
nothing calls this directly
no outgoing calls
no test coverage detected