Home | History | Annotate | Download | only in jsse

Lines Matching refs:NativeCrypto

60             final long crlCtx = NativeCrypto.d2i_X509_CRL_bio(bis.getBioContext());
68 NativeCrypto.BIO_free(bis.getBioContext());
78 certRefs = NativeCrypto.d2i_PKCS7_bio(bis.getBioContext(), NativeCrypto.PKCS7_CRLS);
82 NativeCrypto.BIO_free(bis.getBioContext());
99 final long crlCtx = NativeCrypto.PEM_read_bio_X509_CRL(bis.getBioContext());
107 NativeCrypto.BIO_free(bis.getBioContext());
117 certRefs = NativeCrypto.PEM_read_bio_PKCS7(bis.getBioContext(),
118 NativeCrypto.PKCS7_CRLS);
122 NativeCrypto.BIO_free(bis.getBioContext());
138 NativeCrypto.get_X509_CRL_ext_oids(mContext, NativeCrypto.EXTENSION_TYPE_CRITICAL);
146 && (NativeCrypto.get_X509_CRL_ext_oids(mContext,
147 NativeCrypto.EXTENSION_TYPE_NON_CRITICAL).length == 0)) {
156 return NativeCrypto.X509_CRL_get_ext_oid(mContext, oid);
162 NativeCrypto.get_X509_CRL_ext_oids(mContext,
163 NativeCrypto.EXTENSION_TYPE_NON_CRITICAL);
171 && (NativeCrypto.get_X509_CRL_ext_oids(mContext,
172 NativeCrypto.EXTENSION_TYPE_CRITICAL).length == 0)) {
182 NativeCrypto.get_X509_CRL_ext_oids(mContext, NativeCrypto.EXTENSION_TYPE_CRITICAL);
184 final long extensionRef = NativeCrypto.X509_CRL_get_ext(mContext, oid);
185 if (NativeCrypto.X509_supported_extension(extensionRef) != 1) {
195 return NativeCrypto.i2d_X509_CRL(mContext);
200 NativeCrypto.X509_CRL_verify(mContext, pkey.getPkeyContext());
246 return (int) NativeCrypto.X509_CRL_get_version(mContext) + 1;
256 final byte[] issuer = NativeCrypto.X509_CRL_get_issuer_name(mContext);
264 NativeCrypto.ASN1_TIME_to_Calendar(NativeCrypto.X509_CRL_get_lastUpdate(mContext),
273 NativeCrypto.ASN1_TIME_to_Calendar(NativeCrypto.X509_CRL_get_nextUpdate(mContext),
280 final long revokedRef = NativeCrypto.X509_CRL_get0_by_serial(mContext,
286 return new OpenSSLX509CRLEntry(NativeCrypto.X509_REVOKED_dup(revokedRef));
293 final long x509RevokedRef = NativeCrypto.X509_CRL_get0_by_cert(mContext,
300 return new OpenSSLX509CRLEntry(NativeCrypto.X509_REVOKED_dup(x509RevokedRef));
308 final long[] entryRefs = NativeCrypto.X509_CRL_get_REVOKED(mContext);
323 return NativeCrypto.get_X509_CRL_crl_enc(mContext);
328 return NativeCrypto.get_X509_CRL_signature(mContext);
338 return NativeCrypto.get_X509_CRL_sig_alg_oid(mContext);
343 return NativeCrypto.get_X509_CRL_sig_alg_parameter(mContext);
364 final long x509RevokedRef = NativeCrypto.X509_CRL_get0_by_cert(mContext,
373 final long bioCtx = NativeCrypto.create_BIO_OutputStream(os);
375 NativeCrypto.X509_CRL_print(bioCtx, mContext);
378 NativeCrypto.BIO_free(bioCtx);
386 NativeCrypto.X509_CRL_free(mContext);