(input string)
| 172 | } |
| 173 | |
| 174 | func removeFirstLastChar(input string) string { |
| 175 | if len(input) <= 1 { |
| 176 | return input |
| 177 | } |
| 178 | return input[1 : len(input)-1] |
| 179 | } |
| 180 | |
| 181 | func SecretToSecretInfo(out output.IOCFound, matchIndex int) *pb.SecretInfo { |
| 182 | signature := "" |
no outgoing calls
no test coverage detected