Home
last modified time | relevance | path

Searched refs:getComponentByName (Results 1 – 11 of 11) sorted by relevance

/external/python/pyasn1-modules/tools/
Docspclient.py52 issuerTbsCertificate = issuerCert.getComponentByName('tbsCertificate')
53 issuerSubject = issuerTbsCertificate.getComponentByName('subject')
55 userTbsCertificate = userCert.getComponentByName('tbsCertificate')
56 userIssuer = userTbsCertificate.getComponentByName('issuer')
66 …issuerSubjectPublicKey = issuerTbsCertificate.getComponentByName('subjectPublicKeyInfo').getCompon…
73 userSerialNumber = userTbsCertificate.getComponentByName('serialNumber')
79 reqCert = request.setComponentByName('reqCert').getComponentByName('reqCert')
81 hashAlgorithm = reqCert.setComponentByName('hashAlgorithm').getComponentByName('hashAlgorithm')
90 tbsRequest = ocspRequest.setComponentByName('tbsRequest').getComponentByName('tbsRequest')
93 requestList = tbsRequest.setComponentByName('requestList').getComponentByName('requestList')
[all …]
Dpkcs7dump.py39 contentType = contentInfo.getComponentByName('contentType')
51 contentInfo.getComponentByName('content'),
/external/python/pyasn1/docs/source/pyasn1/type/univ/
Dchoice.rst11 …getComponentByPosition, setComponentByPosition, getComponentByName, setComponentByName, setDefault…
Dsequence.rst11 setComponentByPosition, getComponentByName, setComponentByName, setDefaultComponents,
Dset.rst11 …getComponentByPosition, setComponentByPosition, getComponentByName, setComponentByName, setDefault…
/external/python/pyasn1/tests/codec/der/
Dtest_encoder.py100 self.s.getComponentByName('status').setComponentByPosition(0, 'A')
105 self.s.getComponentByName('status').setComponentByPosition(1, True)
127 s.getComponentByName('customer').setComponentByName('premium', True)
147 s.getComponentByName('customer').setComponentByName('premium', True)
/external/python/oauth2client/oauth2client/
D_pure_python_crypt.py178 pkey_info = key_info.getComponentByName('privateKey')
/external/python/pyasn1/tests/type/
Dtest_univ.py1326 assert self.s1.getComponentByName('name') == str2octs('abc'), 'set by name fails'
1509 assert s.getComponentByName('nick', default=None) is None
1543 assert s.getComponentByName('nick', instantiate=False) is univ.noValue
1947 assert s.getComponentByName('nick', default=None) is None
1965 assert s.getComponentByName('nick', instantiate=False) is univ.noValue
2131 assert s.getComponentByName('name', default=None, instantiate=False) is None
2132 assert s.getComponentByName('id', default=None, instantiate=False) is None
2152 assert s.getComponentByName('name', instantiate=False) is univ.noValue
2153 assert s.getComponentByName('id', instantiate=False) is univ.noValue
/external/python/pyasn1/tests/codec/cer/
Dtest_encoder.py403 self.s.getComponentByName('status').setComponentByPosition(0, 1)
425 s.getComponentByName('customer').setComponentByName('premium', True)
445 s.getComponentByName('customer').setComponentByName('premium', True)
/external/python/pyasn1/pyasn1/codec/ber/
Ddecoder.py652 governingValue = asn1Object.getComponentByName(
837 governingValue = asn1Object.getComponentByName(
/external/python/pyasn1/pyasn1/type/
Duniv.py2229 return self.getComponentByName(idx)
2331 def getComponentByName(self, name, default=noValue, instantiate=True): member in SequenceAndSetBase