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