The unified diff between revisions [2df88abf..] and [818e3621..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'packet.hh'
#
#
# patch "packet.hh"
# from [d3119983e2dc5164a6dd1ca161382c211eab5db1]
# to [36079522273c7e5e6b04bc2bebfd22cc07b5bf4c]
#
============================================================
--- packet.hh d3119983e2dc5164a6dd1ca161382c211eab5db1
+++ packet.hh 36079522273c7e5e6b04bc2bebfd22cc07b5bf4c
@@ -50,11 +50,11 @@ public:
virtual void consume_public_key(rsa_keypair_id const & ident,
- base64< rsa_pub_key > const & k) = 0;
+ rsa_pub_key const & k) = 0;
virtual void consume_key_pair(rsa_keypair_id const & ident,
keypair const & kp) = 0;
virtual void consume_old_private_key(rsa_keypair_id const & ident,
- base64< old_arc4_rsa_priv_key > const & k) = 0;
+ old_arc4_rsa_priv_key const & k) = 0;
};
// this writer writes packets into a stream
@@ -75,11 +75,11 @@ struct packet_writer : public packet_con
virtual void consume_revision_cert(revision<cert> const & t);
virtual void consume_public_key(rsa_keypair_id const & ident,
- base64< rsa_pub_key > const & k);
+ rsa_pub_key const & k);
virtual void consume_key_pair(rsa_keypair_id const & ident,
keypair const & kp);
virtual void consume_old_private_key(rsa_keypair_id const & ident,
- base64< old_arc4_rsa_priv_key > const & k);
+ old_arc4_rsa_priv_key const & k);
};
size_t read_packets(std::istream & in, packet_consumer & cons);