blob: 1d5deb81170850098dc669ec94a9641f10ca502a [file] [log] [blame]
Jeff Thompsonc0573432013-09-19 17:41:36 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/**
3 * Copyright (C) 2013 Regents of the University of California.
4 * @author: Yingdi Yu <yingdi@cs.ucla.edu>
5 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
6 * See COPYING for copyright and distribution information.
7 */
8
Jeff Thompson07996712013-10-17 17:31:40 -07009// We can use ndnboost::iostreams because this is internal and will not conflict with the application if it uses boost::iostreams.
10#include <ndnboost/iostreams/stream.hpp>
11#include <ndnboost/iostreams/device/array.hpp>
Jeff Thompson25b4e612013-10-10 16:03:24 -070012#include <ndn-cpp/security//security-exception.hpp>
Jeff Thompsonc0573432013-09-19 17:41:36 -070013#include "../../c/util/crypto.h"
Jeff Thompson07996712013-10-17 17:31:40 -070014#include "../../encoding/der/der.hpp"
Jeff Thompson25b4e612013-10-10 16:03:24 -070015#include <ndn-cpp/security/certificate/public-key.hpp>
Jeff Thompsonc0573432013-09-19 17:41:36 -070016
17using namespace std;
18using namespace ndn::ptr_lib;
19
20namespace ndn {
21
Jeff Thompson07996712013-10-17 17:31:40 -070022shared_ptr<der::DerNode>
23PublicKey::toDer()
Jeff Thompsonc0573432013-09-19 17:41:36 -070024{
Jeff Thompson07996712013-10-17 17:31:40 -070025 ndnboost::iostreams::stream<ndnboost::iostreams::array_source> is((const char*)keyDer_.buf (), keyDer_.size ());
Jeff Thompsonc0573432013-09-19 17:41:36 -070026
Jeff Thompson07996712013-10-17 17:31:40 -070027 return der::DerNode::parse(reinterpret_cast<der::InputIterator&> (is));
Jeff Thompsonc0573432013-09-19 17:41:36 -070028}
Jeff Thompsonc0573432013-09-19 17:41:36 -070029
30static int RSA_OID[] = { 1, 2, 840, 113549, 1, 1, 1 };
31
32shared_ptr<PublicKey>
33PublicKey::fromDer(const Blob& keyDer)
34{
35 // Use a temporary pointer since d2i updates it.
Jeff Thompson10ad12a2013-09-24 16:19:11 -070036 const uint8_t *derPointer = keyDer.buf();
Jeff Thompsonc0573432013-09-19 17:41:36 -070037 RSA *publicKey = d2i_RSA_PUBKEY(NULL, &derPointer, keyDer.size());
38 if (!publicKey)
39 throw UnrecognizedKeyFormatException("Error decoding public key DER");
40 RSA_free(publicKey);
41
42 return shared_ptr<PublicKey>(new PublicKey(OID(vector<int>(RSA_OID, RSA_OID + sizeof(RSA_OID))), keyDer));
43}
44
45Blob
46PublicKey::getDigest(DigestAlgorithm digestAlgorithm) const
47{
48 if (digestAlgorithm == DIGEST_ALGORITHM_SHA256) {
Jeff Thompson10ad12a2013-09-24 16:19:11 -070049 uint8_t digest[SHA256_DIGEST_LENGTH];
Jeff Thompsonc0573432013-09-19 17:41:36 -070050 ndn_digestSha256(keyDer_.buf(), keyDer_.size(), digest);
51
52 return Blob(digest, sizeof(digest));
53 }
54 else
55 throw UnrecognizedDigestAlgorithmException("Wrong format!");
56}
57
58}