(key, iv []byte, isRead bool)
| 399 | } |
| 400 | |
| 401 | func cipherRC4(key, iv []byte, isRead bool) any { |
| 402 | cipher, _ := rc4.NewCipher(key) |
| 403 | return cipher |
| 404 | } |
| 405 | |
| 406 | func cipher3DES(key, iv []byte, isRead bool) any { |
| 407 | block, _ := des.NewTripleDESCipher(key) |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…