Index: net/base/x509_util.h |
=================================================================== |
--- net/base/x509_util.h (revision 112390) |
+++ net/base/x509_util.h (working copy) |
@@ -12,7 +12,6 @@ |
#include "net/base/net_export.h" |
namespace crypto { |
-class ECPrivateKey; |
class RSAPrivateKey; |
} |
@@ -27,16 +26,11 @@ |
// |
// See Internet Draft draft-balfanz-tls-obc-00 for more details: |
// http://tools.ietf.org/html/draft-balfanz-tls-obc-00 |
-bool NET_EXPORT_PRIVATE CreateOriginBoundCertRSA(crypto::RSAPrivateKey* key, |
- const std::string& origin, |
- uint32 serial_number, |
- base::TimeDelta valid_duration, |
- std::string* der_cert); |
-bool NET_EXPORT_PRIVATE CreateOriginBoundCertEC(crypto::ECPrivateKey* key, |
- const std::string& origin, |
- uint32 serial_number, |
- base::TimeDelta valid_duration, |
- std::string* der_cert); |
+bool NET_EXPORT_PRIVATE CreateOriginBoundCert(crypto::RSAPrivateKey* key, |
+ const std::string& origin, |
+ uint32 serial_number, |
+ base::TimeDelta valid_duration, |
+ std::string* der_cert); |
} // namespace x509_util |