HomeSort by relevance Sort by last modified time
    Searched full:bioctx (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLX509CRLEntry.java 127 long bioCtx = NativeCrypto.create_BIO_OutputStream(os);
129 NativeCrypto.X509_REVOKED_print(bioCtx, mContext);
132 NativeCrypto.BIO_free(bioCtx);
OpenSSLX509CRL.java 373 final long bioCtx = NativeCrypto.create_BIO_OutputStream(os);
375 NativeCrypto.X509_CRL_print(bioCtx, mContext);
378 NativeCrypto.BIO_free(bioCtx);
OpenSSLX509Certificate.java 383 long bioCtx = NativeCrypto.create_BIO_OutputStream(os);
385 NativeCrypto.X509_print_ex(bioCtx, mContext, 0, 0);
388 NativeCrypto.BIO_free(bioCtx);
NativeCrypto.java 372 public static native long d2i_X509_bio(long bioCtx);
376 public static native long PEM_read_bio_X509(long bioCtx);
393 public static native void X509_print_ex(long bioCtx, long x509ctx, long nmflag, long certflag);
455 public static native long[] d2i_PKCS7_bio(long bioCtx, int which);
461 public static native long[] PEM_read_bio_PKCS7(long bioCtx, int which);
465 public static native long d2i_X509_CRL_bio(long bioCtx);
467 public static native long PEM_read_bio_X509_CRL(long bioCtx);
473 public static native void X509_CRL_print(long bioCtx, long x509CrlCtx);
    [all...]

Completed in 195 milliseconds