File: _md5.pyi

package info (click to toggle)
mypy 0.470-complete-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 5,864 kB
  • ctags: 3,264
  • sloc: python: 21,838; makefile: 18
file content (13 lines) | stat: -rw-r--r-- 372 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
blocksize = ...  # type: int
digest_size = ...  # type: int

class MD5Type(object):
    name = ...  # type: str
    block_size = ...  # type: int
    digest_size = ...  # type: int
    def copy(self) -> "MD5Type": ...
    def digest(self) -> str: ...
    def hexdigest(self) -> str: ...
    def update(self, arg: str) -> None: ...

def new(arg: str = ...) -> MD5Type: ...