Get a cryptographically secure random numder as an integer in python

Multi tool use
I try to perform some modular exponentiation in order to perform some chained Diffie Hellman key agreement (for research puproce).
Thus I generate the random key like that:
priv_value=Random.get_random_bytes(128)
And I generate the Diffie Hellman public value like that:
def dh_public(secret):
g=2
p="""FFFFFFFF FFFFFFFF C90FDAA2 2168C234 C4C6628B 80DC1CD1
29024E08 8A67CC74 020BBEA6 3B139B22 514A0879 8E3404DD
EF9519B3 CD3A431B 302B0A6D F25F1437 4FE1356D 6D51C245
E485B576 625E7EC6 F44C42E9 A637ED6B 0BFF5CB6 F406B7ED
EE386BFB 5A899FA5 AE9F2411 7C4B1FE6 49286651 ECE45B3D
C2007CB8 A163BF05 98DA4836 1C55D39A 69163FA8 FD24CF5F
83655D23 DCA3AD96 1C62F356 208552BB 9ED52907 7096966D
670C354E 4ABC9804 F1746C08 CA18217C 32905E46 2E36CE3B
E39E772C 180E8603 9B2783A2 EC07A28F B5C55DF0 6F4C52C9
DE2BCBF6 95581718 3995497C EA956AE5 15D22618 98FA0510
15728E5A 8AACAA68 FFFFFFFF FFFFFFFF"""
p=re.sub(r"[nts]*", "", p)
p=int(p,16)
return pow(g,secret,p)
So my script that does the calculation is:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# -*- Mode: python; c-basic-offset: 4 -*-
from Crypto import Random
import re
priv=Random.get_random_bytes(128)
def dh_public(secret):
g=2
p="""FFFFFFFF FFFFFFFF C90FDAA2 2168C234 C4C6628B 80DC1CD1
29024E08 8A67CC74 020BBEA6 3B139B22 514A0879 8E3404DD
EF9519B3 CD3A431B 302B0A6D F25F1437 4FE1356D 6D51C245
E485B576 625E7EC6 F44C42E9 A637ED6B 0BFF5CB6 F406B7ED
EE386BFB 5A899FA5 AE9F2411 7C4B1FE6 49286651 ECE45B3D
C2007CB8 A163BF05 98DA4836 1C55D39A 69163FA8 FD24CF5F
83655D23 DCA3AD96 1C62F356 208552BB 9ED52907 7096966D
670C354E 4ABC9804 F1746C08 CA18217C 32905E46 2E36CE3B
E39E772C 180E8603 9B2783A2 EC07A28F B5C55DF0 6F4C52C9
DE2BCBF6 95581718 3995497C EA956AE5 15D22618 98FA0510
15728E5A 8AACAA68 FFFFFFFF FFFFFFFF"""
p=re.sub(r"[nts]*", "", p)
p=int(p,16)
return pow(g,secret,p)
print dh_public(priv)
With g
and p
values that are based upon RFC3526.
But when I try to run it I get the following error:
Traceback (most recent call last):
File "/home/pcmagas/Kwdikas/python/DHKeylist/dh_demo.py", line 28, in <module>
print dh_public(priv)
File "/home/pcmagas/Kwdikas/python/DHKeylist/dh_demo.py", line 26, in dh_public
return pow(g,secret,p)
TypeError: unsupported operand type(s) for pow(): 'int', 'str', 'long'
So my problem is on how to convert the Random.get_random_bytes
value to integer. (I do not know the base to convert them with python's int
method.)
python python-2.7 diffie-hellman
add a comment |
I try to perform some modular exponentiation in order to perform some chained Diffie Hellman key agreement (for research puproce).
Thus I generate the random key like that:
priv_value=Random.get_random_bytes(128)
And I generate the Diffie Hellman public value like that:
def dh_public(secret):
g=2
p="""FFFFFFFF FFFFFFFF C90FDAA2 2168C234 C4C6628B 80DC1CD1
29024E08 8A67CC74 020BBEA6 3B139B22 514A0879 8E3404DD
EF9519B3 CD3A431B 302B0A6D F25F1437 4FE1356D 6D51C245
E485B576 625E7EC6 F44C42E9 A637ED6B 0BFF5CB6 F406B7ED
EE386BFB 5A899FA5 AE9F2411 7C4B1FE6 49286651 ECE45B3D
C2007CB8 A163BF05 98DA4836 1C55D39A 69163FA8 FD24CF5F
83655D23 DCA3AD96 1C62F356 208552BB 9ED52907 7096966D
670C354E 4ABC9804 F1746C08 CA18217C 32905E46 2E36CE3B
E39E772C 180E8603 9B2783A2 EC07A28F B5C55DF0 6F4C52C9
DE2BCBF6 95581718 3995497C EA956AE5 15D22618 98FA0510
15728E5A 8AACAA68 FFFFFFFF FFFFFFFF"""
p=re.sub(r"[nts]*", "", p)
p=int(p,16)
return pow(g,secret,p)
So my script that does the calculation is:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# -*- Mode: python; c-basic-offset: 4 -*-
from Crypto import Random
import re
priv=Random.get_random_bytes(128)
def dh_public(secret):
g=2
p="""FFFFFFFF FFFFFFFF C90FDAA2 2168C234 C4C6628B 80DC1CD1
29024E08 8A67CC74 020BBEA6 3B139B22 514A0879 8E3404DD
EF9519B3 CD3A431B 302B0A6D F25F1437 4FE1356D 6D51C245
E485B576 625E7EC6 F44C42E9 A637ED6B 0BFF5CB6 F406B7ED
EE386BFB 5A899FA5 AE9F2411 7C4B1FE6 49286651 ECE45B3D
C2007CB8 A163BF05 98DA4836 1C55D39A 69163FA8 FD24CF5F
83655D23 DCA3AD96 1C62F356 208552BB 9ED52907 7096966D
670C354E 4ABC9804 F1746C08 CA18217C 32905E46 2E36CE3B
E39E772C 180E8603 9B2783A2 EC07A28F B5C55DF0 6F4C52C9
DE2BCBF6 95581718 3995497C EA956AE5 15D22618 98FA0510
15728E5A 8AACAA68 FFFFFFFF FFFFFFFF"""
p=re.sub(r"[nts]*", "", p)
p=int(p,16)
return pow(g,secret,p)
print dh_public(priv)
With g
and p
values that are based upon RFC3526.
But when I try to run it I get the following error:
Traceback (most recent call last):
File "/home/pcmagas/Kwdikas/python/DHKeylist/dh_demo.py", line 28, in <module>
print dh_public(priv)
File "/home/pcmagas/Kwdikas/python/DHKeylist/dh_demo.py", line 26, in dh_public
return pow(g,secret,p)
TypeError: unsupported operand type(s) for pow(): 'int', 'str', 'long'
So my problem is on how to convert the Random.get_random_bytes
value to integer. (I do not know the base to convert them with python's int
method.)
python python-2.7 diffie-hellman
1
secret
is here a string, so the second parameter.
– Willem Van Onsem
Nov 14 '18 at 19:59
Yes my issue is how to get a cryptographically secure value as integer or long.
– Dimitrios Desyllas
Nov 14 '18 at 20:01
add a comment |
I try to perform some modular exponentiation in order to perform some chained Diffie Hellman key agreement (for research puproce).
Thus I generate the random key like that:
priv_value=Random.get_random_bytes(128)
And I generate the Diffie Hellman public value like that:
def dh_public(secret):
g=2
p="""FFFFFFFF FFFFFFFF C90FDAA2 2168C234 C4C6628B 80DC1CD1
29024E08 8A67CC74 020BBEA6 3B139B22 514A0879 8E3404DD
EF9519B3 CD3A431B 302B0A6D F25F1437 4FE1356D 6D51C245
E485B576 625E7EC6 F44C42E9 A637ED6B 0BFF5CB6 F406B7ED
EE386BFB 5A899FA5 AE9F2411 7C4B1FE6 49286651 ECE45B3D
C2007CB8 A163BF05 98DA4836 1C55D39A 69163FA8 FD24CF5F
83655D23 DCA3AD96 1C62F356 208552BB 9ED52907 7096966D
670C354E 4ABC9804 F1746C08 CA18217C 32905E46 2E36CE3B
E39E772C 180E8603 9B2783A2 EC07A28F B5C55DF0 6F4C52C9
DE2BCBF6 95581718 3995497C EA956AE5 15D22618 98FA0510
15728E5A 8AACAA68 FFFFFFFF FFFFFFFF"""
p=re.sub(r"[nts]*", "", p)
p=int(p,16)
return pow(g,secret,p)
So my script that does the calculation is:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# -*- Mode: python; c-basic-offset: 4 -*-
from Crypto import Random
import re
priv=Random.get_random_bytes(128)
def dh_public(secret):
g=2
p="""FFFFFFFF FFFFFFFF C90FDAA2 2168C234 C4C6628B 80DC1CD1
29024E08 8A67CC74 020BBEA6 3B139B22 514A0879 8E3404DD
EF9519B3 CD3A431B 302B0A6D F25F1437 4FE1356D 6D51C245
E485B576 625E7EC6 F44C42E9 A637ED6B 0BFF5CB6 F406B7ED
EE386BFB 5A899FA5 AE9F2411 7C4B1FE6 49286651 ECE45B3D
C2007CB8 A163BF05 98DA4836 1C55D39A 69163FA8 FD24CF5F
83655D23 DCA3AD96 1C62F356 208552BB 9ED52907 7096966D
670C354E 4ABC9804 F1746C08 CA18217C 32905E46 2E36CE3B
E39E772C 180E8603 9B2783A2 EC07A28F B5C55DF0 6F4C52C9
DE2BCBF6 95581718 3995497C EA956AE5 15D22618 98FA0510
15728E5A 8AACAA68 FFFFFFFF FFFFFFFF"""
p=re.sub(r"[nts]*", "", p)
p=int(p,16)
return pow(g,secret,p)
print dh_public(priv)
With g
and p
values that are based upon RFC3526.
But when I try to run it I get the following error:
Traceback (most recent call last):
File "/home/pcmagas/Kwdikas/python/DHKeylist/dh_demo.py", line 28, in <module>
print dh_public(priv)
File "/home/pcmagas/Kwdikas/python/DHKeylist/dh_demo.py", line 26, in dh_public
return pow(g,secret,p)
TypeError: unsupported operand type(s) for pow(): 'int', 'str', 'long'
So my problem is on how to convert the Random.get_random_bytes
value to integer. (I do not know the base to convert them with python's int
method.)
python python-2.7 diffie-hellman
I try to perform some modular exponentiation in order to perform some chained Diffie Hellman key agreement (for research puproce).
Thus I generate the random key like that:
priv_value=Random.get_random_bytes(128)
And I generate the Diffie Hellman public value like that:
def dh_public(secret):
g=2
p="""FFFFFFFF FFFFFFFF C90FDAA2 2168C234 C4C6628B 80DC1CD1
29024E08 8A67CC74 020BBEA6 3B139B22 514A0879 8E3404DD
EF9519B3 CD3A431B 302B0A6D F25F1437 4FE1356D 6D51C245
E485B576 625E7EC6 F44C42E9 A637ED6B 0BFF5CB6 F406B7ED
EE386BFB 5A899FA5 AE9F2411 7C4B1FE6 49286651 ECE45B3D
C2007CB8 A163BF05 98DA4836 1C55D39A 69163FA8 FD24CF5F
83655D23 DCA3AD96 1C62F356 208552BB 9ED52907 7096966D
670C354E 4ABC9804 F1746C08 CA18217C 32905E46 2E36CE3B
E39E772C 180E8603 9B2783A2 EC07A28F B5C55DF0 6F4C52C9
DE2BCBF6 95581718 3995497C EA956AE5 15D22618 98FA0510
15728E5A 8AACAA68 FFFFFFFF FFFFFFFF"""
p=re.sub(r"[nts]*", "", p)
p=int(p,16)
return pow(g,secret,p)
So my script that does the calculation is:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# -*- Mode: python; c-basic-offset: 4 -*-
from Crypto import Random
import re
priv=Random.get_random_bytes(128)
def dh_public(secret):
g=2
p="""FFFFFFFF FFFFFFFF C90FDAA2 2168C234 C4C6628B 80DC1CD1
29024E08 8A67CC74 020BBEA6 3B139B22 514A0879 8E3404DD
EF9519B3 CD3A431B 302B0A6D F25F1437 4FE1356D 6D51C245
E485B576 625E7EC6 F44C42E9 A637ED6B 0BFF5CB6 F406B7ED
EE386BFB 5A899FA5 AE9F2411 7C4B1FE6 49286651 ECE45B3D
C2007CB8 A163BF05 98DA4836 1C55D39A 69163FA8 FD24CF5F
83655D23 DCA3AD96 1C62F356 208552BB 9ED52907 7096966D
670C354E 4ABC9804 F1746C08 CA18217C 32905E46 2E36CE3B
E39E772C 180E8603 9B2783A2 EC07A28F B5C55DF0 6F4C52C9
DE2BCBF6 95581718 3995497C EA956AE5 15D22618 98FA0510
15728E5A 8AACAA68 FFFFFFFF FFFFFFFF"""
p=re.sub(r"[nts]*", "", p)
p=int(p,16)
return pow(g,secret,p)
print dh_public(priv)
With g
and p
values that are based upon RFC3526.
But when I try to run it I get the following error:
Traceback (most recent call last):
File "/home/pcmagas/Kwdikas/python/DHKeylist/dh_demo.py", line 28, in <module>
print dh_public(priv)
File "/home/pcmagas/Kwdikas/python/DHKeylist/dh_demo.py", line 26, in dh_public
return pow(g,secret,p)
TypeError: unsupported operand type(s) for pow(): 'int', 'str', 'long'
So my problem is on how to convert the Random.get_random_bytes
value to integer. (I do not know the base to convert them with python's int
method.)
python python-2.7 diffie-hellman
python python-2.7 diffie-hellman
edited Nov 14 '18 at 20:06
Dimitrios Desyllas
asked Nov 14 '18 at 19:58


Dimitrios DesyllasDimitrios Desyllas
2,21611549
2,21611549
1
secret
is here a string, so the second parameter.
– Willem Van Onsem
Nov 14 '18 at 19:59
Yes my issue is how to get a cryptographically secure value as integer or long.
– Dimitrios Desyllas
Nov 14 '18 at 20:01
add a comment |
1
secret
is here a string, so the second parameter.
– Willem Van Onsem
Nov 14 '18 at 19:59
Yes my issue is how to get a cryptographically secure value as integer or long.
– Dimitrios Desyllas
Nov 14 '18 at 20:01
1
1
secret
is here a string, so the second parameter.– Willem Van Onsem
Nov 14 '18 at 19:59
secret
is here a string, so the second parameter.– Willem Van Onsem
Nov 14 '18 at 19:59
Yes my issue is how to get a cryptographically secure value as integer or long.
– Dimitrios Desyllas
Nov 14 '18 at 20:01
Yes my issue is how to get a cryptographically secure value as integer or long.
– Dimitrios Desyllas
Nov 14 '18 at 20:01
add a comment |
1 Answer
1
active
oldest
votes
The key to your solution is the following...
Replace
return pow(g,secret,p)
with (for python 3)
return pow(g, int.from_bytes(secret, byteorder='big'), p)
or (for python 2.7)
return pow(g, int(secret.encode('hex'), 16), p)
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53307899%2fget-a-cryptographically-secure-random-numder-as-an-integer-in-python%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The key to your solution is the following...
Replace
return pow(g,secret,p)
with (for python 3)
return pow(g, int.from_bytes(secret, byteorder='big'), p)
or (for python 2.7)
return pow(g, int(secret.encode('hex'), 16), p)
add a comment |
The key to your solution is the following...
Replace
return pow(g,secret,p)
with (for python 3)
return pow(g, int.from_bytes(secret, byteorder='big'), p)
or (for python 2.7)
return pow(g, int(secret.encode('hex'), 16), p)
add a comment |
The key to your solution is the following...
Replace
return pow(g,secret,p)
with (for python 3)
return pow(g, int.from_bytes(secret, byteorder='big'), p)
or (for python 2.7)
return pow(g, int(secret.encode('hex'), 16), p)
The key to your solution is the following...
Replace
return pow(g,secret,p)
with (for python 3)
return pow(g, int.from_bytes(secret, byteorder='big'), p)
or (for python 2.7)
return pow(g, int(secret.encode('hex'), 16), p)
answered Nov 14 '18 at 20:22
JulianJulian
866413
866413
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53307899%2fget-a-cryptographically-secure-random-numder-as-an-integer-in-python%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
4byNxFbzy4ak1E,z4XcFc,D1X,NPtPD6U7,r,VX 9C
1
secret
is here a string, so the second parameter.– Willem Van Onsem
Nov 14 '18 at 19:59
Yes my issue is how to get a cryptographically secure value as integer or long.
– Dimitrios Desyllas
Nov 14 '18 at 20:01