(a, b int)
| 344 | } |
| 345 | |
| 346 | func roundUp(a, b int) int { |
| 347 | return a + (b-a%b)%b |
| 348 | } |
| 349 | |
| 350 | // cbcMode is an interface for block ciphers using cipher block chaining. |
| 351 | type cbcMode interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…