Home | History | Annotate | Download | only in base
      1 /*
      2  * libjingle
      3  * Copyright 2004--2008, Google Inc.
      4  *
      5  * Redistribution and use in source and binary forms, with or without
      6  * modification, are permitted provided that the following conditions are met:
      7  *
      8  *  1. Redistributions of source code must retain the above copyright notice,
      9  *     this list of conditions and the following disclaimer.
     10  *  2. Redistributions in binary form must reproduce the above copyright notice,
     11  *     this list of conditions and the following disclaimer in the documentation
     12  *     and/or other materials provided with the distribution.
     13  *  3. The name of the author may not be used to endorse or promote products
     14  *     derived from this software without specific prior written permission.
     15  *
     16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
     17  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
     18  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
     19  * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
     20  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
     21  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
     22  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
     23  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
     24  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
     25  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     26  */
     27 
     28 #ifndef TALK_BASE_NSSIDENTITY_H_
     29 #define TALK_BASE_NSSIDENTITY_H_
     30 
     31 #include <string>
     32 
     33 #include "cert.h"
     34 #include "nspr.h"
     35 #include "hasht.h"
     36 #include "keythi.h"
     37 
     38 #include "talk/base/common.h"
     39 #include "talk/base/logging.h"
     40 #include "talk/base/scoped_ptr.h"
     41 #include "talk/base/sslidentity.h"
     42 
     43 namespace talk_base {
     44 
     45 class NSSKeyPair {
     46  public:
     47   NSSKeyPair(SECKEYPrivateKey* privkey, SECKEYPublicKey* pubkey) :
     48       privkey_(privkey), pubkey_(pubkey) {}
     49   ~NSSKeyPair();
     50 
     51   // Generate a 1024-bit RSA key pair.
     52   static NSSKeyPair* Generate();
     53   NSSKeyPair* GetReference();
     54 
     55   SECKEYPrivateKey* privkey() const { return privkey_; }
     56   SECKEYPublicKey * pubkey() const { return pubkey_; }
     57 
     58  private:
     59   SECKEYPrivateKey* privkey_;
     60   SECKEYPublicKey* pubkey_;
     61 
     62   DISALLOW_EVIL_CONSTRUCTORS(NSSKeyPair);
     63 };
     64 
     65 
     66 class NSSCertificate : public SSLCertificate {
     67  public:
     68   static NSSCertificate* FromPEMString(const std::string& pem_string);
     69   explicit NSSCertificate(CERTCertificate* cert) : certificate_(cert) {}
     70   virtual ~NSSCertificate() {
     71     if (certificate_)
     72       CERT_DestroyCertificate(certificate_);
     73   }
     74 
     75   virtual NSSCertificate* GetReference() const;
     76 
     77   virtual std::string ToPEMString() const;
     78 
     79   virtual bool ComputeDigest(const std::string& algorithm,
     80                              unsigned char* digest, std::size_t size,
     81                              std::size_t* length) const;
     82 
     83   CERTCertificate* certificate() { return certificate_; }
     84 
     85   // Helper function to get the length of a digest
     86   static bool GetDigestLength(const std::string& algorithm,
     87                               std::size_t* length);
     88 
     89   // Comparison
     90   bool Equals(const NSSCertificate* tocompare) const;
     91 
     92  private:
     93   static bool GetDigestObject(const std::string& algorithm,
     94                               const SECHashObject** hash_object);
     95 
     96   CERTCertificate* certificate_;
     97 
     98   DISALLOW_EVIL_CONSTRUCTORS(NSSCertificate);
     99 };
    100 
    101 // Represents a SSL key pair and certificate for NSS.
    102 class NSSIdentity : public SSLIdentity {
    103  public:
    104   static NSSIdentity* Generate(const std::string& common_name);
    105   static SSLIdentity* FromPEMStrings(const std::string& private_key,
    106                                      const std::string& certificate);
    107   virtual ~NSSIdentity() {
    108     LOG(LS_INFO) << "Destroying NSS identity";
    109   }
    110 
    111   virtual NSSIdentity* GetReference() const;
    112   virtual NSSCertificate& certificate() const;
    113 
    114   NSSKeyPair* keypair() const { return keypair_.get(); }
    115 
    116  private:
    117   NSSIdentity(NSSKeyPair* keypair, NSSCertificate* cert) :
    118       keypair_(keypair), certificate_(cert) {}
    119 
    120   talk_base::scoped_ptr<NSSKeyPair> keypair_;
    121   talk_base::scoped_ptr<NSSCertificate> certificate_;
    122 
    123   DISALLOW_EVIL_CONSTRUCTORS(NSSIdentity);
    124 };
    125 
    126 }  // namespace talk_base
    127 
    128 #endif  // TALK_BASE_NSSIDENTITY_H_
    129