Home
last modified time | relevance | path

Searched refs:encrypted_key (Results 1 – 25 of 311) sorted by relevance

12345678910>>...13

/dports/deskutils/egroupware/egroupware/vendor/defuse/php-encryption/src/
H A DKeyProtectedByPassword.php14 private $encrypted_key = ''; variable in Defuse\\Crypto\\KeyProtectedByPassword
32 $encrypted_key = Crypto::encryptWithPassword(
38 return new KeyProtectedByPassword($encrypted_key);
56 return new KeyProtectedByPassword($encrypted_key);
71 $this->encrypted_key
89 $this->encrypted_key,
125 $encrypted_key = Crypto::encryptWithPassword(
131 $this->encrypted_key = $encrypted_key;
139 * @param string $encrypted_key
141 private function __construct($encrypted_key) argument
[all …]
/dports/www/groupoffice/groupoffice-6.4.231-php-71/vendor/defuse/php-encryption/src/
H A DKeyProtectedByPassword.php14 private $encrypted_key = ''; variable in Defuse\\Crypto\\KeyProtectedByPassword
32 $encrypted_key = Crypto::encryptWithPassword(
38 return new KeyProtectedByPassword($encrypted_key);
56 return new KeyProtectedByPassword($encrypted_key);
71 $this->encrypted_key
89 $this->encrypted_key,
125 $encrypted_key = Crypto::encryptWithPassword(
131 $this->encrypted_key = $encrypted_key;
139 * @param string $encrypted_key
141 private function __construct($encrypted_key) argument
[all …]
/dports/www/thirtybees/thirtybees-1.1.0/vendor/defuse/php-encryption/src/
H A DKeyProtectedByPassword.php14 private $encrypted_key = ''; variable in Defuse\\Crypto\\KeyProtectedByPassword
32 $encrypted_key = Crypto::encryptWithPassword(
38 return new KeyProtectedByPassword($encrypted_key);
56 return new KeyProtectedByPassword($encrypted_key);
71 $this->encrypted_key
89 $this->encrypted_key,
125 $encrypted_key = Crypto::encryptWithPassword(
131 $this->encrypted_key = $encrypted_key;
139 * @param string $encrypted_key
141 private function __construct($encrypted_key) argument
[all …]
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/defuse/php-encryption/src/
H A DKeyProtectedByPassword.php14 private $encrypted_key = ''; variable in Defuse\\Crypto\\KeyProtectedByPassword
32 $encrypted_key = Crypto::encryptWithPassword(
38 return new KeyProtectedByPassword($encrypted_key);
56 return new KeyProtectedByPassword($encrypted_key);
71 $this->encrypted_key
89 $this->encrypted_key,
125 $encrypted_key = Crypto::encryptWithPassword(
131 $this->encrypted_key = $encrypted_key;
139 * @param string $encrypted_key
141 private function __construct($encrypted_key) argument
[all …]
/dports/finance/prestashop/prestashop/vendor/defuse/php-encryption/src/
H A DKeyProtectedByPassword.php11 private $encrypted_key = null; variable in Defuse\\Crypto\\KeyProtectedByPassword
29 $encrypted_key = Crypto::encryptWithPassword(
35 return new KeyProtectedByPassword($encrypted_key);
49 $encrypted_key = Encoding::loadBytesFromChecksummedAsciiSafeString(
53 return new KeyProtectedByPassword($encrypted_key);
68 $this->encrypted_key
85 $this->encrypted_key,
106 * @param string $encrypted_key
108 private function __construct($encrypted_key) argument
110 $this->encrypted_key = $encrypted_key;
/dports/databases/arrow/apache-arrow-6.0.1/cpp/src/parquet/encryption/
H A Dkey_toolkit_internal.cc38 std::string encrypted_key(encrypted_key_len, '\0'); in EncryptKeyLocally() local
44 static_cast<int>(aad.size()), reinterpret_cast<uint8_t*>(&encrypted_key[0])); in EncryptKeyLocally()
47 ::arrow::util::string_view(encrypted_key.data(), encrypted_key_len)); in EncryptKeyLocally()
52 std::string encrypted_key = ::arrow::util::base64_decode(encoded_encrypted_key); in DecryptKeyLocally() local
58 static_cast<int>(encrypted_key.size()) - key_decryptor.CiphertextSizeDelta(); in DecryptKeyLocally()
62 reinterpret_cast<const uint8_t*>(encrypted_key.data()), in DecryptKeyLocally()
63 static_cast<int>(encrypted_key.size()), in DecryptKeyLocally()
/dports/editors/encryptpad/EncryptPad-0.5.0.1/func_tests/
H A Depd_encryption_test.sh157 cat $PASSPHRASE_FILE | $ENCRYPT_CLI --generate-key --key-pwd-fd 0 $TMP_DIR/encrypted_key.key
158 $GPG -d --batch --passphrase-file $PASSPHRASE_FILE -o $TMP_DIR/out_file.txt $TMP_DIR/encrypted_key.…
168 rm $TMP_DIR/encrypted_key.key
176 cat $PASSPHRASE_FILE | $ENCRYPT_CLI --generate-key --key-pwd-fd 0 $TMP_DIR/encrypted_key.key
177 cat $PASSPHRASE_FILE | $ENCRYPT_CLI -e --key-only --key-pwd-fd 0 -k $TMP_DIR/encrypted_key.key -o $…
179 …batch --passphrase-file $PASSPHRASE_FILE -o $TMP_DIR/unencrypted_key.key $TMP_DIR/encrypted_key.key
190 cat $PASSPHRASE_FILE | $ENCRYPT_CLI -d --key-only --key-pwd-fd 0 -k $TMP_DIR/encrypted_key.key -o $…
200 rm $TMP_DIR/encrypted_key.key
211 cat $PASSPHRASE_FILE | $ENCRYPT_CLI --generate-key --key-pwd-fd 0 $TMP_DIR/encrypted_key.key
212 cat $PASSPHRASE_FILE | $ENCRYPT_CLI -e -k $TMP_DIR/encrypted_key.key --key-pwd-file $PASSPHRASE_FIL…
[all …]
/dports/devel/elixir-hex/hex-1.0.1/lib/hex/crypto/
H A Dencryption.ex9 {:ok, protected, key, encrypted_key, content_encryptor} ->
19 encrypted_key: encrypted_key,
37 encrypted_key: encrypted_key,
46 case KeyManager.decrypt(protected, encrypted_key, opts) do
H A Dkey_manager.ex23 encrypted_key :: binary,
48 {:ok, protected, key, encrypted_key} ->
49 {:ok, protected, key, encrypted_key, content_encryptor}
60 def decrypt(protected, encrypted_key, opts) do
63 case module.decrypt(params, protected, encrypted_key, content_encryptor) do
/dports/editors/encryptpad/EncryptPad-0.5.0.1/deps/botan/src/cli/
H A Dpk_crypt.cpp80 const std::vector<uint8_t> encrypted_key = enc.encrypt(file_key, rng()); in go() local
84 aead->set_associated_data_vec(encrypted_key); in go()
94 .encode(encrypted_key, Botan::OCTET_STRING) in go()
138 std::vector<uint8_t> encrypted_key; in go() local
150 .decode(encrypted_key, Botan::OCTET_STRING) in go()
200 dec.decrypt_or_random(encrypted_key.data(), in go()
201 encrypted_key.size(), in go()
206 aead->set_associated_data_vec(encrypted_key); in go()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/third_party/botan/src/cli/
H A Dpk_crypt.cpp80 const std::vector<uint8_t> encrypted_key = enc.encrypt(file_key, rng()); in go() local
84 aead->set_associated_data_vec(encrypted_key); in go()
94 .encode(encrypted_key, Botan::OCTET_STRING) in go()
138 std::vector<uint8_t> encrypted_key; in go() local
150 .decode(encrypted_key, Botan::OCTET_STRING) in go()
200 dec.decrypt_or_random(encrypted_key.data(), in go()
201 encrypted_key.size(), in go()
206 aead->set_associated_data_vec(encrypted_key); in go()
/dports/security/botan2/Botan-2.18.2/src/cli/
H A Dpk_crypt.cpp80 const std::vector<uint8_t> encrypted_key = enc.encrypt(file_key, rng()); in go() local
84 aead->set_associated_data_vec(encrypted_key); in go()
94 .encode(encrypted_key, Botan::OCTET_STRING) in go()
138 std::vector<uint8_t> encrypted_key; in go() local
150 .decode(encrypted_key, Botan::OCTET_STRING) in go()
200 dec.decrypt_or_random(encrypted_key.data(), in go()
201 encrypted_key.size(), in go()
206 aead->set_associated_data_vec(encrypted_key); in go()
/dports/devel/py-oci/oci-2.53.1/src/oci/key_management/models/
H A Dexported_key_data.py182 def encrypted_key(self): member in ExportedKeyData
193 @encrypted_key.setter
194 def encrypted_key(self, encrypted_key): member in ExportedKeyData
203 self._encrypted_key = encrypted_key
/dports/www/py-azure-storage/azure-storage-0.36.0/azure/storage/
H A D_encryption.py47 def __init__(self, algorithm, encrypted_key, key_id): argument
58 _validate_not_none('encrypted_key', encrypted_key)
62 self.encrypted_key = encrypted_key
213 _validate_not_none('encrypted_key', encryption_data.wrapped_content_key.encrypted_key)
228 …t_encryption_key = key_encryption_key.unwrap_key(encryption_data.wrapped_content_key.encrypted_key,
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/cosmosdb/v2017_04_17/common/
H A D_encryption.py51 def __init__(self, algorithm, encrypted_key, key_id): argument
62 _validate_not_none('encrypted_key', encrypted_key)
66 self.encrypted_key = encrypted_key
223 _validate_not_none('encrypted_key', encryption_data.wrapped_content_key.encrypted_key)
238 …t_encryption_key = key_encryption_key.unwrap_key(encryption_data.wrapped_content_key.encrypted_key,
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2017_11_09/common/
H A D_encryption.py42 def __init__(self, algorithm, encrypted_key, key_id): argument
53 _validate_not_none('encrypted_key', encrypted_key)
57 self.encrypted_key = encrypted_key
214 _validate_not_none('encrypted_key', encryption_data.wrapped_content_key.encrypted_key)
229 …t_encryption_key = key_encryption_key.unwrap_key(encryption_data.wrapped_content_key.encrypted_key,
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2018_11_09/common/
H A D_encryption.py42 def __init__(self, algorithm, encrypted_key, key_id): argument
53 _validate_not_none('encrypted_key', encrypted_key)
57 self.encrypted_key = encrypted_key
214 _validate_not_none('encrypted_key', encryption_data.wrapped_content_key.encrypted_key)
229 …t_encryption_key = key_encryption_key.unwrap_key(encryption_data.wrapped_content_key.encrypted_key,
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2017_04_17/common/
H A D_encryption.py51 def __init__(self, algorithm, encrypted_key, key_id): argument
62 _validate_not_none('encrypted_key', encrypted_key)
66 self.encrypted_key = encrypted_key
223 _validate_not_none('encrypted_key', encryption_data.wrapped_content_key.encrypted_key)
238 …t_encryption_key = key_encryption_key.unwrap_key(encryption_data.wrapped_content_key.encrypted_key,
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2016_05_31/
H A D_encryption.py47 def __init__(self, algorithm, encrypted_key, key_id): argument
58 _validate_not_none('encrypted_key', encrypted_key)
62 self.encrypted_key = encrypted_key
213 _validate_not_none('encrypted_key', encryption_data.wrapped_content_key.encrypted_key)
228 …t_encryption_key = key_encryption_key.unwrap_key(encryption_data.wrapped_content_key.encrypted_key,
/dports/devel/py-azure-storage-common/azure-storage-common-2.1.0/azure/storage/common/
H A D_encryption.py42 def __init__(self, algorithm, encrypted_key, key_id): argument
53 _validate_not_none('encrypted_key', encrypted_key)
57 self.encrypted_key = encrypted_key
214 _validate_not_none('encrypted_key', encryption_data.wrapped_content_key.encrypted_key)
229 …t_encryption_key = key_encryption_key.unwrap_key(encryption_data.wrapped_content_key.encrypted_key,
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2017_07_29/common/
H A D_encryption.py42 def __init__(self, algorithm, encrypted_key, key_id): argument
53 _validate_not_none('encrypted_key', encrypted_key)
57 self.encrypted_key = encrypted_key
214 _validate_not_none('encrypted_key', encryption_data.wrapped_content_key.encrypted_key)
229 …t_encryption_key = key_encryption_key.unwrap_key(encryption_data.wrapped_content_key.encrypted_key,
/dports/devel/py-azure-multiapi-storage/azure-multiapi-storage-0.6.2/azure/multiapi/storage/v2018_03_28/common/
H A D_encryption.py42 def __init__(self, algorithm, encrypted_key, key_id): argument
53 _validate_not_none('encrypted_key', encrypted_key)
57 self.encrypted_key = encrypted_key
214 _validate_not_none('encrypted_key', encryption_data.wrapped_content_key.encrypted_key)
229 …t_encryption_key = key_encryption_key.unwrap_key(encryption_data.wrapped_content_key.encrypted_key,
/dports/security/john/john-1.9.0-jumbo-1/run/
H A Dtelegram2john.py128 encrypted_key = f.read(length)
131 encrypted_key = binascii.hexlify(encrypted_key)
134 encrypted_key = encrypted_key.decode("ascii")
136 print("%s:$telegram$1*%s*%s*%s" % (map_path, LocalEncryptIterCount, salt, encrypted_key))
/dports/mail/elm/elm2.5.8/src/
H A Dencode.c57 static unsigned char *encrypted_key; /* encrypted key */ variable
180 encrypted_key = (unsigned char *) crypt( key, salt);
182 encrypted_key = (unsigned char *) key;
207 seed = (seed*encrypted_key[i] + i) & RMASK; in setup()
213 seed = (5 * seed + encrypted_key[i%13]) & RMASK;; in setup()
229 seed = (5 * seed + encrypted_key[i%13]) & RMASK;; in setup()
/dports/security/tor-devel/tor-0.4.7.2-alpha/src/feature/keymgt/
H A Dloadkey.c192 uint8_t encrypted_key[256]; in read_encrypted_secret_key() local
199 encrypted_key, in read_encrypted_secret_key()
200 sizeof(encrypted_key)); in read_encrypted_secret_key()
221 encrypted_key, encrypted_len, in read_encrypted_secret_key()
244 memwipe(encrypted_key, 0, sizeof(encrypted_key)); in read_encrypted_secret_key()
263 uint8_t *encrypted_key = NULL; in write_encrypted_secret_key() local
279 if (crypto_pwbox(&encrypted_key, &encrypted_len, in write_encrypted_secret_key()
288 encrypted_key, encrypted_len) < 0) in write_encrypted_secret_key()
292 if (encrypted_key) { in write_encrypted_secret_key()
293 memwipe(encrypted_key, 0, encrypted_len); in write_encrypted_secret_key()
[all …]

12345678910>>...13