MuntashirAkon / sun-security-android

Use the Android-private sun.security library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sun.security for Android

Android port of sun.security API from JDK7. Android actually have this API but only partially and is very restrictive.

Quick start

apksig for Android is available via JitPack.

// Top level build file
repositories {
    maven { url "https://jitpack.io" }
}

// Add to dependencies section
dependencies {
    implementation 'com.github.MuntashirAkon:sun-security-android:1.0'
}

Use android.sun.security instead of just sun.security for package names. It also contains the calendar API which can be used to create certificates.

Register KeyStores

Override Application#onCreate() and put the following line there:

Security.addProvider(new JavaKeyStoreProvider());

Features

It contains support for the following. See Java docs on sun.security for their usage.

  • Support for pk8
  • JKS and PKCS12
  • Anything under sun.security.x509

License

GPL-2.0 with "classpath" exception stated below:

Linking this library statically or dynamically with other modules is making
a combined work based on this library.  Thus, the terms and conditions of
the GNU General Public License cover the whole combination.

As a special exception, the copyright holders of this library give you
permission to link this library with independent modules to produce an
executable, regardless of the license terms of these independent modules,
and to copy and distribute the resulting executable under terms of your
choice, provided that you also meet, for each linked independent module,
the terms and conditions of the license of that module.  An independent
module is a module which is not derived from or based on this library.  If
you modify this library, you may extend this exception to your version of
the library, but you are not obligated to do so.  If you do not wish to do
so, delete this exception statement from your version.

About

Use the Android-private sun.security library

License:GNU General Public License v2.0


Languages

Language:Java 100.0%