summaryrefslogtreecommitdiff
path: root/pipermail/pycrypto/2012q4/000641.html
blob: 1eb8c7064ec8f747c6322ec8cff57b3e1bf88f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
 <HEAD>
   <TITLE> [pycrypto] Inovking Depreciation warnings in Python
   </TITLE>
   <LINK REL="Index" HREF="index.html" >
   <LINK REL="made" HREF="mailto:pycrypto%40lists.dlitz.net?Subject=Re%3A%20%5Bpycrypto%5D%20Inovking%20Depreciation%20warnings%20in%20Python&In-Reply-To=%3CCADKMUwn0JvtNpnLFez_tv5oKNBYY2%2BpP16DiPApiO9bfWmrA%3DA%40mail.gmail.com%3E">
   <META NAME="robots" CONTENT="index,nofollow">
   <style type="text/css">
       pre {
           white-space: pre-wrap;       /* css-2.1, curent FF, Opera, Safari */
           }
   </style>
   <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
   <LINK REL="Previous"  HREF="000640.html">
   <LINK REL="Next"  HREF="000647.html">
 </HEAD>
 <BODY BGCOLOR="#ffffff">
   <H1>[pycrypto] Inovking Depreciation warnings in Python</H1>
    <B>Oz Nahum Tiram</B> 
    <A HREF="mailto:pycrypto%40lists.dlitz.net?Subject=Re%3A%20%5Bpycrypto%5D%20Inovking%20Depreciation%20warnings%20in%20Python&In-Reply-To=%3CCADKMUwn0JvtNpnLFez_tv5oKNBYY2%2BpP16DiPApiO9bfWmrA%3DA%40mail.gmail.com%3E"
       TITLE="[pycrypto] Inovking Depreciation warnings in Python">nahumoz at gmail.com
       </A><BR>
    <I>Thu Dec 13 01:16:10 PST 2012</I>
    <P><UL>
        <LI>Previous message: <A HREF="000640.html">[pycrypto] Inovking Depreciation warnings in Python
</A></li>
        <LI>Next message: <A HREF="000647.html">[pycrypto] Remove DSA because 1024bit is not safe
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#641">[ date ]</a>
              <a href="thread.html#641">[ thread ]</a>
              <a href="subject.html#641">[ subject ]</a>
              <a href="author.html#641">[ author ]</a>
         </LI>
       </UL>
    <HR>  
<!--beginarticle-->
<PRE>Hi Dwayne,

First, thanks for the answer and sorry for the late reply.

So, I replace the following code with your example:

    # in the past:
    &gt;&gt;&gt; from Crypto.Util.randpool import RandomPool
    &gt;&gt;&gt; random = RandomPool()
    &gt;&gt;&gt; key = str(random.get_bytes(32)).encode('base64')

    # current:
    from Crypto.Random import get_random_bytes
    key = str(get_random_bytes(32).encode('base64'))

Is this correct? If so, that is sweet, an one line shorter!

Thanks,

Oz
</PRE>





<!--endarticle-->
    <HR>
    <P><UL>
        <!--threads-->
	<LI>Previous message: <A HREF="000640.html">[pycrypto] Inovking Depreciation warnings in Python
</A></li>
	<LI>Next message: <A HREF="000647.html">[pycrypto] Remove DSA because 1024bit is not safe
</A></li>
         <LI> <B>Messages sorted by:</B> 
              <a href="date.html#641">[ date ]</a>
              <a href="thread.html#641">[ thread ]</a>
              <a href="subject.html#641">[ subject ]</a>
              <a href="author.html#641">[ author ]</a>
         </LI>
       </UL>

<hr>
<a href="http://lists.dlitz.net/cgi-bin/mailman/listinfo/pycrypto">More information about the pycrypto
mailing list</a><br>
</body></html>