Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
|
Data Structures | |
class | HMAC |
Functions | |
def | update |
def clear(self): raise NotImplementedError, "clear() method not available in HMAC." More... | |
def | copy |
def | digest |
def | hexdigest |
def | new |
Variables | |
digest_size = None | |
HMAC (Keyed-Hashing for Message Authentication) Python module. Implements the HMAC algorithm as described by RFC 2104.
def hmac.copy | ( | self) |
Return a separate copy of this hashing object. An update to this copy won't affect the original object.
def hmac.hexdigest | ( | self) |
Like digest(), but returns a string of hexadecimal digits instead.
Definition at line 82 of file hmac.py.
References dospath.join(), log_faction_ships.tuple, and string.zfill().
def hmac.new | ( | key, | |
msg = None , |
|||
digestmod = None |
|||
) |
Create a new hashing object and return it. key: The starting key for the hash. msg: if available, will immediately be hashed into the object's starting state. You can now feed arbitrary strings into the object using its update() method, and can ask for the hash value at any time by calling its digest() method.
Definition at line 88 of file hmac.py.
def hmac.update | ( | self, | |
msg | |||
) |