mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 14:21:53 +00:00
7 lines
224 B
Python
7 lines
224 B
Python
from pysnmp.hlapi import UsmUserData
|
|
|
|
|
|
insecure = UsmUserData("securityName") # S509
|
|
auth_no_priv = UsmUserData("securityName", "authName") # S509
|
|
|
|
less_insecure = UsmUserData("securityName", "authName", "privName") # OK
|