ai_v/venv/Lib/site-packages/Cryptodome/PublicKey/_point.pyi
公司git 67f2621a69 feat(payment): 集成支付宝支付与订单管理功能
- 在应用中注册支付蓝图(payment_bp)以支持支付接口
- 配置支付宝相关秘钥、回调地址及环境选项
- 新增订单模型(Order),支持订单数据存储与管理
- 管理后台接口添加订单列表查询功能,支持超级管理员访问
- 购买页面与表单修改,支持不同套餐的购买提交
- 支付成功页面提示,显示订单编号及积分到账信息
- 移除买积分按钮禁用逻辑,开放购买功能
2026-01-14 17:00:43 +08:00

50 lines
1.7 KiB
Python

from typing import Union, Optional, Tuple
from Cryptodome.Math.Numbers import Integer
class EccPoint(object):
curve: str
def __init__(self,
x: Union[int, Integer],
y: Union[int, Integer],
curve: Optional[str] = ...) -> None: ...
def set(self, point: EccPoint) -> EccPoint: ...
def __eq__(self, point: object) -> bool: ...
def __neg__(self) -> EccPoint: ...
def copy(self) -> EccPoint: ...
def is_point_at_infinity(self) -> bool: ...
def point_at_infinity(self) -> EccPoint: ...
@property
def x(self) -> int: ...
@property
def y(self) -> int: ...
@property
def xy(self) -> Tuple[int, int]: ...
def size_in_bytes(self) -> int: ...
def size_in_bits(self) -> int: ...
def double(self) -> EccPoint: ...
def __iadd__(self, point: EccPoint) -> EccPoint: ...
def __add__(self, point: EccPoint) -> EccPoint: ...
def __imul__(self, scalar: int) -> EccPoint: ...
def __mul__(self, scalar: int) -> EccPoint: ...
class EccXPoint(object):
curve: str
def __init__(self,
x: Union[int, Integer],
curve: Optional[str] = ...) -> None: ...
def set(self, point: EccXPoint) -> EccXPoint: ...
def __eq__(self, point: object) -> bool: ...
def copy(self) -> EccXPoint: ...
def is_point_at_infinity(self) -> bool: ...
def point_at_infinity(self) -> EccXPoint: ...
@property
def x(self) -> int: ...
def size_in_bytes(self) -> int: ...
def size_in_bits(self) -> int: ...
def __imul__(self, scalar: int) -> EccXPoint: ...
def __mul__(self, scalar: int) -> EccXPoint: ...
def __rmul__(self, left_hand: int) -> EccXPoint: ...