Smack/smack-experimental/src/main/java/org/jivesoftware/smackx/jet/JingleEnvelopeManager.java

53 lines
1.8 KiB
Java
Raw Normal View History

2017-07-13 21:36:37 +02:00
/**
*
* Copyright 2017 Paul Schaub
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
2017-07-13 21:45:04 +02:00
package org.jivesoftware.smackx.jet;
2017-07-13 21:36:37 +02:00
import java.security.NoSuchAlgorithmException;
import org.jivesoftware.smack.SmackException;
2017-07-30 22:31:29 +02:00
import org.jivesoftware.smack.XMPPConnection;
2017-07-13 21:36:37 +02:00
import org.jivesoftware.smack.XMPPException;
import org.jivesoftware.smack.packet.ExtensionElement;
import org.jxmpp.jid.FullJid;
/**
2017-07-13 21:58:49 +02:00
* Classes that implement this interface can be used to encrypt Jingle File Transfers.
2017-07-13 21:36:37 +02:00
*/
2017-08-16 16:42:11 +02:00
public interface JingleEnvelopeManager {
2017-07-13 21:36:37 +02:00
2017-08-16 16:42:11 +02:00
ExtensionElement encryptJingleTransfer(FullJid recipient, byte[] keyData)
throws JingleEncryptionException, InterruptedException, NoSuchAlgorithmException,
SmackException.NotConnectedException, SmackException.NoResponseException;
2017-07-13 21:36:37 +02:00
2017-08-16 16:42:11 +02:00
byte[] decryptJingleTransfer(FullJid sender, ExtensionElement envelope)
throws JingleEncryptionException, InterruptedException, XMPPException.XMPPErrorException,
SmackException.NotConnectedException, SmackException.NoResponseException;
2017-07-13 21:36:37 +02:00
class JingleEncryptionException extends Exception {
2017-07-13 21:45:04 +02:00
private static final long serialVersionUID = 1L;
2017-07-13 21:36:37 +02:00
public JingleEncryptionException(Throwable throwable) {
super(throwable);
}
}
2017-07-30 22:31:29 +02:00
XMPPConnection getConnection();
2017-08-16 16:42:11 +02:00
String getJingleEnvelopeNamespace();
2017-07-13 21:36:37 +02:00
}