(a, b int)
| 333 | } |
| 334 | |
| 335 | func roundUp(a, b int) int { |
| 336 | return a + (b-a%b)%b |
| 337 | } |
| 338 | |
| 339 | // cbcMode is an interface for block ciphers using cipher block chaining. |
| 340 | type cbcMode interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…