0

私はこれをC++でやろうとしています.Pythonでいくつかのコードを持っていますが、C++でそれを機能させる方法がわかりません.

def seguid(seq):

    try:
        #Python 2.5 sha1 is in hashlib
        import hashlib
        m = hashlib.sha1()
    except:
        #For older versions 
        import sha
        m = sha.new()
    import base64
    try:
        #Assume its a Seq object
        seq = seq.tostring()
    except AttributeError:
        #Assume its a string
        pass
    m.update(_as_bytes(seq.upper()))

    try:
        #For Python 2.5+
        return base64.b64encode(m.digest()).rstrip("=")
    except:
        #For older versions
        import os
        #Note: Using os.linesep doesn't work on Windows,
        #where os.linesep= "\r\n" but the encoded string
        #contains "\n" but not "\r\n"
        return base64.encodestring(m.digest()).replace("\n","").rstrip("=")
4

1 に答える 1

0

i Python コードを C/C++ コードに埋め込むことができると思います。詳細については、次のリンクを参照してください。

http://www.codeproject.com/Articles/11805/Embedding-Python-in-CC-Part-I

http://www.linuxjournal.com/article/8497

于 2013-02-07T06:19:47.860 に答える