Lines Matching refs:altNames

61 		static uno::Sequence< security::CertAltNameEntry > altNames;  member in __anoncf8e1d5f0111::Test
110 uno::Sequence< security::CertAltNameEntry > Test::altNames; member in __anoncf8e1d5f0111::Test
160 altNames = sanExtension->getAlternativeNames(); in init()
182 CPPUNIT_ASSERT_ASSERTION_PASS( CPPUNIT_ASSERT( altNames.getLength() > 0 ) ); in test_Others()
183 for(int n = 1; n < altNames.getLength(); n++) in test_Others()
185 if (altNames[n].Type == security::ExtAltNameType_OTHER_NAME) in test_Others()
188 if (altNames[n].Value >>= otherNameProp) in test_Others()
200 CPPUNIT_ASSERT_ASSERTION_PASS( CPPUNIT_ASSERT( altNames.getLength() > 0 ) ); in test_RFC822()
201 for(int n = 1; n < altNames.getLength(); n++) in test_RFC822()
203 if (altNames[n].Type == security::ExtAltNameType_RFC822_NAME) in test_RFC822()
206 altNames[n].Value >>= value; in test_RFC822()
213 CPPUNIT_ASSERT_ASSERTION_PASS( CPPUNIT_ASSERT( altNames.getLength() > 0 ) ); in test_DNS()
214 for(int n = 1; n < altNames.getLength(); n++) in test_DNS()
216 if (altNames[n].Type == security::ExtAltNameType_DNS_NAME) in test_DNS()
219 altNames[n].Value >>= value; in test_DNS()
230 CPPUNIT_ASSERT_ASSERTION_PASS( CPPUNIT_ASSERT( altNames.getLength() > 0 ) ); in test_URI()
231 for(int n = 1; n < altNames.getLength(); n++) in test_URI()
233 if (altNames[n].Type == security::ExtAltNameType_URL) in test_URI()
236 altNames[n].Value >>= value; in test_URI()
243 CPPUNIT_ASSERT_ASSERTION_PASS( CPPUNIT_ASSERT( altNames.getLength() > 0 ) ); in test_IP()
244 for(int n = 1; n < altNames.getLength(); n++) in test_IP()
246 if (altNames[n].Type == security::ExtAltNameType_IP_ADDRESS) in test_IP()
249 altNames[n].Value >>= ipAddress; in test_IP()
257 CPPUNIT_ASSERT_ASSERTION_PASS( CPPUNIT_ASSERT( altNames.getLength() > 0 ) ); in test_RID()
258 for(int n = 1; n < altNames.getLength(); n++) in test_RID()
260 if (altNames[n].Type == security::ExtAltNameType_REGISTERED_ID) in test_RID()
263 altNames[n].Value >>= value; in test_RID()