Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 1.24 KB

RSAMessageFormat.readme.md

File metadata and controls

45 lines (30 loc) · 1.24 KB

Titaniumcore RSA Encryption Scheme

                                                        Titaniumcore Project

Atsushi Oka [ http://oka.nu/ ] Jan 8,2009

This script defines RSAMessageFormat class that implements an RSA message encryption scheme - Titaniumcore RSA Encryption Scheme.

Link

<script src="./tools/packages.js"></script>
<script src="./cipher/SecureRandom.js" ></script>
<script src="./cipher/BigInteger.init1.js" ></script>
<script src="./cipher/BigInteger.init2.js" ></script>
<script src="./cipher/RSA.init1.js" ></script>
<script src="./cipher/RSA.init2.js" ></script>
<script src="./cipher/SOAEP.js" ></script>
<script src="./cipher/BitPadding.js" ></script>
<script src="./tools/binary.js" ></script>
<script src="./cipher/RSAMessageFormat.js"></script>

Import

var RSAMessageFormat = __import( this, "titaniumcore.crypto.RSAMessageFormat" );

Constructor

Interface

RSAMessageFormat implements MessageFormat interface.

See MessageFormat.interface.md

// vim:ts=8:expandtab: