diff options
author | lloyd <[email protected]> | 2009-07-22 14:06:01 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-07-22 14:06:01 +0000 |
commit | d8d9b1672c286023c5d38ee7ec25c000b452b66c (patch) | |
tree | 743342a9fbb1543a1b99c16ff17ac7255f17c59c /src/pubkey | |
parent | f7a49029684cdb09d04d22b3580914216bbe125f (diff) |
Replace 'XXX' and other such notes with FIXME for easy grepping
Diffstat (limited to 'src/pubkey')
-rw-r--r-- | src/pubkey/eckaeg/eckaeg.cpp | 5 | ||||
-rw-r--r-- | src/pubkey/pk_codecs/pkcs8.h | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/pubkey/eckaeg/eckaeg.cpp b/src/pubkey/eckaeg/eckaeg.cpp index 0d094e2e1..b8ff75d89 100644 --- a/src/pubkey/eckaeg/eckaeg.cpp +++ b/src/pubkey/eckaeg/eckaeg.cpp @@ -129,9 +129,10 @@ MemoryVector<byte> ECKAEG_PrivateKey::public_value() const /** * Derive a key */ -SecureVector<byte> ECKAEG_PrivateKey::derive_key(const byte key[], u32bit key_len) const +SecureVector<byte> ECKAEG_PrivateKey::derive_key(const byte key[], + u32bit key_len) const { - MemoryVector<byte> key_x(key, key_len); // XXX fix this, nasty/slow + MemoryVector<byte> key_x(key, key_len); // FIXME: nasty/slow PointGFp point = OS2ECP(key_x, public_point().get_curve()); return m_eckaeg_core.agree(point); diff --git a/src/pubkey/pk_codecs/pkcs8.h b/src/pubkey/pk_codecs/pkcs8.h index 0965e5ff1..28008bdba 100644 --- a/src/pubkey/pk_codecs/pkcs8.h +++ b/src/pubkey/pk_codecs/pkcs8.h @@ -30,7 +30,7 @@ class BOTAN_DLL PKCS8_Encoder * Get the DER encoded key. * @return the DER encoded key */ - // XXX: Why not SecureVector? + // FIXME: Why not SecureVector? virtual MemoryVector<byte> key_bits() const = 0; virtual ~PKCS8_Encoder() {} }; |