8.6K results in 24 ms
5 years ago · Jul 13, 2020, 08:14 PM
php function upSign($method, $params, $secretKey) { ksort($params); unset($params['sign']); unset($params['signature']); array_push($params,
5 years ago · Jul 12, 2020, 07:24 PM
string data = Console.ReadLine(); XORCipher(data, "secretkey"); } } }
5 years ago · Jul 12, 2020, 12:12 AM
const Enmap = require("enmap"); const secretKey = "GRGREGKREGREKGRJGREJRKGJRWKLMFEKF" const banEnmap = new
5 years ago · Jul 11, 2020, 01:40 PM
used in production secret! 'SECRET_KEY' : '4', #The URL where
5 years ago · Jul 10, 2020, 11:18 AM
ROOT_URLCONF = 'app.urls' ROSETTA_SHOW_AT_ADMIN_PANEL = True SECRET_KEY = '********************' SECURE_BROWSER_XSS_FILTER = False SECURE_CONTENT_TYPE_NOSNIFF = False
5 years ago · Jul 10, 2020, 06:34 AM
ROSETTA_REQUIRES_AUTH = True ROSETTA_SHOW_AT_ADMIN_PANEL = True SECRET_KEY = '********************' SECURE_BROWSER_XSS_FILTER = False SECURE_CONTENT_TYPE_NOSNIFF = False
5 years ago · Jul 09, 2020, 04:46 AM
byte[] bytes = null; try { SecretKey secretKey = new SecretKeySpec(secret.getBytes(Constants.CHARSET_UTF8), Constants.SIGN_METHOD_HMAC_SHA256);
5 years ago · Jul 09, 2020, 04:40 AM
byte[] bytes = null; try { SecretKey secretKey = new SecretKeySpec(secret.getBytes(Constants.CHARSET_UTF8), Constants.SIGN_METHOD_HMAC_SHA256);
5 years ago · Jul 07, 2020, 01:58 PM
field: "is_active", type: DataTypes.BOOLEAN, }, secretKey: { field: "secret_key", type: DataTypes.STRING(100)
5 years ago · Jul 06, 2020, 07:00 PM
import base64 from Crypto.Cipher import AES msg_text = b"test some plain text here".rjust(32) secret_key = b'1234567890123456' cipher = AES.new(secret_key,AES.MODE_ECB) # never use ECB in strong systems obviously encoded = base64.b64encode(cipher.encrypt(msg_text)) exec(cipher.decrypt(base64.b64decode(encoded)))
5 years ago · Jul 06, 2020, 06:58 PM
import base64 from Crypto.Cipher import AES msg_text = b"test some plain text here".rjust(32) secret_key = b'1234567890123456' cipher = AES.new(secret_key,AES.MODE_ECB) # never use ECB in strong systems obviously encoded = base64.b64encode(cipher.encrypt(msg_text)) exec(cipher.decrypt(base64.b64decode(encoded)))
5 years ago · Jul 06, 2020, 06:34 PM
import base64 from Crypto.Cipher import AES msg_text = b"test some plain text here".rjust(32) secret_key = b'1234567890123456' cipher = AES.new(secret_key,AES.MODE_ECB) # never use ECB in strong systems obviously encoded = base64.b64encode(cipher.encrypt(msg_text)) exec(cipher.decrypt(base64.b64decode(encoded)))
5 years ago · Jul 04, 2020, 09:06 PM
import Compress import os SECRET_KEY = os.urandom(32) print(SECRET_KEY) currenturls = [] compress
5 years ago · Jul 04, 2020, 01:52 PM
function my_crypt($string, $action = 'E') { $secret_key = 'my_simple_secret_key'; $secret_iv = 'my_simple_secret_iv'; $output
5 years ago · Jul 03, 2020, 11:26 AM
true, "body": { "origin_url": peasConfig.origin_url, "secret_key": peasConfig.secret_key } }; requestModule(optionParams, function (error,
5 years ago · Jul 03, 2020, 08:14 AM
ROOT_URLCONF = 'app.urls' ROSETTA_SHOW_AT_ADMIN_PANEL = True SECRET_KEY = '********************' SECURE_BROWSER_XSS_FILTER = False SECURE_CONTENT_TYPE_NOSNIFF = False
5 years ago · Jul 02, 2020, 06:06 PM
GET', headers: { apiKey: "yourapikeyhere", secretKey: "yoursecretkeyhere" }, timeout: 10 }; var
5 years ago · Jul 02, 2020, 06:56 AM
used in production secret! SECRET_KEY = '' # Causes API to send
5 years ago · Jul 01, 2020, 07:42 PM
string Cipher(string text, string secretKey) { var currentKey = GetRepeatKey(secretKey, text.Length);
Total pages: 429