mirror of
https://github.com/github/codeql.git
synced 2025-12-18 09:43:15 +01:00
8 lines
165 B
Python
8 lines
165 B
Python
from Crypto.Cipher import ARC4
|
|
|
|
def get_badly_encrypted_password():
|
|
dangerous = get_password()
|
|
cipher = ARC4.new(_, _)
|
|
return cipher.encrypt(dangerous)
|
|
|