Home
last modified time | relevance | path

Searched refs:load_key (Results 1 – 25 of 1008) sorted by relevance

12345678910>>...41

/dports/editors/encryptpad/EncryptPad-0.5.0.1/deps/botan/src/lib/block/aes/aes_power8/
H A Daes_power8.cpp41 inline Altivec64x2 load_key(const uint32_t key[]) in load_key() function
106 const Altivec64x2 K0 = load_key(&m_EK[0]); in hw_aes_encrypt_n()
107 const Altivec64x2 K1 = load_key(&m_EK[4]); in hw_aes_encrypt_n()
108 const Altivec64x2 K2 = load_key(&m_EK[8]); in hw_aes_encrypt_n()
109 const Altivec64x2 K3 = load_key(&m_EK[12]); in hw_aes_encrypt_n()
110 const Altivec64x2 K4 = load_key(&m_EK[16]); in hw_aes_encrypt_n()
111 const Altivec64x2 K5 = load_key(&m_EK[20]); in hw_aes_encrypt_n()
112 const Altivec64x2 K6 = load_key(&m_EK[24]); in hw_aes_encrypt_n()
113 const Altivec64x2 K7 = load_key(&m_EK[28]); in hw_aes_encrypt_n()
178 const Altivec64x2 K8 = load_key(&m_EK[8]); in hw_aes_decrypt_n()
[all …]
/dports/security/botan2/Botan-2.18.2/src/lib/block/aes/aes_power8/
H A Daes_power8.cpp41 inline Altivec64x2 load_key(const uint32_t key[]) in load_key() function
106 const Altivec64x2 K0 = load_key(&m_EK[0]); in hw_aes_encrypt_n()
107 const Altivec64x2 K1 = load_key(&m_EK[4]); in hw_aes_encrypt_n()
108 const Altivec64x2 K2 = load_key(&m_EK[8]); in hw_aes_encrypt_n()
109 const Altivec64x2 K3 = load_key(&m_EK[12]); in hw_aes_encrypt_n()
110 const Altivec64x2 K4 = load_key(&m_EK[16]); in hw_aes_encrypt_n()
111 const Altivec64x2 K5 = load_key(&m_EK[20]); in hw_aes_encrypt_n()
112 const Altivec64x2 K6 = load_key(&m_EK[24]); in hw_aes_encrypt_n()
113 const Altivec64x2 K7 = load_key(&m_EK[28]); in hw_aes_encrypt_n()
178 const Altivec64x2 K8 = load_key(&m_EK[8]); in hw_aes_decrypt_n()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/comm/third_party/botan/src/lib/block/aes/aes_power8/
H A Daes_power8.cpp41 inline Altivec64x2 load_key(const uint32_t key[]) in load_key() function
106 const Altivec64x2 K0 = load_key(&m_EK[0]); in hw_aes_encrypt_n()
107 const Altivec64x2 K1 = load_key(&m_EK[4]); in hw_aes_encrypt_n()
108 const Altivec64x2 K2 = load_key(&m_EK[8]); in hw_aes_encrypt_n()
109 const Altivec64x2 K3 = load_key(&m_EK[12]); in hw_aes_encrypt_n()
110 const Altivec64x2 K4 = load_key(&m_EK[16]); in hw_aes_encrypt_n()
111 const Altivec64x2 K5 = load_key(&m_EK[20]); in hw_aes_encrypt_n()
112 const Altivec64x2 K6 = load_key(&m_EK[24]); in hw_aes_encrypt_n()
113 const Altivec64x2 K7 = load_key(&m_EK[28]); in hw_aes_encrypt_n()
178 const Altivec64x2 K8 = load_key(&m_EK[8]); in hw_aes_decrypt_n()
[all …]
/dports/editors/encryptpad/EncryptPad-0.5.0.1/deps/botan/src/lib/pubkey/
H A Dpkcs8.cpp346 load_key(DataSource& source, in load_key() function
369 return load_key(source, get_pass, true); in load_key()
392 return load_key(source, fail_fn, false); in load_key()
401 return PKCS8::load_key(source); in copy_key()
407 Private_Key* load_key(DataSource& source, in load_key() function
418 Private_Key* load_key(DataSource& source, in load_key() function
429 Private_Key* load_key(DataSource& source, in load_key() function
433 return PKCS8::load_key(source).release(); in load_key()
441 Private_Key* load_key(const std::string& fsname, in load_key() function
453 Private_Key* load_key(const std::string& fsname, in load_key() function
[all …]
H A Dpkcs8.h187 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(DataSource& source,
197 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(DataSource& source,
206 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(DataSource& source,
217 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(const std::string& filename,
227 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(const std::string& filename,
236 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(const std::string& filename,
257 std::unique_ptr<Private_Key> load_key(DataSource& source,
266 std::unique_ptr<Private_Key> load_key(DataSource& source,
274 std::unique_ptr<Private_Key> load_key(DataSource& source);
H A Dx509_key.cpp37 Public_Key* load_key(DataSource& source) in load_key() function
79 Public_Key* load_key(const std::string& fsname) in load_key() function
82 return X509::load_key(source); in load_key()
89 Public_Key* load_key(const std::vector<uint8_t>& mem) in load_key() function
92 return X509::load_key(source); in load_key()
101 return X509::load_key(source); in copy_key()
H A Dx509_key.h51 BOTAN_PUBLIC_API(2,0) Public_Key* load_key(DataSource& source);
59 BOTAN_PUBLIC_API(2,0) Public_Key* load_key(const std::string& filename);
67 BOTAN_PUBLIC_API(2,0) Public_Key* load_key(const std::vector<uint8_t>& enc);
/dports/security/botan2/Botan-2.18.2/src/lib/pubkey/
H A Dpkcs8.cpp346 load_key(DataSource& source, in load_key() function
369 return load_key(source, get_pass, true); in load_key()
392 return load_key(source, fail_fn, false); in load_key()
401 return PKCS8::load_key(source); in copy_key()
407 Private_Key* load_key(DataSource& source, in load_key() function
418 Private_Key* load_key(DataSource& source, in load_key() function
429 Private_Key* load_key(DataSource& source, in load_key() function
433 return PKCS8::load_key(source).release(); in load_key()
441 Private_Key* load_key(const std::string& fsname, in load_key() function
453 Private_Key* load_key(const std::string& fsname, in load_key() function
[all …]
H A Dpkcs8.h187 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(DataSource& source,
197 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(DataSource& source,
206 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(DataSource& source,
217 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(const std::string& filename,
227 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(const std::string& filename,
236 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(const std::string& filename,
257 std::unique_ptr<Private_Key> load_key(DataSource& source,
266 std::unique_ptr<Private_Key> load_key(DataSource& source,
274 std::unique_ptr<Private_Key> load_key(DataSource& source);
H A Dx509_key.cpp37 Public_Key* load_key(DataSource& source) in load_key() function
79 Public_Key* load_key(const std::string& fsname) in load_key() function
82 return X509::load_key(source); in load_key()
89 Public_Key* load_key(const std::vector<uint8_t>& mem) in load_key() function
92 return X509::load_key(source); in load_key()
101 return X509::load_key(source); in copy_key()
H A Dx509_key.h51 BOTAN_PUBLIC_API(2,0) Public_Key* load_key(DataSource& source);
59 BOTAN_PUBLIC_API(2,0) Public_Key* load_key(const std::string& filename);
67 BOTAN_PUBLIC_API(2,0) Public_Key* load_key(const std::vector<uint8_t>& enc);
/dports/mail/thunderbird/thunderbird-91.8.0/comm/third_party/botan/src/lib/pubkey/
H A Dpkcs8.cpp346 load_key(DataSource& source, in load_key() function
369 return load_key(source, get_pass, true); in load_key()
392 return load_key(source, fail_fn, false); in load_key()
401 return PKCS8::load_key(source); in copy_key()
407 Private_Key* load_key(DataSource& source, in load_key() function
418 Private_Key* load_key(DataSource& source, in load_key() function
429 Private_Key* load_key(DataSource& source, in load_key() function
433 return PKCS8::load_key(source).release(); in load_key()
441 Private_Key* load_key(const std::string& fsname, in load_key() function
453 Private_Key* load_key(const std::string& fsname, in load_key() function
[all …]
H A Dpkcs8.h187 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(DataSource& source,
197 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(DataSource& source,
206 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(DataSource& source,
217 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(const std::string& filename,
227 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(const std::string& filename,
236 BOTAN_PUBLIC_API(2,0) Private_Key* load_key(const std::string& filename,
257 std::unique_ptr<Private_Key> load_key(DataSource& source,
266 std::unique_ptr<Private_Key> load_key(DataSource& source,
274 std::unique_ptr<Private_Key> load_key(DataSource& source);
H A Dx509_key.cpp37 Public_Key* load_key(DataSource& source) in load_key() function
79 Public_Key* load_key(const std::string& fsname) in load_key() function
82 return X509::load_key(source); in load_key()
89 Public_Key* load_key(const std::vector<uint8_t>& mem) in load_key() function
92 return X509::load_key(source); in load_key()
101 return X509::load_key(source); in copy_key()
H A Dx509_key.h51 BOTAN_PUBLIC_API(2,0) Public_Key* load_key(DataSource& source);
59 BOTAN_PUBLIC_API(2,0) Public_Key* load_key(const std::string& filename);
67 BOTAN_PUBLIC_API(2,0) Public_Key* load_key(const std::vector<uint8_t>& enc);
/dports/security/botan110/Botan-1.10.17/src/pubkey/
H A Dx509_key.cpp43 Public_Key* load_key(DataSource& source) in load_key() function
86 Public_Key* load_key(const std::string& fsname) in load_key() function
89 return X509::load_key(source); in load_key()
95 Public_Key* load_key(const MemoryRegion<byte>& mem) in load_key() function
98 return X509::load_key(source); in load_key()
107 return X509::load_key(source); in copy_key()
H A Dpkcs8.cpp201 Private_Key* load_key(DataSource& source, in load_key() function
219 Private_Key* load_key(const std::string& fsname, in load_key() function
224 return PKCS8::load_key(source, rng, ui); in load_key()
230 Private_Key* load_key(DataSource& source, in load_key() function
234 return PKCS8::load_key(source, rng, User_Interface(pass)); in load_key()
240 Private_Key* load_key(const std::string& fsname, in load_key() function
244 return PKCS8::load_key(fsname, rng, User_Interface(pass)); in load_key()
254 return PKCS8::load_key(source, rng); in copy_key()
H A Dpkcs8.h129 BOTAN_DLL Private_Key* load_key(DataSource& source,
140 BOTAN_DLL Private_Key* load_key(DataSource& source,
151 BOTAN_DLL Private_Key* load_key(const std::string& filename,
162 BOTAN_DLL Private_Key* load_key(const std::string& filename,
/dports/security/py-m2crypto/M2Crypto-0.38.0/tests/
H A Dtest_dsa.py28 DSA.load_key(self.errkey)
31 dsa = DSA.load_key(self.privkey)
41 DSA.load_key(self.param)
47 dsa = DSA.load_key(self.privkey)
54 dsa = DSA.load_key(self.privkey)
66 dsa = DSA.load_key(self.privkey)
75 dsa = DSA.load_key(self.privkey)
80 dsa = DSA.load_key(self.privkey)
H A Dtest_rsa.py55 RSA.load_key(self.errkey)
69 rsa = RSA.load_key(self.privkey)
102 priv = RSA.load_key(self.privkey)
121 priv = RSA.load_key(self.privkey)
233 rsa = RSA.load_key(self.privkey)
272 rsa = RSA.load_key(self.privkey)
287 rsa = RSA.load_key(self.privkey)
296 rsa = RSA.load_key(self.privkey)
307 rsa = RSA.load_key(self.privkey)
321 rsa = RSA.load_key(self.privkey)
[all …]
H A Dtest_ecdsa.py36 EC.load_key(self.errkey)
39 ec = EC.load_key(self.privkey)
54 ec = EC.load_key(self.privkey)
60 ec = EC.load_key(self.privkey)
67 ec = EC.load_key(self.privkey)
/dports/devel/grpc/grpc-1.42.0/src/cpp/server/load_reporter/
H A Dload_data_store.cc183 const std::string& load_key) { in ReportStreamCreated() argument
185 SetUpForNewLbId(lb_id, load_key); in ReportStreamCreated()
213 load_key_to_receiving_lb_ids_, it_store_for_gone_lb->second->load_key(), in ReportStreamClosed()
221 auto it = load_key_to_receiving_lb_ids_.find(orphaned_store->load_key()); in ReportStreamClosed()
266 const std::string& load_key) { in SetUpForNewLbId() argument
271 load_key_to_receiving_lb_ids_[load_key].insert(lb_id); in SetUpForNewLbId()
273 new PerBalancerStore(lb_id, load_key)); in SetUpForNewLbId()
328 const std::string& load_key) { in ReportStreamCreated() argument
329 per_host_stores_[hostname].ReportStreamCreated(lb_id, load_key); in ReportStreamCreated()
/dports/devel/grpc130/grpc-1.30.2/src/cpp/server/load_reporter/
H A Dload_data_store.cc181 const grpc::string& load_key) { in ReportStreamCreated() argument
183 SetUpForNewLbId(lb_id, load_key); in ReportStreamCreated()
211 load_key_to_receiving_lb_ids_, it_store_for_gone_lb->second->load_key(), in ReportStreamClosed()
219 auto it = load_key_to_receiving_lb_ids_.find(orphaned_store->load_key()); in ReportStreamClosed()
264 const grpc::string& load_key) { in SetUpForNewLbId() argument
269 load_key_to_receiving_lb_ids_[load_key].insert(lb_id); in SetUpForNewLbId()
271 new PerBalancerStore(lb_id, load_key)); in SetUpForNewLbId()
326 const grpc::string& load_key) { in ReportStreamCreated() argument
327 per_host_stores_[hostname].ReportStreamCreated(lb_id, load_key); in ReportStreamCreated()
/dports/devel/grpc134/grpc-1.34.1/src/cpp/server/load_reporter/
H A Dload_data_store.cc181 const std::string& load_key) { in ReportStreamCreated() argument
183 SetUpForNewLbId(lb_id, load_key); in ReportStreamCreated()
211 load_key_to_receiving_lb_ids_, it_store_for_gone_lb->second->load_key(), in ReportStreamClosed()
219 auto it = load_key_to_receiving_lb_ids_.find(orphaned_store->load_key()); in ReportStreamClosed()
264 const std::string& load_key) { in SetUpForNewLbId() argument
269 load_key_to_receiving_lb_ids_[load_key].insert(lb_id); in SetUpForNewLbId()
271 new PerBalancerStore(lb_id, load_key)); in SetUpForNewLbId()
326 const std::string& load_key) { in ReportStreamCreated() argument
327 per_host_stores_[hostname].ReportStreamCreated(lb_id, load_key); in ReportStreamCreated()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/grpc/src/src/cpp/server/load_reporter/
H A Dload_data_store.cc181 const grpc::string& load_key) { in ReportStreamCreated() argument
183 SetUpForNewLbId(lb_id, load_key); in ReportStreamCreated()
211 load_key_to_receiving_lb_ids_, it_store_for_gone_lb->second->load_key(), in ReportStreamClosed()
219 auto it = load_key_to_receiving_lb_ids_.find(orphaned_store->load_key()); in ReportStreamClosed()
264 const grpc::string& load_key) { in SetUpForNewLbId() argument
269 load_key_to_receiving_lb_ids_[load_key].insert(lb_id); in SetUpForNewLbId()
271 new PerBalancerStore(lb_id, load_key)); in SetUpForNewLbId()
326 const grpc::string& load_key) { in ReportStreamCreated() argument
327 per_host_stores_[hostname].ReportStreamCreated(lb_id, load_key); in ReportStreamCreated()

12345678910>>...41