MOON
Server: Apache/2.2.34 (Unix) mod_ssl/2.2.34 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 FrontPage/5.0.2.2635
System: Linux server.asjudinet.com 2.6.32-042stab141.3 #1 SMP Fri Nov 15 22:45:34 MSK 2019 i686
User: asjudine (504)
PHP: 5.2.17
Disabled: NONE
Upload Files
File: //usr/share/doc/m2crypto-0.16/demo/dhtest.py
#!/usr/bin/python

"""DH demonstration.

Copyright (c) 1999-2003 Ng Pheng Siong. All rights reserved."""

from M2Crypto import DH, Rand

def test():
    print 'generating dh params:'
    a = DH.gen_params(128, 2)
    b = DH.set_params(a.p, a.g)
    a.gen_key()
    b.gen_key()
    print 'p = ', `a.p`
    print 'g = ', `a.g`
    print 'a.pub =', `a.pub`
    print 'a.priv =', `a.priv`
    print 'b.pub =', `b.pub`
    print 'b.priv =', `b.priv`
    print 'a.key = ', `a.compute_key(b.pub)`
    print 'b.key = ', `b.compute_key(a.pub)`

if __name__=='__main__':
    Rand.load_file('randpool.dat', -1) 
    test()
    Rand.save_file('randpool.dat')