Lichen

lib/_hashlib.py

118:900d641f42d6
2016-10-20 Paul Boddie Added some more support for generating invocation code, distinguishing between static invocation targets that are identified and whose functions can be obtained directly and other kinds of targets whose functions must be obtained via the special attribute.
     1 #!/usr/bin/env python     2      3 def new(s=None):     4     pass     5      6 def openssl_md5(s=None):     7     pass     8      9 def openssl_sha1(s=None):    10     pass    11     12 def openssl_sha224(s=None):    13     pass    14     15 def openssl_sha256(s=None):    16     pass    17     18 def openssl_sha384(s=None):    19     pass    20     21 def openssl_sha512(s=None):    22     pass    23     24 # vim: tabstop=4 expandtab shiftwidth=4