Esempio n. 1
0
 def _set_context(self, md):
     # type: (str) -> None
     mda = getattr(m2, md, None)  # type: Optional[Callable]
     if mda is None:
         raise ValueError('unknown message digest', md)
     self.md = mda()
     self.ctx = m2.md_ctx_new()  # type: Context
Esempio n. 2
0
 def _set_context(self, md):
     # type: (str) -> None
     mda = getattr(m2, md, None)  # type: Optional[Callable]
     if mda is None:
         raise ValueError('unknown message digest', md)
     self.md = mda()
     self.ctx = m2.md_ctx_new()  # type: Context
Esempio n. 3
0
 def __init__(self, algo):
     # type: (str) -> None
     md = getattr(m2, algo, None)  # type: Optional[Callable]
     if md is None:
         # if the digest algorithm isn't found as an attribute of the m2
         # module, try to look up the digest using get_digestbyname()
         self.md = m2.get_digestbyname(algo)
     else:
         self.md = md()
     self.ctx = m2.md_ctx_new()
     m2.digest_init(self.ctx, self.md)
Esempio n. 4
0
 def __init__(self, algo):
     # type: (str) -> None
     md = getattr(m2, algo, None)  # type: Optional[Callable]
     if md is None:
         # if the digest algorithm isn't found as an attribute of the m2
         # module, try to look up the digest using get_digestbyname()
         self.md = m2.get_digestbyname(algo)
     else:
         self.md = md()
     self.ctx = m2.md_ctx_new()
     m2.digest_init(self.ctx, self.md)
Esempio n. 5
0
 def __init__(self, algo):
     md = getattr(m2, algo, None)
     if md is None:
         # if the digest algorithm isn't found as an attribute of the m2
         # module, try to look up the digest using get_digestbyname()
         self.md = m2.get_digestbyname(algo)
         if self.md is None:
             raise ValueError('unknown algorithm', algo)
     else:
         self.md = md()
     self.ctx = m2.md_ctx_new()
     m2.digest_init(self.ctx, self.md)
Esempio n. 6
0
 def _set_context(self, md):
     mda = getattr(m2, md, None)
     if mda is None:
         raise ValueError('unknown message digest', md)
     self.md = mda()
     self.ctx = m2.md_ctx_new()
Esempio n. 7
0
def m2c_sha(iter, txt=txt):
    ctx = m2.md_ctx_new()
    m2.digest_init(ctx, m2.sha1())
    for i in range(iter):
        m2.digest_update(ctx, txt)
    out = m2.digest_final(ctx)
Esempio n. 8
0
def m2c_sha(iter, txt=txt):
    ctx = m2.md_ctx_new()
    m2.digest_init(ctx, m2.sha1())
    for i in range(iter):
        m2.digest_update(ctx, txt)
    out = m2.digest_final(ctx)
Esempio n. 9
0
 def __init__(self, md):
     self.md = md
     self.ctx = m2.md_ctx_new()
     m2.digest_init(self.ctx, self.md)