hyb
2025-10-24 43c4449e6c9231446895ad26d169825ca7a65c9a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
# SPDX-License-Identifier: MIT
 
"""
Low-level functions if you want to build your own higher level abstractions.
 
.. warning::
    This is a "Hazardous Materials" module.  You should **ONLY** use it if
    you're 100% absolutely sure that you know what you're doing because this
    module is full of land mines, dragons, and dinosaurs with laser guns.
"""
 
from __future__ import annotations
 
from enum import Enum
from typing import Any, Literal
 
from _argon2_cffi_bindings import ffi, lib
 
from .exceptions import HashingError, VerificationError, VerifyMismatchError
 
 
__all__ = [
    "ARGON2_VERSION",
    "Type",
    "ffi",
    "hash_secret",
    "hash_secret_raw",
    "verify_secret",
]
 
ARGON2_VERSION = lib.ARGON2_VERSION_NUMBER
"""
The latest version of the Argon2 algorithm that is supported (and used by
default).
 
.. versionadded:: 16.1.0
"""
 
 
class Type(Enum):
    """
    Enum of Argon2 variants.
 
    Please see :doc:`parameters` on how to pick one.
    """
 
    D = lib.Argon2_d
    I = lib.Argon2_i  # noqa: E741
    ID = lib.Argon2_id
 
 
def hash_secret(
    secret: bytes,
    salt: bytes,
    time_cost: int,
    memory_cost: int,
    parallelism: int,
    hash_len: int,
    type: Type,
    version: int = ARGON2_VERSION,
) -> bytes:
    """
    Hash *secret* and return an **encoded** hash.
 
    An encoded hash can be directly passed into :func:`verify_secret` as it
    contains all parameters and the salt.
 
    Args:
        secret: Secret to hash.
 
        salt: A salt_. Should be random and different for each secret.
 
        type: Which Argon2 variant to use.
 
        version: Which Argon2 version to use.
 
    For an explanation of the Argon2 parameters see
    :class:`argon2.PasswordHasher`.
 
    Returns:
        An encoded Argon2 hash.
 
    Raises:
        argon2.exceptions.HashingError: If hashing fails.
 
    .. versionadded:: 16.0.0
 
    .. _salt: https://en.wikipedia.org/wiki/Salt_(cryptography)
    """
    size = (
        lib.argon2_encodedlen(
            time_cost,
            memory_cost,
            parallelism,
            len(salt),
            hash_len,
            type.value,
        )
        + 1
    )
    buf = ffi.new("char[]", size)
    rv = lib.argon2_hash(
        time_cost,
        memory_cost,
        parallelism,
        ffi.new("uint8_t[]", secret),
        len(secret),
        ffi.new("uint8_t[]", salt),
        len(salt),
        ffi.NULL,
        hash_len,
        buf,
        size,
        type.value,
        version,
    )
    if rv != lib.ARGON2_OK:
        raise HashingError(error_to_str(rv))
 
    return ffi.string(buf)  # type: ignore[no-any-return]
 
 
def hash_secret_raw(
    secret: bytes,
    salt: bytes,
    time_cost: int,
    memory_cost: int,
    parallelism: int,
    hash_len: int,
    type: Type,
    version: int = ARGON2_VERSION,
) -> bytes:
    """
    Hash *password* and return a **raw** hash.
 
    This function takes the same parameters as :func:`hash_secret`.
 
    .. versionadded:: 16.0.0
    """
    buf = ffi.new("uint8_t[]", hash_len)
 
    rv = lib.argon2_hash(
        time_cost,
        memory_cost,
        parallelism,
        ffi.new("uint8_t[]", secret),
        len(secret),
        ffi.new("uint8_t[]", salt),
        len(salt),
        buf,
        hash_len,
        ffi.NULL,
        0,
        type.value,
        version,
    )
    if rv != lib.ARGON2_OK:
        raise HashingError(error_to_str(rv))
 
    return bytes(ffi.buffer(buf, hash_len))
 
 
def verify_secret(hash: bytes, secret: bytes, type: Type) -> Literal[True]:
    """
    Verify whether *secret* is correct for *hash* of *type*.
 
    Args:
        hash:
            An encoded Argon2 hash as returned by :func:`hash_secret`.
 
        secret:
            The secret to verify whether it matches the one in *hash*.
 
        type: Type for *hash*.
 
    Raises:
        argon2.exceptions.VerifyMismatchError:
            If verification fails because *hash* is not valid for *secret* of
            *type*.
 
        argon2.exceptions.VerificationError:
            If verification fails for other reasons.
 
    Returns:
        ``True`` on success, raise :exc:`~argon2.exceptions.VerificationError`
        otherwise.
 
    .. versionadded:: 16.0.0
    .. versionchanged:: 16.1.0
        Raise :exc:`~argon2.exceptions.VerifyMismatchError` on mismatches
        instead of its more generic superclass.
    """
    rv = lib.argon2_verify(
        ffi.new("char[]", hash),
        ffi.new("uint8_t[]", secret),
        len(secret),
        type.value,
    )
 
    if rv == lib.ARGON2_OK:
        return True
 
    if rv == lib.ARGON2_VERIFY_MISMATCH:
        raise VerifyMismatchError(error_to_str(rv))
 
    raise VerificationError(error_to_str(rv))
 
 
def core(context: Any, type: int) -> int:
    """
    Direct binding to the ``argon2_ctx`` function.
 
    .. warning::
        This is a strictly advanced function working on raw C data structures.
        Both Argon2's and *argon2-cffi*'s higher-level bindings do a lot of
        sanity checks and housekeeping work that *you* are now responsible for
        (e.g. clearing buffers). The structure of the *context* object can,
        has, and will change with *any* release!
 
        Use at your own peril; *argon2-cffi* does *not* use this binding
        itself.
 
    Args:
        context:
            A CFFI Argon2 context object (i.e. an ``struct Argon2_Context`` /
            ``argon2_context``).
 
        type:
            Which Argon2 variant to use.  You can use the ``value`` field of
            :class:`Type`'s fields.
 
    Returns:
        An Argon2 error code.  Can be transformed into a string using
        :func:`error_to_str`.
 
    .. versionadded:: 16.0.0
    """
    return lib.argon2_ctx(context, type)  # type: ignore[no-any-return]
 
 
def error_to_str(error: int) -> str:
    """
    Convert an Argon2 error code into a native string.
 
    Args:
        error: An Argon2 error code as returned by :func:`core`.
 
    Returns:
        A human-readable string describing the error.
 
    .. versionadded:: 16.0.0
    """
    return ffi.string(lib.argon2_error_message(error)).decode("ascii")  # type: ignore[no-any-return]