| 32 | // --------------- PRIVATE METHODS ---------------- |
| 33 | |
| 34 | bool JLSRTP::isBase64(unsigned char c) |
| 35 | { |
| 36 | return (isalnum(c) || |
| 37 | (c == '+') || |
| 38 | (c == '/')); |
| 39 | } |
| 40 | |
| 41 | int JLSRTP::resetPseudoRandomState(std::vector<unsigned char> iv) |
| 42 | { |
nothing calls this directly
no outgoing calls
no test coverage detected