/* ===============================================================================
'
'	File:		public.js
'	Copyright:      Sloan by Design (c) 2003
'	Site:		www.hairwithflair.co.uk
'
'	Date Created:   29/04/2003
'	Initial Author: Linda Sloan
'
'	Purpose:
'	Access embedded public key for encryption.
'
'	Uses:
'	crypto.js - Copyright (c) 2000 John M Hanna (GPL)
'
'	Modifications
'	Developer       Date        Comments
'
'=============================================================================== */

function public_Encrypt(a_plaintext) {

    var e = [17];
    var p_q = [53586951,183582726,264002081,172691546,150495552,17182511,
               154670068,22754440,70932853,24878841,190399662,184571531,
               241687025,166416151,168702807,97068686,81686966,156936549,167];

    return rsaEncode(e, p_q, a_plaintext);
}
