HomeSort by relevance Sort by last modified time
    Searched refs:keyring (Results 1 - 20 of 20) sorted by null

  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/
tsigkeyring.py 24 into a binary keyring which has (dns.name.Name, binary secret) pairs.
27 keyring = {}
31 keyring[keyname] = secret
32 return keyring
34 def to_text(keyring):
36 into a text keyring which has (textual DNS name, base64 secret) pairs.
40 for keyname in keyring:
42 secret = base64.encodestring(keyring[keyname])
query.py 148 r = dns.message.from_wire(wire, keyring=q.keyring, request_mac=q.mac,
252 r = dns.message.from_wire(wire, keyring=q.keyring, request_mac=q.mac,
259 timeout=None, port=53, keyring=None, keyname=None, relativize=True,
279 @param keyring: The TSIG keyring to use
280 @type keyring: dict
320 if not keyring is None:
321 q.use_tsig(keyring, keyname, algorithm=keyalgorithm
    [all...]
message.py 91 @ivar keyring: The TSIG keyring to use. The default is None.
92 @type keyring: dict
153 self.keyring = None
415 r.add_tsig(self.keyname, self.keyring[self.keyname],
422 def use_tsig(self, keyring, keyname=None, fudge=300,
425 """When sending, a TSIG signature using the specified keyring
428 @param keyring: The TSIG keyring to use; defaults to None.
429 @type keyring: dic
    [all...]
resolver.py 264 @ivar keyring: The TSIG keyring to use. The default is None.
265 @type keyring: dict
311 self.keyring = None
596 request.use_tsig(self.keyring, self.keyname, self.keyalgorithm)
677 def use_tsig(self, keyring, keyname=None,
681 @param keyring: The TSIG keyring to use; defaults to None.
682 @type keyring: dict
684 The key must be defined in the keyring. If a keyring is specifie
    [all...]
update.py 26 def __init__(self, zone, rdclass=dns.rdataclass.IN, keyring=None,
35 @param keyring: The TSIG keyring to use; defaults to None.
36 @type keyring: dict
38 The key must be defined in the keyring. If a keyring is specified
40 keyring. Note that the order of keys in a dictionary is not defined,
41 so applications should supply a keyname when a keyring is used, unless
42 they know the keyring contains only one key.
58 if not keyring is None
    [all...]
  /external/dbus/dbus/
dbus-keyring.h 2 /* dbus-keyring.h Store secret cookies in your homedir
38 DBusKeyring* _dbus_keyring_ref (DBusKeyring *keyring);
39 void _dbus_keyring_unref (DBusKeyring *keyring);
41 int _dbus_keyring_get_best_key (DBusKeyring *keyring,
43 dbus_bool_t _dbus_keyring_is_for_credentials (DBusKeyring *keyring,
45 dbus_bool_t _dbus_keyring_get_hex_key (DBusKeyring *keyring,
dbus-keyring.c 2 /* dbus-keyring.c Store secret cookies in your homedir
25 #include "dbus-keyring.h"
32 * @defgroup DBusKeyring keyring class
80 * Maximum number of keys in the keyring before
115 DBusString filename; /**< Keyring filename */
119 DBusCredentials *credentials; /**< Credentials containing user the keyring is for */
125 DBusKeyring *keyring; local
127 keyring = dbus_new0 (DBusKeyring, 1);
128 if (keyring == NULL)
131 if (!_dbus_string_init (&keyring->directory)
714 DBusKeyring *keyring; local
    [all...]
dbus-auth.c 29 #include "dbus-keyring.h"
51 * @todo the cookie keyring needs to be cached globally not just
177 DBusKeyring *keyring; /**< Keyring for cookie mechanism. */ member in struct:DBusAuth
348 auth->keyring = NULL;
460 _dbus_assert (auth->keyring != NULL);
467 if (!_dbus_keyring_get_hex_key (auth->keyring, cookie_id,
567 /* we cache the keyring for speed, so here we drop it if it's the
568 * wrong one. FIXME caching the keyring here is useless since we use
571 if (auth->keyring &
    [all...]
Android.mk 20 dbus-keyring.c \
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/
test_keyring.py 24 import keyring
37 with mock.patch.object(keyring, 'get_password',
46 with mock.patch.object(keyring, 'get_password',
70 with mock.patch.object(keyring, 'get_password',
73 with mock.patch.object(keyring, 'set_password',
85 with mock.patch.object(keyring, 'get_password',
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
keyring_storage.py 15 """A keyring based Storage.
17 A Storage for Credentials that uses the keyring module.
24 import keyring
31 """Store and retrieve a single credential to and from the keyring.
33 To use this module you must have the keyring module installed. See
34 <http://pypi.python.org/pypi/keyring/>. This is an optional module and is not
38 The keyring module <http://pypi.python.org/pypi/keyring/> is a cross-platform
39 library for access the keyring capabilities of the local system. The user will
40 be prompted for their keyring password when this module is used, and th
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/provider/
test_provider.py 192 'keyring': 'test',
197 import keyring
200 sys.modules['keyring'] = keyring = type(mock)('keyring', '')
204 with mock.patch('keyring.get_password', create=True):
205 keyring.get_password.side_effect = (
213 del sys.modules['keyring']
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.runtime.compatibility.auth_3.2.200.v20100517.jar 
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
provider.py 329 elif config.has_option('Credentials', 'keyring'):
330 keyring_name = config.get('Credentials', 'keyring')
332 import keyring
334 boto.log.error("The keyring module could not be imported. "
335 "For keyring support, install the keyring "
338 self.secret_key = keyring.get_password(
340 boto.log.debug("Using secret key found in keyring.")
  /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/
upload-diffs.py 67 import keyring
69 keyring = None variable
625 Only use keyring on the initial call. If the keyring contains the wrong
630 global keyring
635 if keyring and not email in self.accounts_seen:
637 password = keyring.get_password(self.host, email)
641 print "Failed to get password from keyring"
642 keyring = None
644 print "Using password from system keyring.
    [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-linux.c     [all...]
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.runtime_3.11.0.v20150405-1723.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.core.runtime_3.9.100.v20131218-1515.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.core.runtime_3.9.0.v20130326-1255.jar 
  /external/bison/
maint.mk     [all...]

Completed in 478 milliseconds