/* * Copyright (c) 2004 Beeyond Software Holding BV * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifdef HAVE_CONFIG_H # include "config.h" #endif #include "beecrypt/c++/provider/RSAPublicKeyImpl.h" #include "beecrypt/c++/provider/BeeKeyFactory.h" using namespace beecrypt::provider; RSAPublicKeyImpl::RSAPublicKeyImpl(const RSAPublicKey& copy) : _n(copy.getModulus()), _e(copy.getPublicExponent()) { _enc = 0; } RSAPublicKeyImpl::RSAPublicKeyImpl(const RSAPublicKeyImpl& copy) : _n(copy._n), _e(copy._e) { _enc = 0; } RSAPublicKeyImpl::RSAPublicKeyImpl(const mpbarrett& n, const mpnumber& e) : _n(n), _e(e) { _enc = 0; } RSAPublicKeyImpl::~RSAPublicKeyImpl() { if (_enc) delete _enc; } RSAPublicKeyImpl* RSAPublicKeyImpl::clone() const throw () { return new RSAPublicKeyImpl(*this); } bool RSAPublicKeyImpl::equals(const Object& compare) const throw () { if (this == &compare) return true; const RSAPublicKey* pub = dynamic_cast(&compare); if (pub) { if (pub->getModulus() != _n) return false; if (pub->getPublicExponent() != _e) return false; return true; } return false; } const mpbarrett& RSAPublicKeyImpl::getModulus() const throw () { return _n; } const mpnumber& RSAPublicKeyImpl::getPublicExponent() const throw () { return _e; } const bytearray* RSAPublicKeyImpl::getEncoded() const { if (!_enc) _enc = BeeKeyFactory::encode(*this); return _enc; } const String& RSAPublicKeyImpl::getAlgorithm() const throw () { static const String ALGORITHM = UNICODE_STRING_SIMPLE("RSA"); return ALGORITHM; } const String* RSAPublicKeyImpl::getFormat() const throw () { static const String FORMAT = UNICODE_STRING_SIMPLE("BEE"); return &FORMAT; }