xca/lib/asn1int.cpp

160 lines
3.5 KiB
C++

/*
* Copyright (C) 2001 Christian Hohnstaedt.
*
* All rights reserved.
*
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* - Neither the name of the author nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
* This program links to software with different licenses from:
*
* http://www.openssl.org which includes cryptographic software
* written by Eric Young (eay@cryptsoft.com)"
*
* http://www.sleepycat.com
*
* http://www.trolltech.com
*
*
*
* http://www.hohnstaedt.de/xca
* email: christian@hohnstaedt.de
*
* $Id$
*
*/
#include "asn1int.h"
#include <openssl/bn.h>
a1int::a1int()
{
in = ASN1_INTEGER_new();
ASN1_INTEGER_set(in, 0);
}
a1int::a1int(ASN1_INTEGER *i)
{
in = ASN1_INTEGER_dup(i);
}
a1int::~a1int()
{
ASN1_INTEGER_free(in);
}
void a1int::set(ASN1_INTEGER *i)
{
if (in != NULL)
ASN1_INTEGER_free(in);
in = ASN1_INTEGER_dup(i);
}
void a1int::set(long i)
{
ASN1_INTEGER_set(in, i);
}
QString a1int::toHex()
{
BIGNUM *bn = ASN1_INTEGER_to_BN(in, NULL);
char *res = BN_bn2hex(bn);
QString r = res;
OPENSSL_free(bn);
OPENSSL_free(res);
return r;
}
QString a1int::toDec()
{
BIGNUM *bn = ASN1_INTEGER_to_BN(in, NULL);
char *res = BN_bn2dec(bn);
QString r = res;
OPENSSL_free(bn);
OPENSSL_free(res);
return r;
}
ASN1_INTEGER *a1int::get()
{
return ASN1_INTEGER_dup(in);
}
long a1int::getLong()
{
return ASN1_INTEGER_get(in);
}
void a1int::operator ++ (void)
{
BIGNUM *bn = ASN1_INTEGER_to_BN(in, NULL);
BN_add(bn, bn, BN_value_one());
BN_to_ASN1_INTEGER(bn, in);
OPENSSL_free(bn);
}
void a1int::operator = (const a1int &a)
{
set(a.in);
}
bool const a1int::operator > (const a1int &a)
{
return (ASN1_INTEGER_cmp(in, a.in) == 1);
}
bool const a1int::operator < (const a1int &a)
{
return (ASN1_INTEGER_cmp(in, a.in) == -1);
}
bool const a1int::operator == (const a1int &a)
{
return (ASN1_INTEGER_cmp(in, a.in) == 0);
}
bool const a1int::operator != (const a1int &a)
{
return (ASN1_INTEGER_cmp(in, a.in) != 0);
}
unsigned char *a1int::i2d(unsigned char *p)
{
unsigned char *mp = p;
i2d_ASN1_INTEGER(in, &mp);
return mp;
}
int a1int::derSize()
{
return i2d_ASN1_INTEGER(in, NULL);
}
//if (a->length > sizeof(long))