• Home
Name Date Size #Lines LOC

..--

android/03-May-2024-2,1871,604

android-stub/03-May-2024-940512

api-doclet/03-May-2024-163104

benchmark-base/03-May-2024-1,314871

benchmark-graphs/03-May-2024-259204

benchmark-jmh/03-May-2024-501306

common/src/03-May-2024-33,78423,061

constants/03-May-2024-181132

gradle/wrapper/03-May-2024-76

libcore-stub/03-May-2024-1,7781,180

licenses/03-May-2024-404338

openjdk/03-May-2024-8,0666,370

openjdk-integ-tests/03-May-2024-6,1374,983

openjdk-uber/03-May-2024-6859

platform/03-May-2024-7,4565,081

testing/03-May-2024-5,0903,771

.clang-formatD03-May-2024268 1715

.gitignoreD03-May-2024213 2922

.travis.ymlD03-May-20244.6 KiB12585

Android.bpD03-May-20242.2 KiB9878

Android.mkD03-May-202410 KiB291192

BUILDING.mdD03-May-20242.7 KiB10682

CONTRIBUTING.mdD03-May-20241.4 KiB3826

DockerfileD03-May-20243.7 KiB10896

LICENSED03-May-202411.1 KiB203169

MODULE_LICENSE_APACHE2D03-May-20240

NOTICED03-May-20241.1 KiB3123

OWNERSD03-May-202454 43

PREUPLOAD.cfgD03-May-202465 43

README.mdD03-May-20244.2 KiB153117

RELEASING.mdD03-May-202410 KiB283228

appveyor.ymlD03-May-20244.1 KiB12577

build.gradleD03-May-20248.6 KiB241211

gradlewD03-May-20245.2 KiB173128

gradlew.batD03-May-20242.1 KiB8561

jarjar-rules.txtD03-May-202437 21

settings.gradleD03-May-20241.5 KiB2927

README.md

1Conscrypt - A Java Security Provider
2========================================
3
4Conscrypt is a Java Security Provider (JSP) that implements parts of the
5Java Cryptography Extension (JCE) and Java Secure Socket Extension (JSSE).
6It uses BoringSSL to provide cryptographical primitives and Transport Layer
7Security (TLS) for Java applications on Android and OpenJDK.
8
9The core SSL engine has borrowed liberally from the [Netty](http://netty.io/) project and their
10work on [netty-tcnative](http://netty.io/wiki/forked-tomcat-native.html), giving `Conscrypt`
11similar performance.
12
13<table>
14  <tr>
15    <td><b>Homepage:</b></td>
16    <td>
17      <a href="https://conscrypt.org/">conscrypt.org</a>
18    </td>
19  </tr>
20  <tr>
21    <td><b>Mailing List:</b></td>
22    <td>
23      <a href="https://groups.google.com/forum/#!forum/conscrypt">conscrypt@googlegroups.com</a>
24    </td>
25  </tr>
26</table>
27
28Download
29-------------
30<b><u>NOTE:</u> This section is under construction! Artifacts have
31not yet been published to the public Maven repositories.</b>
32
33#### Download JARs
34You can download
35[the JARs](http://search.maven.org/#search%7Cga%7C1%7Cg:%22org.conscrypt%22%20AND%20v:%221.1.0%22)
36directly from the Maven repositories.
37
38#### OpenJDK (i.e. non-Android)
39
40##### Native Classifiers
41
42The OpenJDK artifacts are platform-dependent since each embeds a native library for a particular
43platform. We publish artifacts to Maven Central for the following platforms:
44
45Classifier | Description
46---------------- | -----------
47windows-x86_64 | Windows distribution
48osx-x86_64 | Mac distribution
49linux-x86_64 | Used for Linux
50
51##### Maven
52
53Use the [os-maven-plugin](https://github.com/trustin/os-maven-plugin) to add the dependency:
54
55```xml
56<build>
57  <extensions>
58    <extension>
59      <groupId>kr.motd.maven</groupId>
60      <artifactId>os-maven-plugin</artifactId>
61      <version>1.4.1.Final</version>
62    </extension>
63  </extensions>
64</build>
65
66<dependency>
67  <groupId>org.conscrypt</groupId>
68  <artifactId>conscrypt-openjdk</artifactId>
69  <version>1.1.0-SNAPSHOT</version>
70  <classifier>${os.detected.classifier}</classifier>
71</dependency>
72```
73
74##### Gradle
75Use the [osdetector-gradle-plugin](https://github.com/google/osdetector-gradle-plugin)
76(which is a wrapper around the os-maven-plugin) to add the dependency:
77
78```gradle
79buildscript {
80  repositories {
81    mavenCentral()
82  }
83  dependencies {
84    classpath 'com.google.gradle:osdetector-gradle-plugin:1.4.0'
85  }
86}
87
88// Use the osdetector-gradle-plugin
89apply plugin: "com.google.osdetector"
90
91dependencies {
92  compile 'org.conscrypt:conscrypt-jdk:1.1.0-SNAPSHOT:' + osdetector.classifier
93}
94```
95
96##### Uber JAR
97
98For convenience, we also publish an Uber JAR to Maven Central that contains the shared
99libraries for all of the published platforms. While the overall size of the JAR is
100larger than depending on a platform-specific artifact, it greatly simplifies the task of
101dependency management for most platforms.
102
103To depend on the uber jar, simply use the `conscrypt-openjdk-uber` artifacts.
104
105###### Maven
106```xml
107<dependency>
108  <groupId>org.conscrypt</groupId>
109  <artifactId>conscrypt-openjdk-uber</artifactId>
110  <version>1.1.0-SNAPSHOT</version>
111</dependency>
112```
113
114###### Gradle
115```gradle
116dependencies {
117  compile 'org.conscrypt:conscrypt-jdk-uber:1.1.0-SNAPSHOT'
118}
119```
120
121
122How to Build
123------------
124
125If you are making changes to Conscrypt, see the [building
126instructions](BUILDING.md).
127
128Source Overview
129----------------------------
130
131Here's a quick readers' guide to the code to help folks get started. The high-level modules are __Common__, __Android__,
132__OpenJDK__, and __Platform__.
133
134### Common
135
136This contains the bulk of the code for both Java and C. This isn't an actual module and builds no
137artifacts. Rather, the other modules just point to this directory as source.
138
139### Android
140
141This module provides the `Platform` class for Android and also adds compatibility classes for
142supporting various versions of Android. This generates an `aar` library artifact.
143
144### OpenJDK
145
146These modules provide the `Platform` class for non-Android (OpenJDK-based) systems. It also provides
147a native library loader supports bundling the shared library with the JAR.
148
149### Platform
150
151This is not an actual module and is not part of the default build. This is used for building
152 Conscrypt as an embedded component of the Android platform.
153