()
| 159 | ) |
| 160 | |
| 161 | func init() { |
| 162 | RegisterDecrypter(AES128CBC) |
| 163 | RegisterDecrypter(AES192CBC) |
| 164 | RegisterDecrypter(AES256CBC) |
| 165 | RegisterDecrypter(TripleDES) |
| 166 | } |
| 167 | |
| 168 | func appendPadding(buf []byte, blockSize int) []byte { |
| 169 | paddingBytes := blockSize - (len(buf) % blockSize) |
nothing calls this directly
no test coverage detected