8.6K results in 38 ms
6 years ago · Jul 17, 2019, 02:50 AM
new String(cipher.doFinal(encryptedData), "UTF-8"); } private SecretKey getSecretKey(final String alias) throws
6 years ago · Jul 16, 2019, 05:58 PM
used in production secret! SECRET_KEY = 'lo2$o&xxp=92$ko6^pk^aatyoju*g=sj+0*6d-l-i50j9@&-ew' # SECURITY WARNING: don't
6 years ago · Jul 16, 2019, 05:14 PM
throws InvalidKeyException, NoSuchAlgorithmException { SecretKeySpec secretKey = new SecretKeySpec(secret.getBytes(StandardCharsets.UTF_8), "HmacSHA1"); Mac
6 years ago · Jul 16, 2019, 01:46 PM
used in production secret! SECRET_KEY = "^rz0@eq0dl=hhfxy+wuzwyb^xc3$#k@3hn237gtrs@t48-xndw" # SECURITY WARNING: don't
6 years ago · Jul 16, 2019, 01:04 PM
0x58) SCRIPT_ADDRESS: 50 (0x32) SECRET_KEY: 216 (0xd8) EXT_PUBLIC_KEY: {0x04,
6 years ago · Jul 15, 2019, 10:34 PM
{ "Sid": "Stream", "Effect": "Allow", "Action": [ "kinesisvideoarchivedmedia:GetHLSStreamingSessionURL", "kinesisvideo:GetDataEndpoint" ], "Resource": "arn:aws:kinesisvideo:us-west-2:XXXXXXXXXXXX:stream/<stream-name>/<stream-id>" } AWS.config.region = 'us-west-2';AWS.config.credentials = new AWS.CognitoIdentityCredentials({ IdentityPoolId: <identity-pool>, }); AWS.config.credentials.get(function (err, data) { if (!err) { id = AWS.config.credentials.identityId; accessKey = AWS.config.credentials.accessKeyId; secretKey = AWS.config.credentials.secretAccessKey; token = AWS.config.credentials.sessionToken; } });
6 years ago · Jul 15, 2019, 09:26 PM
id = AWS.config.credentials.identityId; accessKey = AWS.config.credentials.accessKeyId; secretKey = AWS.config.credentials.secretAccessKey; token = AWS.config.credentials.sessionToken; } });
6 years ago · Jul 15, 2019, 07:26 PM
false s3: serveraddress: "" accesskey: "" secretkey: "" bucketname: "" bucketlocation: "" insecure: false
6 years ago · Jul 15, 2019, 10:36 AM
used in production secret! SECRET_KEY = 'e#gq28pjti=#ocx77w^h!fedpncm$%197#vut)2otls-#oozq0' # SECURITY WARNING: don't
6 years ago · Jul 14, 2019, 03:28 PM
$ terraform plan -var 'variable_key=1111' -var 'secret_key= 2222222'
6 years ago · Jul 13, 2019, 01:44 PM
audit": true, "readonly": false, "secretKey": "pD0kPpsqqYv6_zRxI17", "dbUri": "mongodb://localhost:27017/crm", "default":
6 years ago · Jul 12, 2019, 05:48 PM
<?php $ composer require qiwi/bill-payments-php-sdk-master const SECRET_KEY = '***'; $billPayments = new Qiwi\Api\BillPayments(SECRET_KEY); $publicKey = '***'; $params = [ 'publicKey' => $publicKey, 'amount' => 200, 'billId' => '893794793973', 'successUrl' => 'http://test.ru/', ]; /** @var \Qiwi\Api\BillPayments $billPayments */ $link = $billPayments->createPaymentForm($params); echo $link; ?>
6 years ago · Jul 12, 2019, 02:46 PM
torrent-pack-download': '30/minute'}} ROOT_URLCONF = 'AnilibriaTV.urls' SECRET_KEY = '********************' SECURE_BROWSER_XSS_FILTER = False SECURE_CONTENT_TYPE_NOSNIFF = False
6 years ago · Jul 12, 2019, 10:32 AM
Failed keys - gameKey: 1234, secretKey: 1234 2019-07-12 12:12:29.666847+0200 BridgeLowpoly[1485:74727]
6 years ago · Jul 12, 2019, 07:12 AM
private fun getSecretKey(): SecretKey { val messageDigest = MessageDigest.getInstance("SHA-1") val key = messageDigest.digest(SECRET_KEY.toByteArray(Charset.forName("UTF-8"))) .copyOfRange(0, 16) return SecretKeySpec(key, "AES") }
6 years ago · Jul 12, 2019, 02:14 AM
Service ID from paygol.com 'secretKey' => 'xxxx-xxxx-xxxx-xxxx', // Secret key from
6 years ago · Jul 11, 2019, 07:58 PM
import os BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) SECRET_KEY = os.environ['SECRET_KEY'] DEBUG = True ALLOWED_HOSTS
6 years ago · Jul 11, 2019, 06:44 PM
useSSL: false, accessKey: process.env.accessKey, secretKey: process.env.secretKey } const minioClient = new
6 years ago · Jul 11, 2019, 05:34 PM
#!/usr/bin/env python """ Django SECRET_KEY generator. """ from django.utils.crypto import get_random_string chars = 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)' print(get_random_string(50, chars))
Total pages: 429