Class: OpenSSL::PKey::DSA

Inherits:
PKey
  • Object
show all
Defined in:
ossl_pkey_dsa.c

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from PKey

#sign, #verify

Constructor Details

#initialize(*args) ⇒ Object



116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# File 'ossl_pkey_dsa.c', line 116

static VALUE
ossl_dsa_initialize(int argc, VALUE *argv, VALUE self)
{
    EVP_PKEY *pkey;
    DSA *dsa;
    BIO *in;
    char *passwd = NULL;
    VALUE arg, pass;
  
    GetPKey(self, pkey);
    if(rb_scan_args(argc, argv, "02", &arg, &pass) == 0) {
        dsa = DSA_new();
    }
    else if (FIXNUM_P(arg)) {
  if (!(dsa = dsa_generate(FIX2INT(arg)))) {
      ossl_raise(eDSAError, NULL);
  }
    }
    else {
  if (!NIL_P(pass)) passwd = StringValuePtr(pass);
  arg = ossl_to_der_if_possible(arg);
  in = ossl_obj2bio(arg);
  dsa = PEM_read_bio_DSAPrivateKey(in, NULL, ossl_pem_passwd_cb, passwd);
  if (!dsa) {
      BIO_reset(in);
      dsa = PEM_read_bio_DSAPublicKey(in, NULL, NULL, NULL);
  }
  if (!dsa) {
      BIO_reset(in);
      dsa = PEM_read_bio_DSA_PUBKEY(in, NULL, NULL, NULL);
  }
  if (!dsa) {
      BIO_reset(in);
      dsa = d2i_DSAPrivateKey_bio(in, NULL);
  }
  if (!dsa) {
      BIO_reset(in);
      dsa = d2i_DSA_PUBKEY_bio(in, NULL);
  }
  BIO_free(in);
  if (!dsa) ossl_raise(eDSAError, "Neither PUB key nor PRIV key:");
    }
    if (!EVP_PKEY_assign_DSA(pkey, dsa)) {
  DSA_free(dsa);
  ossl_raise(eDSAError, NULL);
    }

    return self;
}

Class Method Details

.generate(size) ⇒ Object



102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'ossl_pkey_dsa.c', line 102

static VALUE
ossl_dsa_s_generate(VALUE klass, VALUE size)
{
    DSA *dsa = dsa_generate(FIX2INT(size)); /* err handled by dsa_instance */
    VALUE obj = dsa_instance(klass, dsa);

    if (obj == Qfalse) {
  DSA_free(dsa);
  ossl_raise(eDSAError, NULL);
    }

    return obj;
}

Instance Method Details

#export(*args) ⇒ Object Also known as: to_pem, to_s



190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
# File 'ossl_pkey_dsa.c', line 190

static VALUE
ossl_dsa_export(int argc, VALUE *argv, VALUE self)
{
    EVP_PKEY *pkey;
    BIO *out;
    const EVP_CIPHER *ciph = NULL;
    char *passwd = NULL;
    VALUE cipher, pass, str;

    GetPKeyDSA(self, pkey);
    rb_scan_args(argc, argv, "02", &cipher, &pass);
    if (!NIL_P(cipher)) {
  ciph = GetCipherPtr(cipher);
  if (!NIL_P(pass)) {
      passwd = StringValuePtr(pass);
  }
    }
    if (!(out = BIO_new(BIO_s_mem()))) {
  ossl_raise(eDSAError, NULL);
    }
    if (DSA_HAS_PRIVATE(pkey->pkey.dsa)) {
  if (!PEM_write_bio_DSAPrivateKey(out, pkey->pkey.dsa, ciph,
           NULL, 0, ossl_pem_passwd_cb, passwd)){
      BIO_free(out);
      ossl_raise(eDSAError, NULL);
  }
    } else {
  if (!PEM_write_bio_DSAPublicKey(out, pkey->pkey.dsa)) {
      BIO_free(out);
      ossl_raise(eDSAError, NULL);
  }
    }
    str = ossl_membio2str(out);

    return str;
}

#paramsObject

Stores all parameters of key to the hash INSECURE: PRIVATE INFORMATIONS CAN LEAK OUT!!! Don’t use :-)) (I’s up to you)



257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
# File 'ossl_pkey_dsa.c', line 257

static VALUE
ossl_dsa_get_params(VALUE self)
{
    EVP_PKEY *pkey;
    VALUE hash;

    GetPKeyDSA(self, pkey);

    hash = rb_hash_new();

    rb_hash_aset(hash, rb_str_new2("p"), ossl_bn_new(pkey->pkey.dsa->p));
    rb_hash_aset(hash, rb_str_new2("q"), ossl_bn_new(pkey->pkey.dsa->q));
    rb_hash_aset(hash, rb_str_new2("g"), ossl_bn_new(pkey->pkey.dsa->g));
    rb_hash_aset(hash, rb_str_new2("pub_key"), ossl_bn_new(pkey->pkey.dsa->pub_key));
    rb_hash_aset(hash, rb_str_new2("priv_key"), ossl_bn_new(pkey->pkey.dsa->priv_key));
    
    return hash;
}

#private?Boolean



180
181
182
183
184
185
186
187
188
# File 'ossl_pkey_dsa.c', line 180

static VALUE
ossl_dsa_is_private(VALUE self)
{
    EVP_PKEY *pkey;
  
    GetPKeyDSA(self, pkey);
  
    return (DSA_PRIVATE(self, pkey->pkey.dsa)) ? Qtrue : Qfalse;
}

#public?Boolean



166
167
168
169
170
171
172
173
174
175
176
177
178
# File 'ossl_pkey_dsa.c', line 166

static VALUE
ossl_dsa_is_public(VALUE self)
{
    EVP_PKEY *pkey;

    GetPKeyDSA(self, pkey);

    /*
     * Do we need to check dsap->dsa->public_pkey?
     * return Qtrue;
     */
    return (pkey->pkey.dsa->pub_key) ? Qtrue : Qfalse;
}

#public_keyObject

Makes new instance DSA PUBLIC_KEY from PRIVATE_KEY



304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
# File 'ossl_pkey_dsa.c', line 304

static VALUE
ossl_dsa_to_public_key(VALUE self)
{
    EVP_PKEY *pkey;
    DSA *dsa;
    VALUE obj;
  
    GetPKeyDSA(self, pkey);
    /* err check performed by dsa_instance */
    dsa = DSAPublicKey_dup(pkey->pkey.dsa);
    obj = dsa_instance(CLASS_OF(self), dsa);
    if (obj == Qfalse) {
  DSA_free(dsa);
  ossl_raise(eDSAError, NULL);
    }
    return obj;
}

#syssign(data) ⇒ Object



324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
# File 'ossl_pkey_dsa.c', line 324

static VALUE
ossl_dsa_sign(VALUE self, VALUE data)
{
    EVP_PKEY *pkey;
    int buf_len;
    VALUE str;

    GetPKeyDSA(self, pkey);
    StringValue(data);
    if (!DSA_PRIVATE(self, pkey->pkey.dsa)) {
  ossl_raise(eDSAError, "Private DSA key needed!");
    }
    str = rb_str_new(0, ossl_dsa_buf_size(pkey));
    if (!DSA_sign(0, RSTRING(data)->ptr, RSTRING(data)->len, RSTRING(str)->ptr,
      &buf_len, pkey->pkey.dsa)) { /* type is ignored (0) */
  ossl_raise(eDSAError, NULL);
    }
    RSTRING(str)->len = buf_len;
    RSTRING(str)->ptr[buf_len] = 0;

    return str;
}

#sysverify(digest, sig) ⇒ Object



347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
# File 'ossl_pkey_dsa.c', line 347

static VALUE
ossl_dsa_verify(VALUE self, VALUE digest, VALUE sig)
{
    EVP_PKEY *pkey;
    int ret;

    GetPKeyDSA(self, pkey);
    StringValue(digest);
    StringValue(sig);
    /* type is ignored (0) */
    ret = DSA_verify(0, RSTRING(digest)->ptr, RSTRING(digest)->len,
         RSTRING(sig)->ptr, RSTRING(sig)->len, pkey->pkey.dsa);
    if (ret < 0) {
  ossl_raise(eDSAError, NULL);
    }
    else if (ret == 1) {
  return Qtrue;
    }

    return Qfalse;
}

#to_derObject



227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
# File 'ossl_pkey_dsa.c', line 227

static VALUE
ossl_dsa_to_der(VALUE self)
{
    EVP_PKEY *pkey;
    int (*i2d_func)_((DSA*, unsigned char**));
    unsigned char *p;
    long len;
    VALUE str;

    GetPKeyDSA(self, pkey);
    if(DSA_HAS_PRIVATE(pkey->pkey.dsa))
  i2d_func = (int(*)_((DSA*,unsigned char**)))i2d_DSAPrivateKey;
    else
  i2d_func = i2d_DSA_PUBKEY;
    if((len = i2d_func(pkey->pkey.dsa, NULL)) <= 0)
  ossl_raise(eDSAError, NULL);
    str = rb_str_new(0, len);
    p = RSTRING(str)->ptr;
    if(i2d_func(pkey->pkey.dsa, &p) < 0)
  ossl_raise(eDSAError, NULL);
    ossl_str_adjust(str, p);

    return str;
}

#to_textObject

Prints all parameters of key to buffer INSECURE: PRIVATE INFORMATIONS CAN LEAK OUT!!! Don’t use :-)) (I’s up to you)



281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
# File 'ossl_pkey_dsa.c', line 281

static VALUE
ossl_dsa_to_text(VALUE self)
{
    EVP_PKEY *pkey;
    BIO *out;
    VALUE str;

    GetPKeyDSA(self, pkey);
    if (!(out = BIO_new(BIO_s_mem()))) {
  ossl_raise(eDSAError, NULL);
    }
    if (!DSA_print(out, pkey->pkey.dsa, 0)) { /* offset = 0 */
  BIO_free(out);
  ossl_raise(eDSAError, NULL);
    }
    str = ossl_membio2str(out);

    return str;
}