Lines Matching refs:result

157         BigInteger result = serialNumber;
158 if (result == null) {
159 serialNumber = result = tbsCert.getSerialNumber();
161 return result;
169 X500Principal result = issuer;
170 if (result == null) {
172 issuer = result = tbsCert.getIssuer().getX500Principal();
174 return result;
182 X500Principal result = subject;
183 if (result == null) {
185 subject = result = tbsCert.getSubject().getX500Principal();
187 return result;
195 long result = notBefore;
196 if (result == -1) {
197 notBefore = result = tbsCert.getValidity().getNotBefore().getTime();
199 return result;
207 long result = notAfter;
208 if (result == -1) {
209 notAfter = result = tbsCert.getValidity().getNotAfter().getTime();
211 return result;
219 byte[] result = tbsCertificate;
220 if (result == null) {
221 tbsCertificate = result = tbsCert.getEncoded();
223 return result;
231 byte[] result = signature;
232 if (result == null) {
233 signature = result = certificate.getSignatureValue();
235 return result;
239 String result = sigAlgName;
240 if (result == null) {
243 result = AlgNameMapper.map2AlgName(sigAlgOIDLocal);
244 if (result == null) {
246 result = sigAlgOIDLocal;
248 sigAlgName = result;
250 return result;
254 String result = sigAlgOID;
255 if (result == null) {
257 sigAlgOID = result = tbsCert.getSignature().getAlgorithm();
259 return result;
266 byte[] result = sigAlgParams;
267 if (result == null) {
268 result = tbsCert.getSignature().getParameters();
269 if (result == null) {
273 sigAlgParams = result;
275 return result;
348 byte[] result = encoding;
350 encoding = result = certificate.getEncoded();
352 return result;
356 PublicKey result = publicKey;
357 if (result == null) {
358 publicKey = result = tbsCert.getSubjectPublicKeyInfo().getPublicKey();
360 return result;