Package nss :: Module nss :: Class RSAGenParams
[hide private]
[frames] | no frames]

type RSAGenParams

object --+
         |
        RSAGenParams

RSAGenParams(key_size=1024, public_exponent=0x10001)

An object representing RSAGenParams.

Instance Methods [hide private]
 
__init__(key_size=1024, public_exponent=0x10001)
x.__init__(...) initializes x; see help(type(x)) for signature
a new object with type S, a subtype of T
__new__(T, S, ...)
 
__str__(x)
str(x)
Properties [hide private]
  key_size
key size in bits (integer)
  public_exponent
public exponent (integer)
Method Details [hide private]

__init__(key_size=1024, public_exponent=0x10001)
(Constructor)

 
x.__init__(...) initializes x; see help(type(x)) for signature
Parameters:
  • key_size (integer) - RSA key size in bits.
  • public_exponent (integer) - public exponent.
Overrides: object.__init__

__new__(T, S, ...)

 
Returns: a new object with type S, a subtype of T
Overrides: object.__new__

__str__(x)
(Informal representation operator)

 
str(x)
Overrides: object.__str__