文件操作 - HMAC.pyi
返回文件管理
返回主菜单
删除本文件
文件: /usr/lib/python3/dist-packages/Cryptodome/Hash/HMAC.pyi
编辑文件内容
from types import ModuleType from typing import Union, Dict Buffer = Union[bytes, bytearray, memoryview] digest_size: int class HMAC(object): digest_size: int def __init__(self, key: Buffer, msg: Buffer, digestmod: ModuleType) -> None: ... def update(self, msg: Buffer) -> HMAC: ... def copy(self) -> HMAC: ... def digest(self) -> bytes: ... def hexdigest(self) -> str: ... def verify(self, mac_tag: Buffer) -> None: ... def hexverify(self, hex_mac_tag: str) -> None: ... def new(key: Buffer, msg: Buffer = ..., digestmod: ModuleType = ...) -> HMAC: ...
修改文件时间
将文件时间修改为当前时间的前一年
删除文件