diff options
author | Sebastien Vincent <seb@jitsi.org> | 2010-09-09 14:06:40 +0000 |
---|---|---|
committer | Sebastien Vincent <seb@jitsi.org> | 2010-09-09 14:06:40 +0000 |
commit | 011b1315c1c4e82f845505234a30cc7376b94af6 (patch) | |
tree | c3dccd0fecd98afbeff8105046bbba3ac08639e8 /src/net/java/sip/communicator/service/neomedia | |
parent | 3dab7496598a055a2a4bbb2a980238893e4c6f0e (diff) | |
download | jitsi-011b1315c1c4e82f845505234a30cc7376b94af6.zip jitsi-011b1315c1c4e82f845505234a30cc7376b94af6.tar.gz jitsi-011b1315c1c4e82f845505234a30cc7376b94af6.tar.bz2 |
ZRTP support for XMPP.
Diffstat (limited to 'src/net/java/sip/communicator/service/neomedia')
-rw-r--r-- | src/net/java/sip/communicator/service/neomedia/ZrtpControl.java | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/net/java/sip/communicator/service/neomedia/ZrtpControl.java b/src/net/java/sip/communicator/service/neomedia/ZrtpControl.java index 54a961a..be31e03 100644 --- a/src/net/java/sip/communicator/service/neomedia/ZrtpControl.java +++ b/src/net/java/sip/communicator/service/neomedia/ZrtpControl.java @@ -19,7 +19,7 @@ public interface ZrtpControl * Cleans up the current zrtp control and its engine. */ public void cleanup(); - + /** * Sets a <tt>ZrtpListener</tt> that will listen for * zrtp security events. @@ -73,4 +73,14 @@ public interface ZrtpControl * @return String the zrtp hello hash. */ public String getHelloHash(); + + /** + * Get the ZRTP Hello Hash data - separate strings. + * + * @return String array containing the version string at offset 0, the Hello + * hash value as hex-digits at offset 1. Hello hash is available + * immediately after class instantiation. Returns <code>null</code> + * if ZRTP is not available. + */ + public String[] getHelloHashSep(); } |