Home | History | Annotate | Download | only in cert

Lines Matching refs:result

158         BigInteger result = serialNumber;
159 if (result == null) {
160 serialNumber = result = tbsCert.getSerialNumber();
162 return result;
170 X500Principal result = issuer;
171 if (result == null) {
173 issuer = result = tbsCert.getIssuer().getX500Principal();
175 return result;
183 X500Principal result = subject;
184 if (result == null) {
186 subject = result = tbsCert.getSubject().getX500Principal();
188 return result;
196 long result = notBefore;
197 if (result == -1) {
198 notBefore = result = tbsCert.getValidity().getNotBefore().getTime();
200 return result;
208 long result = notAfter;
209 if (result == -1) {
210 notAfter = result = tbsCert.getValidity().getNotAfter().getTime();
212 return result;
220 byte[] result = tbsCertificate;
221 if (result == null) {
222 tbsCertificate = result = tbsCert.getEncoded();
224 return result;
232 byte[] result = signature;
233 if (result == null) {
234 signature = result = certificate.getSignatureValue();
236 return result;
240 String result = sigAlgName;
241 if (result == null) {
244 result = AlgNameMapper.map2AlgName(sigAlgOIDLocal);
245 if (result == null) {
247 result = sigAlgOIDLocal;
249 sigAlgName = result;
251 return result;
255 String result = sigAlgOID;
256 if (result == null) {
258 sigAlgOID = result = tbsCert.getSignature().getAlgorithm();
260 return result;
267 byte[] result = sigAlgParams;
268 if (result == null) {
269 result = tbsCert.getSignature().getParameters();
270 if (result == null) {
274 sigAlgParams = result;
276 return result;
349 byte[] result = encoding;
351 encoding = result = certificate.getEncoded();
353 return result;
357 PublicKey result = publicKey;
358 if (result == null) {
359 publicKey = result = tbsCert.getSubjectPublicKeyInfo().getPublicKey();
361 return result;