MCPcopy Index your code
hub / github.com/USArmyResearchLab/Dshell / split_subjectAltName_string

Function split_subjectAltName_string

dshell/plugins/ssl/tls.py:846–852  ·  view source on GitHub ↗
(subjectAltName)

Source from the content-addressed store, hash-verified

844
845
846def split_subjectAltName_string(subjectAltName):
847 l = []
848 for an in subjectAltName.split(', '):
849 if an.startswith('DNS:'):
850 an = an[4:]
851 l.append(an)
852 return l
853
854
855class DshellPlugin(dshell.core.ConnectionPlugin):

Callers 1

connection_handlerMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected