aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/primitives/test_mac.py
blob: 7263212a21e9d5f74d7a5d5e6df8243720e6bb91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This file is dual licensed under the terms of the Apache License, Version
# 2.0, and the BSD License. See the LICENSE file in the root of this repository
# for complete details.

from __future__ import absolute_import, division, print_function

import pytest

from cryptography import utils


def test_deprecated_maccontext():
    with pytest.warns(utils.DeprecatedIn19):
        from cryptography.hazmat.primitives.interfaces import MACContext
        assert MACContext