Skip to content

Commit 95a901e

Browse files
author
Ben Weaver
committed
Flag mechanisms as SECURE; update digest-md5
1 parent 0ec756e commit 95a901e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

sasl/mechanism.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
1111
<http://tools.ietf.org/html/rfc2222>
1212
<http://www.iana.org/assignments/sasl-mechanisms>
13-
14-
Copyright (c) 2009, Coptix, Inc. All rights reserved.
15-
See the LICENSE file for license terms and warranty disclaimer.
1613
"""
1714
from __future__ import absolute_import
1815
import abc, re
@@ -52,6 +49,8 @@ class Mechanism(object):
5249
__metaclass__ = MechanismType
5350
__slots__ = ()
5451

52+
SECURE = False
53+
5554
@abc.abstractmethod
5655
def challenge(self):
5756
"""Issue a challenge."""

0 commit comments

Comments
 (0)