Questions tagged [google-conscrypt]

8 questions
5
votes
1 answer

How integrate the new conscrypt library to Android and use it by default

In android, if i get (SSLSocketFactory) SSLSocketFactory.getDefault() i get the inner socket factory with this class com.android.org.conscrypt.OpenSSLSocketFactoryImpl. After adding this dependency dependencies { implementation…
ilw
  • 2,499
  • 5
  • 30
  • 54
2
votes
1 answer

OpenSSLX509Certificate TimeoutException

I am seeing following crash in an Android app and don't have a clue where this can happen since the stacktrace does not point it to me clearly. Do somebody of you have a clue, idea, hint how this can happen? TimeoutException…
David
  • 3,971
  • 1
  • 26
  • 65
1
vote
1 answer

dataframe.show() not work in Pyspark inside a Debian VM (Dataproc)

currently using GCP and Dataproc, i´m new to apache spark, pyspark and debian vm. So, i´m trying to replicated inside dataproc cluster (Debian VM) a spark job that i run perfectly in my local machine (W10, VS Code, Spark 3.3.1). Ingestion from SQL…
1
vote
0 answers

[android][conscrypt][Amazon Fire TV] ssl == null NPE at com.android.org.conscrypt.NativeCrypto.SSL_write

Getting this exception in production app. But unable to reproduce this issue. Exception Stacktrace Fatal Exception: java.lang.NullPointerException: ssl == null at com.android.org.conscrypt.NativeCrypto.SSL_write(NativeCrypto.java) at…
1
vote
0 answers

Use of Conscrypt library

How to use conscrypt library in a way that we can use a boringCrypto module? In conscrypt we have nativeCrypto class in that we have native methods present i have to utilize that methods for encryption and decryption in such a way that it is FIPS…
1
vote
0 answers

What is conscrypt ? Can you explain its usage with some examples?

I need to use Conscrypt in my Java application. I understand that it implements parts of the Java Cryptography Extension (JCE) and Java Secure Socket Extension (JSSE). What code changes are required to use it.
CleanCoder540
  • 57
  • 1
  • 8
0
votes
0 answers

Why TrustManagerImpl comes from different packages in AndroidCodeSearch and in sources downloaded through SdkManager?

TrustManagerImpl is used in tls-checks in android sdk. Here it is in AndroidCodeSearch. Pay attention to the package: package org.conscrypt; This class is also used in android sdk sources. I mean the sources which have been downloaded from…
Eugene Chumak
  • 3,272
  • 7
  • 34
  • 52
0
votes
0 answers

How to add more cipher suites? (conscrypt)

I would like to fork this conscrypt project and add more cipher suites, let's say TLS_PSK_WITH_AES_128_CBC_SHA256, what I should change/add (in conscript/boringSSL) to make it working? I was looking at mentioned projects, but I'm not familiar with…
Porok12
  • 262
  • 2
  • 10