Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/bcrypt/__init__.py: 75%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

4 statements  

1# Licensed under the Apache License, Version 2.0 (the "License"); 

2# you may not use this file except in compliance with the License. 

3# You may obtain a copy of the License at 

4# 

5# http://www.apache.org/licenses/LICENSE-2.0 

6# 

7# Unless required by applicable law or agreed to in writing, software 

8# distributed under the License is distributed on an "AS IS" BASIS, 

9# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 

10# See the License for the specific language governing permissions and 

11# limitations under the License. 

12 

13from ._bcrypt import ( 

14 __author__, 

15 __copyright__, 

16 __email__, 

17 __license__, 

18 __summary__, 

19 __title__, 

20 __uri__, 

21 checkpw, 

22 gensalt, 

23 hashpw, 

24 kdf, 

25) 

26from ._bcrypt import ( 

27 __version_ex__ as __version__, 

28) 

29 

30__all__ = [ 

31 "__author__", 

32 "__copyright__", 

33 "__email__", 

34 "__license__", 

35 "__summary__", 

36 "__title__", 

37 "__uri__", 

38 "__version__", 

39 "checkpw", 

40 "gensalt", 

41 "hashpw", 

42 "kdf", 

43]