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: 'cert.hh'
#
#
# patch "cert.hh"
# from [b6b577e3b55a38610801db071a7c766875b0422b]
# to [03b1552a547510f0c4f20292011a87143ee9366f]
#
============================================================
--- cert.hh b6b577e3b55a38610801db071a7c766875b0422b
+++ cert.hh 03b1552a547510f0c4f20292011a87143ee9366f
@@ -37,18 +37,18 @@ struct cert
cert(revision_id const & ident,
cert_name const & name,
- base64<cert_value> const & value,
+ cert_value const & value,
rsa_keypair_id const & key);
cert(revision_id const & ident,
cert_name const & name,
- base64<cert_value> const & value,
+ cert_value const & value,
rsa_keypair_id const & key,
- base64<rsa_sha1_signature> const & sig);
+ rsa_sha1_signature const & sig);
revision_id ident;
cert_name name;
- base64<cert_value> value;
+ cert_value value;
rsa_keypair_id key;
- base64<rsa_sha1_signature> sig;
+ rsa_sha1_signature sig;
bool operator<(cert const & other) const;
bool operator==(cert const & other) const;
};