Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mtxclient
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nheko Reborn
mtxclient
Commits
5b1b40d9
Commit
5b1b40d9
authored
6 years ago
by
Konstantinos Sideris
Browse files
Options
Downloads
Patches
Plain Diff
Add methods to retrieve session_id & session_key
parent
147836c8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
Makefile
+0
-1
0 additions, 1 deletion
Makefile
src/crypto.cpp
+26
-27
26 additions, 27 deletions
src/crypto.cpp
src/crypto.hpp
+71
-5
71 additions, 5 deletions
src/crypto.hpp
tests/e2ee.cpp
+17
-0
17 additions, 0 deletions
tests/e2ee.cpp
with
114 additions
and
33 deletions
Makefile
+
0
−
1
View file @
5b1b40d9
...
...
@@ -21,7 +21,6 @@ asan:
-DCMAKE_BUILD_TYPE
=
Debug
\
-DCMAKE_EXPORT_COMPILE_COMMANDS
=
1
\
-DOPENSSL_ROOT_DIR
=
/usr/local/opt/openssl
\
-DBUILD_OLM
=
1
\
-DASAN
=
1
@
cmake
--build
build
...
...
This diff is collapsed.
Click to expand it.
src/crypto.cpp
+
26
−
27
View file @
5b1b40d9
...
...
@@ -13,8 +13,7 @@ OlmClient::create_new_account()
if
(
account_
)
return
;
account_
=
std
::
unique_ptr
<
OlmAccount
,
OlmDeleter
>
(
olm_account
(
new
uint8_t
[
olm_account_size
()]));
account_
=
create_olm_object
<
OlmAccount
>
();
auto
tmp_buf
=
create_buffer
(
olm_create_account_random_length
(
account_
.
get
()));
const
int
ret
=
olm_create_account
(
account_
.
get
(),
tmp_buf
->
data
(),
tmp_buf
->
size
());
...
...
@@ -32,15 +31,7 @@ OlmClient::create_new_utility()
if
(
utility_
)
return
;
utility_
=
std
::
unique_ptr
<
OlmUtility
,
OlmDeleter
>
(
olm_utility
(
new
uint8_t
[
olm_utility_size
()]));
}
std
::
unique_ptr
<
OlmSession
,
OlmDeleter
>
OlmClient
::
create_new_session
()
{
return
std
::
unique_ptr
<
OlmSession
,
OlmDeleter
>
(
olm_session
(
new
uint8_t
[
olm_session_size
()]));
utility_
=
create_olm_object
<
OlmUtility
>
();
}
IdentityKeys
...
...
@@ -182,24 +173,14 @@ OlmClient::create_upload_keys_request(const mtx::client::crypto::OneTimeKeys &on
return
req
;
}
std
::
unique_ptr
<
OlmSession
,
OlmDeleter
>
OlmClient
::
create_outbound_group_session
(
const
std
::
string
&
peer_identity_key
,
const
std
::
string
&
peer_one_time_key
)
std
::
unique_ptr
<
OlmOutboundGroupSession
,
OlmDeleter
>
OlmClient
::
init_outbound_group_session
()
{
auto
session
=
create_new_session
();
auto
tmp_buf
=
create_buffer
(
olm_create_outbound_session_random_length
(
session
.
get
()));
auto
idk_buf
=
str_to_buffer
(
peer_identity_key
);
auto
otk_buf
=
str_to_buffer
(
peer_one_time_key
);
auto
session
=
create_olm_object
<
OlmOutboundGroupSession
>
();
auto
tmp_buf
=
create_buffer
(
olm_init_outbound_group_session_random_length
(
session
.
get
()));
const
int
ret
=
olm_create_outbound_session
(
session
.
get
(),
account_
.
get
(),
idk_buf
->
data
(),
idk_buf
->
size
(),
otk_buf
->
data
(),
otk_buf
->
size
(),
tmp_buf
->
data
(),
tmp_buf
->
size
());
const
int
ret
=
olm_init_outbound_group_session
(
session
.
get
(),
tmp_buf
->
data
(),
tmp_buf
->
size
());
if
(
ret
==
-
1
)
throw
olm_exception
(
"init_outbound_group_session"
,
session
.
get
());
...
...
@@ -255,3 +236,21 @@ mtx::client::crypto::json_to_buffer(const nlohmann::json &obj)
{
return
str_to_buffer
(
obj
.
dump
());
}
std
::
string
mtx
::
client
::
crypto
::
session_id
(
OlmOutboundGroupSession
*
s
)
{
auto
tmp
=
create_buffer
(
olm_outbound_group_session_id_length
(
s
));
olm_outbound_group_session_id
(
s
,
tmp
->
data
(),
tmp
->
size
());
return
encode_base64
(
tmp
->
data
(),
tmp
->
size
());
}
std
::
string
mtx
::
client
::
crypto
::
session_key
(
OlmOutboundGroupSession
*
s
)
{
auto
tmp
=
create_buffer
(
olm_outbound_group_session_key_length
(
s
));
olm_outbound_group_session_key
(
s
,
tmp
->
data
(),
tmp
->
size
());
return
encode_base64
(
tmp
->
data
(),
tmp
->
size
());
}
This diff is collapsed.
Click to expand it.
src/crypto.hpp
+
71
−
5
View file @
5b1b40d9
...
...
@@ -81,6 +81,10 @@ public:
:
msg_
(
func
+
": "
+
std
::
string
(
olm_utility_last_error
(
util
)))
{}
olm_exception
(
std
::
string
func
,
OlmOutboundGroupSession
*
s
)
:
msg_
(
func
+
": "
+
std
::
string
(
olm_outbound_group_session_last_error
(
s
)))
{}
olm_exception
(
std
::
string
msg
)
:
msg_
(
msg
)
{}
...
...
@@ -105,8 +109,59 @@ create_buffer(std::size_t nbytes)
struct
OlmDeleter
{
void
operator
()(
OlmAccount
*
ptr
)
{
operator
delete
(
ptr
,
olm_account_size
());
}
void
operator
()(
OlmSession
*
ptr
)
{
operator
delete
(
ptr
,
olm_session_size
());
}
void
operator
()(
OlmUtility
*
ptr
)
{
operator
delete
(
ptr
,
olm_utility_size
());
}
void
operator
()(
OlmSession
*
ptr
)
{
operator
delete
(
ptr
,
olm_session_size
());
}
void
operator
()(
OlmOutboundGroupSession
*
ptr
)
{
operator
delete
(
ptr
,
olm_outbound_group_session_size
());
}
void
operator
()(
OlmInboundGroupSession
*
ptr
)
{
operator
delete
(
ptr
,
olm_inbound_group_session_size
());
}
};
template
<
class
T
>
struct
OlmAllocator
{
static
T
allocate
()
=
delete
;
};
template
<
>
struct
OlmAllocator
<
OlmAccount
>
{
static
OlmAccount
*
allocate
()
{
return
olm_account
(
new
uint8_t
[
olm_account_size
()]);
}
};
template
<
>
struct
OlmAllocator
<
OlmSession
>
{
static
OlmSession
*
allocate
()
{
return
olm_session
(
new
uint8_t
[
olm_session_size
()]);
}
};
template
<
>
struct
OlmAllocator
<
OlmUtility
>
{
static
OlmUtility
*
allocate
()
{
return
olm_utility
(
new
uint8_t
[
olm_utility_size
()]);
}
};
template
<
>
struct
OlmAllocator
<
OlmOutboundGroupSession
>
{
static
OlmOutboundGroupSession
*
allocate
()
{
return
olm_outbound_group_session
(
new
uint8_t
[
olm_outbound_group_session_size
()]);
}
};
template
<
>
struct
OlmAllocator
<
OlmInboundGroupSession
>
{
static
OlmInboundGroupSession
*
allocate
()
{
return
olm_inbound_group_session
(
new
uint8_t
[
olm_inbound_group_session_size
()]);
}
};
class
OlmClient
:
public
std
::
enable_shared_from_this
<
OlmClient
>
...
...
@@ -127,10 +182,15 @@ public:
//! Sign the given message.
std
::
unique_ptr
<
BinaryBuf
>
sign_message
(
const
std
::
string
&
msg
);
template
<
class
T
>
std
::
unique_ptr
<
T
,
OlmDeleter
>
create_olm_object
()
{
return
std
::
unique_ptr
<
T
,
OlmDeleter
>
(
OlmAllocator
<
T
>::
allocate
());
}
//! Create a new olm Account. Must be called before any other operation.
void
create_new_account
();
void
create_new_utility
();
std
::
unique_ptr
<
OlmSession
,
OlmDeleter
>
create_new_session
();
//! Retrieve the json representation of the identity keys for the given account.
IdentityKeys
identity_keys
();
...
...
@@ -154,9 +214,7 @@ public:
mtx
::
requests
::
UploadKeys
create_upload_keys_request
();
//! Create an outbount megolm session.
std
::
unique_ptr
<
OlmSession
,
OlmDeleter
>
create_outbound_group_session
(
const
std
::
string
&
peer_identity_key
,
const
std
::
string
&
peer_one_time_key
);
std
::
unique_ptr
<
OlmOutboundGroupSession
,
OlmDeleter
>
init_outbound_group_session
();
OlmAccount
*
account
()
{
return
account_
.
get
();
}
OlmUtility
*
utility
()
{
return
utility_
.
get
();
}
...
...
@@ -184,6 +242,14 @@ json_to_buffer(const nlohmann::json &obj);
std
::
unique_ptr
<
BinaryBuf
>
str_to_buffer
(
const
std
::
string
&
data
);
//! Retrieve the session id.
std
::
string
session_id
(
OlmOutboundGroupSession
*
s
);
//! Retrieve the session key.
std
::
string
session_key
(
OlmOutboundGroupSession
*
s
);
}
// namespace crypto
}
// namespace client
}
// namespace mtx
This diff is collapsed.
Click to expand it.
tests/e2ee.cpp
+
17
−
0
View file @
5b1b40d9
...
...
@@ -396,3 +396,20 @@ TEST(Encryption, EnableEncryption)
bob
->
close
();
carl
->
close
();
}
TEST
(
Encryption
,
CreateOutboundGroupSession
)
{
auto
alice
=
make_shared
<
mtx
::
client
::
crypto
::
OlmClient
>
();
auto
bob
=
make_shared
<
mtx
::
client
::
crypto
::
OlmClient
>
();
alice
->
create_new_account
();
bob
->
create_new_account
();
bob
->
generate_one_time_keys
(
1
);
alice
->
generate_one_time_keys
(
1
);
auto
outbound_session
=
alice
->
init_outbound_group_session
();
auto
session_id
=
mtx
::
client
::
crypto
::
session_id
(
outbound_session
.
get
());
auto
session_key
=
mtx
::
client
::
crypto
::
session_key
(
outbound_session
.
get
());
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment