aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-03-13 20:51:10 +0000
committerlloyd <[email protected]>2010-03-13 20:51:10 +0000
commit2b6d1d886ba228165fb504a6acd97d6bd20126cb (patch)
treed7dc24fa1b564edf8105d35d48a4699903ce5bc4 /src
parent72a154f3d7eef286b42a116232f8b7be88ccb6d6 (diff)
Fix GOST 34.10 pub key loading (uses little endian format, what the fsck?)
Diffstat (limited to 'src')
-rw-r--r--src/pubkey/gost_3410/gost_3410.cpp31
1 files changed, 25 insertions, 6 deletions
diff --git a/src/pubkey/gost_3410/gost_3410.cpp b/src/pubkey/gost_3410/gost_3410.cpp
index 0ba55cdd9..01a29d97a 100644
--- a/src/pubkey/gost_3410/gost_3410.cpp
+++ b/src/pubkey/gost_3410/gost_3410.cpp
@@ -11,6 +11,9 @@
#include <botan/der_enc.h>
#include <botan/ber_dec.h>
+#include <iostream>
+#include <stdio.h>
+
namespace Botan {
MemoryVector<byte> GOST_3410_PublicKey::x509_subject_public_key() const
@@ -19,10 +22,19 @@ MemoryVector<byte> GOST_3410_PublicKey::x509_subject_public_key() const
const BigInt& x = public_point().get_affine_x();
const BigInt& y = public_point().get_affine_y();
- MemoryVector<byte> bits(2*std::max(x.bytes(), y.bytes()));
+ u32bit part_size = std::max(x.bytes(), y.bytes());
+
+ MemoryVector<byte> bits(2*part_size);
- y.binary_encode(bits + (bits.size() / 2 - y.bytes()));
- x.binary_encode(bits + (bits.size() - x.bytes()));
+ x.binary_encode(bits + (part_size - x.bytes()));
+ y.binary_encode(bits + (2*part_size - y.bytes()));
+
+ // Keys are stored in little endian format (WTF)
+ for(u32bit i = 0; i != part_size / 2; ++i)
+ {
+ std::swap(bits[i], bits[part_size-1-i]);
+ std::swap(bits[part_size+i], bits[2*part_size-1-i]);
+ }
return DER_Encoder().encode(bits, OCTET_STRING).get_contents();
}
@@ -53,8 +65,15 @@ GOST_3410_PublicKey::GOST_3410_PublicKey(const AlgorithmIdentifier& alg_id,
const u32bit part_size = bits.size() / 2;
- BigInt y(bits, part_size);
- BigInt x(bits + part_size, part_size);
+ // Keys are stored in little endian format (WTF)
+ for(u32bit i = 0; i != part_size / 2; ++i)
+ {
+ std::swap(bits[i], bits[part_size-1-i]);
+ std::swap(bits[part_size+i], bits[2*part_size-1-i]);
+ }
+
+ BigInt x(bits, part_size);
+ BigInt y(bits + part_size, part_size);
public_key = PointGFp(domain().get_curve(), x, y);
@@ -64,7 +83,7 @@ GOST_3410_PublicKey::GOST_3410_PublicKey(const AlgorithmIdentifier& alg_id,
}
catch(Illegal_Point)
{
- throw Internal_Error("Loaded ECC public key failed self test");
+ throw Internal_Error("Loaded GOST 34.10 public key failed self test");
}
}