mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-04 15:11:48 -05:00
9 lines
138 B
Python
9 lines
138 B
Python
import base64
|
|
import os
|
|
|
|
|
|
def csp(request):
|
|
return {
|
|
'csp_nonce': base64.encodebytes(os.urandom(32)).decode().rstrip(),
|
|
}
|