Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
tg
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
tg
Commits
7a5fa39f
Commit
7a5fa39f
authored
Dec 25, 2013
by
vysheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
do_rand () renamed to secure_random ()
parent
b2ba81e7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
mtproto-client.c
mtproto-client.c
+5
-5
mtproto-client.h
mtproto-client.h
+1
-1
queries.c
queries.c
+1
-1
No files found.
mtproto-client.c
View file @
7a5fa39f
...
...
@@ -98,7 +98,7 @@ double get_utime (int clock_id) {
return
res
;
}
void
do_rand
(
void
*
s
,
int
l
)
{
void
secure_random
(
void
*
s
,
int
l
)
{
if
(
RAND_bytes
(
s
,
l
)
<
0
)
{
if
(
allow_weak_random
)
{
RAND_pseudo_bytes
(
s
,
l
);
...
...
@@ -232,7 +232,7 @@ int rpc_send_message (struct connection *c, void *data, int len) {
int
send_req_pq_packet
(
struct
connection
*
c
)
{
assert
(
c_state
==
st_init
);
do_rand
(
nonce
,
16
);
secure_random
(
nonce
,
16
);
unenc_msg_header
.
out_msg_id
=
0
;
clear_packet
();
out_int
(
CODE_req_pq
);
...
...
@@ -380,7 +380,7 @@ int process_respq_answer (struct connection *c, char *packet, int len) {
//out_int (0x0501); // q=5
out_ints
((
int
*
)
nonce
,
4
);
out_ints
((
int
*
)
server_nonce
,
4
);
do_rand
(
new_nonce
,
32
);
secure_random
(
new_nonce
,
32
);
out_ints
((
int
*
)
new_nonce
,
8
);
sha1
((
unsigned
char
*
)
(
packet_buffer
+
5
),
(
packet_ptr
-
packet_buffer
-
5
)
*
4
,
(
unsigned
char
*
)
packet_buffer
);
...
...
@@ -573,7 +573,7 @@ int process_dh_answer (struct connection *c, char *packet, int len) {
BN_init
(
&
dh_g
);
BN_set_word
(
&
dh_g
,
g
);
do_rand
(
s_power
,
256
);
secure_random
(
s_power
,
256
);
BIGNUM
*
dh_power
=
BN_new
();
assert
(
BN_bin2bn
((
unsigned
char
*
)
s_power
,
256
,
dh_power
)
==
dh_power
);
...
...
@@ -692,7 +692,7 @@ void init_enc_msg (struct session *S, int useful) {
// assert (DC->server_salt);
enc_msg
.
server_salt
=
DC
->
server_salt
;
if
(
!
S
->
session_id
)
{
do_rand
(
&
S
->
session_id
,
8
);
secure_random
(
&
S
->
session_id
,
8
);
}
enc_msg
.
session_id
=
S
->
session_id
;
//enc_msg.auth_key_id2 = auth_key_id;
...
...
mtproto-client.h
View file @
7a5fa39f
...
...
@@ -29,5 +29,5 @@ void work_update_binlog (void);
int
check_g
(
unsigned
char
p
[
256
],
BIGNUM
*
g
);
int
check_g_bn
(
BIGNUM
*
p
,
BIGNUM
*
g
);
int
check_DH_params
(
BIGNUM
*
p
,
int
g
);
void
do_rand
(
void
*
s
,
int
l
);
void
secure_random
(
void
*
s
,
int
l
);
#endif
queries.c
View file @
7a5fa39f
...
...
@@ -2264,7 +2264,7 @@ void do_send_accept_encr_chat (struct secret_chat *E, unsigned char *random) {
}
if
(
ok
)
{
return
;
}
// Already generated key for this chat
unsigned
char
random_here
[
256
];
do_rand
(
random_here
,
256
);
secure_random
(
random_here
,
256
);
for
(
i
=
0
;
i
<
256
;
i
++
)
{
random
[
i
]
^=
random_here
[
i
];
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment