background preloader

Java & Lib

Facebook Twitter

Spongy Castle by rtyley. Zxing. Jersey. List of software that supports Office Open XML. This is an overview of software support for the Office Open XML format, a Microsoft document file format for saving and exchanging editable office documents.

List of software that supports Office Open XML

The list here is not exhaustive. §ECMA-376 1st edition implementations[edit] Aspose : File fomat manager. Bouncy Castle - Dev - Spongy Castle (Bouncy Castle repackage for Android) - v1.47 release. (Sun PKCS#11 Provider) Java Applet for Signing with a Smart Card. Using the Sun PKCS#11 Provider Without a Configuration File If you do not want to use an external configuration file, you can set the settings of the Sun PKCS#11 Provider dynamically by a stream.

(Sun PKCS#11 Provider) Java Applet for Signing with a Smart Card

This can be done in the following way: String pkcs11config = "name = SmartCardn" + "library = c:\windows\system32\pkcs201n.dll"; byte[] pkcs11configBytes = pkcs11config.getBytes(); ByteArrayInputStream configStream = newByteArrayInputStream(pkcs11configBytes); Provider pkcs11Provider = new sun.security.pkcs11.SunPKCS11(configStream); security.addProvider(pkcs11Provider);