Home
last modified time | relevance | path

Searched refs:key_format (Results 1 – 25 of 320) sorted by relevance

12345678910>>...13

/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/wiredtiger/test/suite/
H A Dtest_util03.py40 ('none', dict(key_format=None,value_format=None)),
41 ('SS', dict(key_format='S',value_format='S')),
42 ('rS', dict(key_format='r',value_format='S')),
43 ('ri', dict(key_format='r',value_format='i')),
52 if self.key_format != None or self.value_format != None:
55 if self.key_format != None:
56 config += 'key_format=' + self.key_format + ','
64 if self.key_format != None:
65 self.assertEqual(cursor.key_format, self.key_format)
H A Dtest_util02.py48 ('SS', dict(key_format='S',value_format='S')),
49 ('rS', dict(key_format='r',value_format='S')),
50 ('ri', dict(key_format='r',value_format='i')),
51 ('ii', dict(key_format='i',value_format='i')),
75 if self.key_format == 'S':
77 elif self.key_format == 'r':
127 self.key_format + ',value_format=' + self.value_format
150 self.assertEqual(cursor.key_format, self.key_format)
H A Dtest_bug008.py41 ('fix', dict(key_format='r', value_format='8t', empty=1, colvar=0)),
42 ('row', dict(key_format='S', value_format='S', empty=0, colvar=0)),
43 ('var', dict(key_format='r', value_format='S', empty=0, colvar=1))
49 ds = SimpleDataSet(self, self.uri, 0, key_format=self.key_format,
67 ds = SimpleDataSet(self, self.uri, 100, key_format=self.key_format,
106 ds = SimpleDataSet(self, self.uri, 105, key_format=self.key_format,
146 ds = SimpleDataSet(self, self.uri, 100, key_format=self.key_format,
257 ds = SimpleDataSet(self, self.uri, 100, key_format=self.key_format,
H A Dtest_txn01.py37 ('col-f', dict(uri='file:text_txn01',key_format='r',value_format='S')),
38 ('col-t', dict(uri='table:text_txn01',key_format='r',value_format='S')),
39 ('fix-f', dict(uri='file:text_txn01',key_format='r',value_format='8t')),
40 ('fix-t', dict(uri='table:text_txn01',key_format='r',value_format='8t')),
41 ('row-f', dict(uri='file:text_txn01',key_format='S',value_format='S')),
42 ('row-t', dict(uri='table:text_txn01',key_format='S',value_format='S')),
106 'key_format=' + self.key_format +
120 if self.key_format == 'S':
H A Dtest_prepare01.py37 ('col-f', dict(uri='file:text_txn01',key_format='r',value_format='S')),
38 ('col-t', dict(uri='table:text_txn01',key_format='r',value_format='S')),
39 ('fix-f', dict(uri='file:text_txn01',key_format='r',value_format='8t')),
40 ('fix-t', dict(uri='table:text_txn01',key_format='r',value_format='8t')),
41 ('row-f', dict(uri='file:text_txn01',key_format='S',value_format='S')),
42 ('row-t', dict(uri='table:text_txn01',key_format='S',value_format='S')),
110 'key_format=' + self.key_format +
126 if self.key_format == 'S':
H A Dtest_inmem01.py51 ds = SimpleDataSet(self, self.uri, 1000, key_format=self.keyfmt,
59 ds = SimpleDataSet(self, self.uri, 10000000, key_format=self.keyfmt,
69 ds = SimpleDataSet(self, self.uri, last_key, key_format=self.keyfmt,
77 ds = SimpleDataSet(self, self.uri, 10000000, key_format=self.keyfmt,
93 ds = SimpleDataSet(self, self.uri, 10000000, key_format=self.keyfmt,
136 ds = SimpleDataSet(self, self.uri, 0, key_format=self.keyfmt,
159 ds = SimpleDataSet(self, self.uri, last_key, key_format=self.keyfmt,
H A Dwtdataset.py41 self.key_format = kwargs.get('key_format', 'S')
47 self.testcase.session.create(self.uri, 'key_format=' + self.key_format
73 def key_by_format(i, key_format): argument
74 if key_format == 'i' or key_format == 'r':
76 elif key_format == 'S' or key_format == 'u':
80 'key: object has unexpected format: ' + key_format)
102 return BaseDataSet.key_by_format(i, self.key_format)
226 config = 'key_format=' + self.key_format + \
387 return BaseDataSet.key_by_format(i, cursor.key_format)
395 return BaseDataSet.key_by_format(i, cursor.key_format)
H A Dtest_cursor10.py42 ('row', dict(key_format='S', uri='table')),
43 ('col', dict(key_format='r', uri='table'))
47 if self.key_format == 'S':
56 if self.key_format == 'S':
67 + self.key_format
105 + self.key_format
H A Dtest_jsondump01.py43 self.key_format = keyfmt
103 ds = self.dataset(self, uri, self.nentries, key_format=self.keyfmt)
126 fake = FakeCursor(uri, cursor.key_format, cursor.value_format, data)
139 ds = self.dataset(self, uri, self.nentries, key_format=self.keyfmt)
152 ds2 = self.dataset(self, uri2, self.nentries, key_format=self.keyfmt)
H A Dtest_cursor12.py235 self.uri, 100, key_format=self.keyfmt, value_format=self.valuefmt)
242 self.uri, 100, key_format=self.keyfmt, value_format=self.valuefmt)
249 self.uri, 100, key_format=self.keyfmt, value_format=self.valuefmt)
271 self.uri, 100, key_format=self.keyfmt, value_format=self.valuefmt)
289 self.uri, 20, key_format=self.keyfmt, value_format=self.valuefmt)
314 self.uri, 20, key_format=self.keyfmt, value_format=self.valuefmt)
334 self.uri, 20, key_format=self.keyfmt, value_format=self.valuefmt)
H A Dtest_checkpoint01.py148 SimpleDataSet(self, self.uri, 100, key_format=self.fmt).populate()
158 SimpleDataSet(self, self.uri, 100, key_format=self.fmt).populate()
175 SimpleDataSet(self, self.uri, 100, key_format=self.fmt).populate()
224 ds1 = SimpleDataSet(self, uri, 100, key_format=self.fmt)
229 ds2 = SimpleDataSet(self, uri, 100, key_format=self.fmt)
234 ds3 = SimpleDataSet(self, uri, 100, key_format=self.fmt)
265 ds = SimpleDataSet(self, self.uri, 100, key_format=self.fmt)
293 ds = SimpleDataSet(self, uri, 100, key_format=self.fmt)
315 ds = SimpleDataSet(self, "file:checkpoint", 100, key_format='S')
H A Dtest_cursor11.py67 ds = self.ds(self, uri, 50, key_format=self.keyfmt)
92 ds = self.ds(self, uri, 50, key_format=self.keyfmt)
116 ds = self.ds(self, uri, 50, key_format=self.keyfmt)
141 ds = self.ds(self, uri, 50, key_format=self.keyfmt)
H A Dtest_dump.py110 pop = self.dataset(self, uri, self.nentries, key_format=self.keyfmt)
162 pop = self.dataset(self, uri2, self.nentries, key_format=self.keyfmt)
180 pop = ProjectionDataSet(self, uri, self.nentries, key_format='S')
210 pop_reload = ProjectionDataSet(self, uri, self.nentries, key_format='S')
/dports/security/silktools/silk-3.19.1/src/rwbag/
H A Drwbagcat.c164 static uint32_t key_format = 0; variable
554 if (key_format && !(key_format & KEY_FORMAT_IP)) { in appSetup()
561 key_format = key_format & ~SKIPADDR_UNMAP_V6; in appSetup()
934 if (!key_format) { in keyFormatParse()
2247 if (0 == key_format) { in bagcatCheckKeyFormat()
2259 if (0 == key_format) { in bagcatCheckKeyFormat()
2271 if (0 == key_format) { in bagcatCheckKeyFormat()
2286 if (0 == key_format) { in bagcatCheckKeyFormat()
2315 if ((0 == key_format) || (key_format & KEY_FORMAT_IP)) { in bagcatCheckKeyFormat()
2340 if (0 != key_format && !(key_format & KEY_FORMAT_IP)) { in bagcatCheckKeyFormat()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/swarming_client/utils/
H A Dgraph.py49 def print_histogram(data, columns=0, key_format=None): argument
63 key_format = key_format or '%s'
65 max_key_width = max(len(key_format % k) for k in data)
78 key = (key_format % k).rjust(max_key_width)
/dports/security/p5-openxpki/openxpki-3.16.1/config/config.d/realm.tpl/workflow/def/
H A Dcertificate_privkey_export.yaml60 - key_format
76 - key_format
89 _map_key_format: $key_format
150 test: $context->{key_format} eq 'PKCS12'
155 test: $context->{key_format} eq 'PKCS8_PEM'
160 test: $context->{key_format} eq 'PKCS8_DER'
165 test: $context->{key_format} eq 'OPENSSL_PRIVKEY'
170 test: $context->{key_format} eq 'JAVA_KEYSTORE'
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/crypto/plugins/module_utils/openssh/
H A Dcryptography.py406 def encode_openssh_privatekey(asym_keypair, key_format): argument
413 if key_format == 'SSH':
419 elif key_format == 'PKCS8':
421 elif key_format == 'PKCS1':
541 def load_privatekey(path, passphrase, key_format): argument
554 privatekey_loader = privatekey_loaders[key_format]
558 key_format,
578 if key_format == 'SSH':
601 def load_publickey(path, key_format): argument
609 publickey_loader = publickey_loaders[key_format]
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/webcrypto/algorithms/
H A Decdsa_unittest.cc165 blink::WebCryptoKeyFormat key_format = GetKeyFormatFromJsonTestCase(test); in TEST_F() local
167 GetKeyDataFromJsonTestCase(test, key_format); in TEST_F()
175 Status status = ImportKey(key_format, CryptoData(key_data), in TEST_F()
211 blink::WebCryptoKeyFormat key_format, in GetExpectedUsagesForKeyImport() argument
216 switch (key_format) { in GetExpectedUsagesForKeyImport()
246 blink::WebCryptoKeyFormat key_format = GetKeyFormatFromJsonTestCase(test); in TEST_F() local
248 GetKeyDataFromJsonTestCase(test, key_format); in TEST_F()
254 key_format, CryptoData(key_data), CreateEcdsaImportAlgorithm(curve), in TEST_F()
255 true, GetExpectedUsagesForKeyImport(key_format, test), &key); in TEST_F()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/webcrypto/algorithms/
H A Decdsa_unittest.cc165 blink::WebCryptoKeyFormat key_format = GetKeyFormatFromJsonTestCase(test); in TEST_F() local
167 GetKeyDataFromJsonTestCase(test, key_format); in TEST_F()
175 Status status = ImportKey(key_format, CryptoData(key_data), in TEST_F()
211 blink::WebCryptoKeyFormat key_format, in GetExpectedUsagesForKeyImport() argument
216 switch (key_format) { in GetExpectedUsagesForKeyImport()
247 blink::WebCryptoKeyFormat key_format = GetKeyFormatFromJsonTestCase(test); in TEST_F() local
249 GetKeyDataFromJsonTestCase(test, key_format); in TEST_F()
255 key_format, CryptoData(key_data), CreateEcdsaImportAlgorithm(curve), in TEST_F()
256 true, GetExpectedUsagesForKeyImport(key_format, test), &key); in TEST_F()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/wiredtiger/src/utilities/
H A Dutil_write.c74 if (!WT_STREQ(cursor->key_format, "r") && in util_write()
75 !WT_STREQ(cursor->key_format, "S")) { in util_write()
82 rkey = WT_STREQ(cursor->key_format, "r"); in util_write()
H A Dutil_read.c54 if (!WT_STREQ(cursor->key_format, "r") && in util_read()
55 !WT_STREQ(cursor->key_format, "S")) { in util_read()
62 rkey = WT_STREQ(cursor->key_format, "r"); in util_read()
H A Dutil_loadtext.c78 (!WT_STREQ(cursor->key_format, "S") && in text()
79 !WT_STREQ(cursor->key_format, "r"))) in text()
83 readkey = !WT_STREQ(cursor->key_format, "r"); in text()
/dports/security/yubico-piv-tool/yubico-piv-tool-2.2.0/tool/
H A Dyubico-piv-tool.c263 if(key_format == key_format_arg_PEM) { in generate_key()
402 if(key_format == key_format_arg_PEM) { in import_key()
887 if(key_format == key_format_arg_PEM) { in request_certificate()
969 if(key_format == key_format_arg_PEM) { in selfsign_certificate()
1143 if(key_format == key_format_arg_PEM) { in selfsign_certificate()
1279 if (key_format != key_format_arg_PEM && in read_certificate()
1280 key_format != key_format_arg_DER && in read_certificate()
1281 key_format != key_format_arg_SSH) { in read_certificate()
1297 if (key_format == key_format_arg_PEM || in read_certificate()
1955 if(key_format != key_format_arg_PEM && key_format != key_format_arg_DER) { in attest()
[all …]
/dports/mail/postfix-current/postfix-3.7-20211107/src/global/
H A Ddict_memcache.c79 char *key_format; /* query key translation */ member
279 if (dict_mc->key_format != 0 in dict_memcache_prepare_key()
280 && strcmp(dict_mc->key_format, DICT_MC_DEF_KEY_FMT) != 0) { in dict_memcache_prepare_key()
282 if (db_common_expand(dict_mc->dbc_ctxt, dict_mc->key_format, in dict_memcache_prepare_key()
484 if (dict_mc->key_format) in dict_memcache_close()
485 myfree(dict_mc->key_format); in dict_memcache_close()
546 dict_mc->key_format = cfg_get_str(dict_mc->parser, DICT_MC_NAME_KEY_FMT, in dict_memcache_open()
588 dict_mc->key_format, 1); in dict_memcache_open()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/wiredtiger/src/cursor/
H A Dcur_index.c110 1, cindex->index->key_format, in __curindex_move()
250 WT_ERR(__wt_struct_repack(session, child->key_format, in __curindex_search()
251 cindex->iface.key_format, &child->key, &found_key)); in __curindex_search()
327 cindex->child->key_format, cindex->iface.key_format, in __curindex_search_near()
507 cursor->key_format = idx->idxkey_format; in __wt_curindex_open()
547 __wt_json_column_init(cursor, uri, table->key_format, in __wt_curindex_open()

12345678910>>...13