mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 23:36:31 +00:00
9 lines
182 B
Cython
9 lines
182 B
Cython
cdef class Security:
|
|
@staticmethod
|
|
cdef encrypt_to(input_stream, key)
|
|
|
|
@staticmethod
|
|
cdef decrypt_to(input_stream, key)
|
|
|
|
@staticmethod
|
|
cdef calc_hash(str key) |