2016-10-13 19:21:01 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2016 OpenMarket Ltd
|
2016-12-22 11:12:41 +01:00
|
|
|
* Copyright 2016 Vector Creations Ltd
|
2016-10-13 19:21:01 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2019-02-15 23:13:07 +01:00
|
|
|
#ifndef _OLMOUTBOUND_GROUP_SESSION_H
|
|
|
|
#define _OLMOUTBOUND_GROUP_SESSION_H
|
2016-10-13 19:21:01 +02:00
|
|
|
|
|
|
|
#include "olm_jni.h"
|
|
|
|
#include "olm/olm.h"
|
|
|
|
#include "olm/outbound_group_session.h"
|
|
|
|
|
|
|
|
#define OLM_OUTBOUND_GROUP_SESSION_FUNC_DEF(func_name) FUNC_DEF(OlmOutboundGroupSession,func_name)
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// session creation/destruction
|
|
|
|
JNIEXPORT void OLM_OUTBOUND_GROUP_SESSION_FUNC_DEF(releaseSessionJni)(JNIEnv *env, jobject thiz);
|
2016-10-23 23:55:45 +02:00
|
|
|
JNIEXPORT jlong OLM_OUTBOUND_GROUP_SESSION_FUNC_DEF(createNewSessionJni)(JNIEnv *env, jobject thiz);
|
2016-10-13 19:21:01 +02:00
|
|
|
|
2017-01-03 16:12:20 +01:00
|
|
|
JNIEXPORT jbyteArray OLM_OUTBOUND_GROUP_SESSION_FUNC_DEF(sessionIdentifierJni)(JNIEnv *env, jobject thiz);
|
2016-10-14 15:27:20 +02:00
|
|
|
JNIEXPORT jint OLM_OUTBOUND_GROUP_SESSION_FUNC_DEF(messageIndexJni)(JNIEnv *env, jobject thiz);
|
2017-01-03 16:12:20 +01:00
|
|
|
JNIEXPORT jbyteArray OLM_OUTBOUND_GROUP_SESSION_FUNC_DEF(sessionKeyJni)(JNIEnv *env, jobject thiz);
|
2016-10-14 15:27:20 +02:00
|
|
|
|
2017-01-04 13:13:13 +01:00
|
|
|
JNIEXPORT jbyteArray OLM_OUTBOUND_GROUP_SESSION_FUNC_DEF(encryptMessageJni)(JNIEnv *env, jobject thiz, jbyteArray aClearMsgBuffer);
|
2016-10-13 19:21:01 +02:00
|
|
|
|
2016-10-21 19:05:20 +02:00
|
|
|
// serialization
|
2017-01-04 18:30:35 +01:00
|
|
|
JNIEXPORT jbyteArray OLM_OUTBOUND_GROUP_SESSION_FUNC_DEF(serializeJni)(JNIEnv *env, jobject thiz, jbyteArray aKey);
|
2017-01-10 11:40:57 +01:00
|
|
|
JNIEXPORT jlong OLM_OUTBOUND_GROUP_SESSION_FUNC_DEF(deserializeJni)(JNIEnv *env, jobject thiz, jbyteArray aSerializedData, jbyteArray aKey);
|
2016-10-13 19:21:01 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|