blob: 41103f1d840060ef2ea0551152c17ff5b6425c2a [file] [log] [blame]
NingSun0c89b3c2018-02-08 08:34:03 -08001/*
2 * Copyright (c) 2010 SURFnet bv
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
20 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
22 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
23 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
24 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27/*****************************************************************************
28 DHPrivateKey.cpp
29
30 Diffie-Hellman private key class
31 *****************************************************************************/
32
33#include "config.h"
34#include "log.h"
35#include "DHPrivateKey.h"
36#include <string.h>
37
38// Set the type
39/*static*/ const char* DHPrivateKey::type = "Abstract DH private key";
40
41// Check if the key is of the given type
42bool DHPrivateKey::isOfType(const char* inType)
43{
44 return !strcmp(type, inType);
45}
46
47// Get the bit length
48unsigned long DHPrivateKey::getBitLength() const
49{
50 return getP().bits();
51}
52
53// Get the output length
54unsigned long DHPrivateKey::getOutputLength() const
55{
56 return getP().size();
57}
58
59// Setters for the DH private key components
60void DHPrivateKey::setX(const ByteString& inX)
61{
62 x = inX;
63}
64
65// Setters for the DH public key components
66void DHPrivateKey::setP(const ByteString& inP)
67{
68 p = inP;
69}
70
71void DHPrivateKey::setG(const ByteString& inG)
72{
73 g = inG;
74}
75
76// Getters for the DH private key components
77const ByteString& DHPrivateKey::getX() const
78{
79 return x;
80}
81
82// Getters for the DH public key components
83const ByteString& DHPrivateKey::getP() const
84{
85 return p;
86}
87
88const ByteString& DHPrivateKey::getG() const
89{
90 return g;
91}
92
93// Serialisation
94ByteString DHPrivateKey::serialise() const
95{
96 return p.serialise() +
97 g.serialise() +
98 x.serialise();
99}
100
101bool DHPrivateKey::deserialise(ByteString& serialised)
102{
103 ByteString dP = ByteString::chainDeserialise(serialised);
104 ByteString dG = ByteString::chainDeserialise(serialised);
105 ByteString dX = ByteString::chainDeserialise(serialised);
106
107 if ((dP.size() == 0) ||
108 (dG.size() == 0) ||
109 (dX.size() == 0))
110 {
111 return false;
112 }
113
114 setP(dP);
115 setG(dG);
116 setX(dX);
117
118 return true;
119}
120