| 1631 | } |
| 1632 | |
| 1633 | void JLSRTP::displaySessionAuthenticationKey() |
| 1634 | { |
| 1635 | //printf("session_authentication_key[] size: %d\n", _session_auth_key.size()); |
| 1636 | |
| 1637 | printf("_session_auth_key : ["); |
| 1638 | for (unsigned int i = 0; i < _session_auth_key.size(); i++) |
| 1639 | { |
| 1640 | printf("%02x", _session_auth_key[i]); |
| 1641 | } |
| 1642 | printf("]\n"); |
| 1643 | } |
| 1644 | |
| 1645 | int JLSRTP::selectEncryptionKey() |
| 1646 | { |