summaryrefslogtreecommitdiffstats
path: root/rsawrapr.c
blob: 5ac4f39410970487fa26b4196ade0af2a64476ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
/*
 * PKCS#1 encoding and decoding functions.
 * This file is believed to contain no code licensed from other parties.
 *
 * ***** BEGIN LICENSE BLOCK *****
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
 *
 * The contents of this file are subject to the Mozilla Public License Version
 * 1.1 (the "License"); you may not use this file except in compliance with
 * the License. You may obtain a copy of the License at
 * http://www.mozilla.org/MPL/
 *
 * Software distributed under the License is distributed on an "AS IS" basis,
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
 * for the specific language governing rights and limitations under the
 * License.
 *
 * The Original Code is the Netscape security libraries.
 *
 * The Initial Developer of the Original Code is
 * Netscape Communications Corporation.
 * Portions created by the Initial Developer are Copyright (C) 1994-2000
 * the Initial Developer. All Rights Reserved.
 *
 * Contributor(s):
 *   Rob Crittenden (rcritten@redhat.com)
 *
 * Alternatively, the contents of this file may be used under the terms of
 * either the GNU General Public License Version 2 or later (the "GPL"), or
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
 * in which case the provisions of the GPL or the LGPL are applicable instead
 * of those above. If you wish to allow use of your version of this file only
 * under the terms of either the GPL or the LGPL, and not to allow others to
 * use your version of this file under the terms of the MPL, indicate your
 * decision by deleting the provisions above and replace them with the notice
 * and other provisions required by the GPL or the LGPL. If you do not delete
 * the provisions above, a recipient may use your version of this file under
 * the terms of any one of the MPL, the GPL or the LGPL.
 *
 * ***** END LICENSE BLOCK ***** */
/* $Id: $ */

#include "ckpem.h"
#include "blapi.h"
#include "softoken.h"
#include "sechash.h"
#include "base.h"

#include "secerr.h"

#define RSA_BLOCK_MIN_PAD_LEN		8
#define RSA_BLOCK_FIRST_OCTET		0x00
#define RSA_BLOCK_PRIVATE0_PAD_OCTET	0x00
#define RSA_BLOCK_PRIVATE_PAD_OCTET	0xff
#define RSA_BLOCK_AFTER_PAD_OCTET	0x00

#define OAEP_SALT_LEN		8
#define OAEP_PAD_LEN		8
#define OAEP_PAD_OCTET		0x00

#define FLAT_BUFSIZE 512        /* bytes to hold flattened SHA1Context. */

unsigned
pem_PublicModulusLen(NSSLOWKEYPublicKey *pubk)
{
    unsigned char b0;

    /* interpret modulus length as key strength... in
     * fortezza that's the public key length */

    switch (pubk->keyType) {
    case pemLOWKEYRSAKey:
        b0 = pubk->u.rsa.modulus.data[0];
        return b0 ? pubk->u.rsa.modulus.len : pubk->u.rsa.modulus.len - 1;
    default:
        break;
    }
    return 0;
}

static SHA1Context *SHA1_CloneContext(SHA1Context * original)
{
    SHA1Context *clone = NULL;
    unsigned char *pBuf;
    int sha1ContextSize = SHA1_FlattenSize(original);
    SECStatus frv;
    unsigned char buf[FLAT_BUFSIZE];

    PORT_Assert(sizeof buf >= sha1ContextSize);
    if (sizeof buf >= sha1ContextSize) {
        pBuf = buf;
    } else {
        pBuf = nss_ZAlloc(NULL, sha1ContextSize);
        if (!pBuf)
            goto done;
    }

    frv = SHA1_Flatten(original, pBuf);
    if (frv == SECSuccess) {
        clone = SHA1_Resurrect(pBuf, NULL);
        memset(pBuf, 0, sha1ContextSize);
    }
  done:
    if (pBuf != buf)
        nss_ZFreeIf(pBuf);
    return clone;
}

/*
 * Modify data by XORing it with a special hash of salt.
 */
static SECStatus
oaep_xor_with_h1(unsigned char *data, unsigned int datalen,
                 unsigned char *salt, unsigned int saltlen)
{
    SHA1Context *sha1cx;
    unsigned char *dp, *dataend;
    unsigned char end_octet;

    sha1cx = SHA1_NewContext();
    if (sha1cx == NULL) {
        return SECFailure;
    }

    /*
     * Get a hash of salt started; we will use it several times,
     * adding in a different end octet (x00, x01, x02, ...).
     */
    SHA1_Begin(sha1cx);
    SHA1_Update(sha1cx, salt, saltlen);
    end_octet = 0;

    dp = data;
    dataend = data + datalen;

    while (dp < dataend) {
        SHA1Context *sha1cx_h1;
        unsigned int sha1len, sha1off;
        unsigned char sha1[SHA1_LENGTH];

        /*
         * Create hash of (salt || end_octet)
         */
        sha1cx_h1 = SHA1_CloneContext(sha1cx);
        SHA1_Update(sha1cx_h1, &end_octet, 1);
        SHA1_End(sha1cx_h1, sha1, &sha1len, sizeof(sha1));
        SHA1_DestroyContext(sha1cx_h1, PR_TRUE);
        PORT_Assert(sha1len == SHA1_LENGTH);

        /*
         * XOR that hash with the data.
         * When we have fewer than SHA1_LENGTH octets of data
         * left to xor, use just the low-order ones of the hash.
         */
        sha1off = 0;
        if ((dataend - dp) < SHA1_LENGTH)
            sha1off = SHA1_LENGTH - (dataend - dp);
        while (sha1off < SHA1_LENGTH)
            *dp++ ^= sha1[sha1off++];

        /*
         * Bump for next hash chunk.
         */
        end_octet++;
    }

    SHA1_DestroyContext(sha1cx, PR_TRUE);
    return SECSuccess;
}

/*
 * Modify salt by XORing it with a special hash of data.
 */
static SECStatus
oaep_xor_with_h2(unsigned char *salt, unsigned int saltlen,
                 unsigned char *data, unsigned int datalen)
{
    unsigned char sha1[SHA1_LENGTH];
    unsigned char *psalt, *psha1, *saltend;
    SECStatus rv;

    /*
     * Create a hash of data.
     */
    rv = SHA1_HashBuf(sha1, data, datalen);
    if (rv != SECSuccess) {
        return rv;
    }

    /*
     * XOR the low-order octets of that hash with salt.
     */
    PORT_Assert(saltlen <= SHA1_LENGTH);
    saltend = salt + saltlen;
    psalt = salt;
    psha1 = sha1 + SHA1_LENGTH - saltlen;
    while (psalt < saltend) {
        *psalt++ ^= *psha1++;
    }

    return SECSuccess;
}

/*
 * Format one block of data for public/private key encryption using
 * the rules defined in PKCS #1.
 */
static unsigned char *rsa_FormatOneBlock(unsigned modulusLen,
                                         RSA_BlockType blockType,
                                         SECItem * data)
{
    unsigned char *block;
    unsigned char *bp;
    int padLen;
    int i;
    SECStatus rv;

    block = (unsigned char *) nss_ZAlloc(NULL, modulusLen);
    if (block == NULL)
        return NULL;

    bp = block;

    /*
     * All RSA blocks start with two octets:
     *  0x00 || BlockType
     */
    *bp++ = RSA_BLOCK_FIRST_OCTET;
    *bp++ = (unsigned char) blockType;

    switch (blockType) {

        /*
         * Blocks intended for private-key operation.
         */
    case RSA_BlockPrivate0:    /* essentially unused */
    case RSA_BlockPrivate:     /* preferred method */
        /*
         * 0x00 || BT || Pad || 0x00 || ActualData
         *   1      1   padLen    1      data->len
         * Pad is either all 0x00 or all 0xff bytes, depending on blockType.
         */
        padLen = modulusLen - data->len - 3;
        PORT_Assert(padLen >= RSA_BLOCK_MIN_PAD_LEN);
        if (padLen < RSA_BLOCK_MIN_PAD_LEN) {
            nss_ZFreeIf(block);
            return NULL;
        }
        nsslibc_memset(bp,
                       blockType == RSA_BlockPrivate0
                       ? RSA_BLOCK_PRIVATE0_PAD_OCTET
                       : RSA_BLOCK_PRIVATE_PAD_OCTET, padLen);
        bp += padLen;
        *bp++ = RSA_BLOCK_AFTER_PAD_OCTET;
        nsslibc_memcpy(bp, data->data, data->len);
        break;

        /*
         * Blocks intended for public-key operation.
         */
    case RSA_BlockPublic:

        /*
         * 0x00 || BT || Pad || 0x00 || ActualData
         *   1      1   padLen    1      data->len
         * Pad is all non-zero random bytes.
         */
        padLen = modulusLen - data->len - 3;
        PORT_Assert(padLen >= RSA_BLOCK_MIN_PAD_LEN);
        if (padLen < RSA_BLOCK_MIN_PAD_LEN) {
            nss_ZFreeIf(block);
            return NULL;
        }
        for (i = 0; i < padLen; i++) {
            /* Pad with non-zero random data. */
            do {
                rv = RNG_GenerateGlobalRandomBytes(bp + i, 1);
            } while (rv == SECSuccess
                     && bp[i] == RSA_BLOCK_AFTER_PAD_OCTET);
            if (rv != SECSuccess) {
                nss_ZFreeIf(block);
                return NULL;
            }
        }
        bp += padLen;
        *bp++ = RSA_BLOCK_AFTER_PAD_OCTET;
        nsslibc_memcpy(bp, data->data, data->len);

        break;

        /*
         * Blocks intended for public-key operation, using
         * Optimal Asymmetric Encryption Padding (OAEP).
         */
    case RSA_BlockOAEP:
        /*
         * 0x00 || BT || Modified2(Salt) || Modified1(PaddedData)
         *   1      1     OAEP_SALT_LEN     OAEP_PAD_LEN + data->len [+ N]
         *
         * where:
         *   PaddedData is "Pad1 || ActualData [|| Pad2]"
         *   Salt is random data.
         *   Pad1 is all zeros.
         *   Pad2, if present, is random data.
         *   (The "modified" fields are all the same length as the original
         * unmodified values; they are just xor'd with other values.)
         *
         *   Modified1 is an XOR of PaddedData with a special octet
         * string constructed of iterated hashing of Salt (see below).
         *   Modified2 is an XOR of Salt with the low-order octets of
         * the hash of Modified1 (see farther below ;-).
         *
         * Whew!
         */


        /*
         * Salt
         */
        rv = RNG_GenerateGlobalRandomBytes(bp, OAEP_SALT_LEN);
        if (rv != SECSuccess) {
            nss_ZFreeIf(block);
            return NULL;
        }
        bp += OAEP_SALT_LEN;

        /*
         * Pad1
         */
        nsslibc_memset(bp, OAEP_PAD_OCTET, OAEP_PAD_LEN);
        bp += OAEP_PAD_LEN;

        /*
         * Data
         */
        nsslibc_memcpy(bp, data->data, data->len);
        bp += data->len;

        /*
         * Pad2
         */
        if (bp < (block + modulusLen)) {
            rv = RNG_GenerateGlobalRandomBytes(bp,
                                               block - bp + modulusLen);
            if (rv != SECSuccess) {
                nss_ZFreeIf(block);
                return NULL;
            }
        }

        /*
         * Now we have the following:
         * 0x00 || BT || Salt || PaddedData
         * (From this point on, "Pad1 || Data [|| Pad2]" is treated
         * as the one entity PaddedData.)
         *
         * We need to turn PaddedData into Modified1.
         */
        if (oaep_xor_with_h1(block + 2 + OAEP_SALT_LEN,
                             modulusLen - 2 - OAEP_SALT_LEN,
                             block + 2, OAEP_SALT_LEN) != SECSuccess) {
            nss_ZFreeIf(block);
            return NULL;
        }

        /*
         * Now we have:
         * 0x00 || BT || Salt || Modified1(PaddedData)
         *
         * The remaining task is to turn Salt into Modified2.
         */
        if (oaep_xor_with_h2(block + 2, OAEP_SALT_LEN,
                             block + 2 + OAEP_SALT_LEN,
                             modulusLen - 2 - OAEP_SALT_LEN) !=
            SECSuccess) {
            nss_ZFreeIf(block);
            return NULL;
        }

        break;

    default:
        PORT_Assert(0);
        nss_ZFreeIf(block);
        return NULL;
    }

    return block;
}

static SECStatus
rsa_FormatBlock(SECItem * result, unsigned modulusLen,
                RSA_BlockType blockType, SECItem * data)
{
    /*
     * XXX For now assume that the data length fits in a single
     * XXX encryption block; the ASSERTs below force this.
     * XXX To fix it, each case will have to loop over chunks whose
     * XXX lengths satisfy the assertions, until all data is handled.
     * XXX (Unless RSA has more to say about how to handle data
     * XXX which does not fit in a single encryption block?)
     * XXX And I do not know what the result is supposed to be,
     * XXX so the interface to this function may need to change
     * XXX to allow for returning multiple blocks, if they are
     * XXX not wanted simply concatenated one after the other.
     */

    switch (blockType) {
    case RSA_BlockPrivate0:
    case RSA_BlockPrivate:
    case RSA_BlockPublic:
        /*
         * 0x00 || BT || Pad || 0x00 || ActualData
         *
         * The "3" below is the first octet + the second octet + the 0x00
         * octet that always comes just before the ActualData.
         */
        PORT_Assert(data->len <=
                    (modulusLen - (3 + RSA_BLOCK_MIN_PAD_LEN)));

        result->data = rsa_FormatOneBlock(modulusLen, blockType, data);
        if (result->data == NULL) {
            result->len = 0;
            return SECFailure;
        }
        result->len = modulusLen;

        break;

    case RSA_BlockOAEP:
        /*
         * 0x00 || BT || M1(Salt) || M2(Pad1||ActualData[||Pad2])
         *
         * The "2" below is the first octet + the second octet.
         * (The other fields do not contain the clear values, but are
         * the same length as the clear values.)
         */
        PORT_Assert(data->len <= (modulusLen - (2 + OAEP_SALT_LEN
                                                + OAEP_PAD_LEN)));

        result->data = rsa_FormatOneBlock(modulusLen, blockType, data);
        if (result->data == NULL) {
            result->len = 0;
            return SECFailure;
        }
        result->len = modulusLen;

        break;

    case RSA_BlockRaw:
        /*
         * Pad || ActualData
         * Pad is zeros. The application is responsible for recovering
         * the actual data.
         */
        if (data->len > modulusLen) {
            return SECFailure;
        }
        result->data = (unsigned char *) nss_ZAlloc(NULL, modulusLen);
        result->len = modulusLen;
        nsslibc_memcpy(result->data + (modulusLen - data->len), data->data,
                    data->len);
        break;

    default:
        PORT_Assert(0);
        result->data = NULL;
        result->len = 0;
        return SECFailure;
    }

    return SECSuccess;
}

/* XXX Doesn't set error code */
SECStatus
pem_RSA_Sign(pemLOWKEYPrivateKey * key,
             unsigned char *output,
             unsigned int *output_len,
             unsigned int maxOutputLen,
             unsigned char *input, unsigned int input_len)
{
    SECStatus rv = SECSuccess;
    unsigned int modulus_len = pem_PrivateModulusLen(key);
    SECItem formatted;
    SECItem unformatted;

    if (maxOutputLen < modulus_len)
        return SECFailure;
    PORT_Assert(key->keyType == pemLOWKEYRSAKey);
    if (key->keyType != pemLOWKEYRSAKey)
        return SECFailure;

    unformatted.len = input_len;
    unformatted.data = input;
    formatted.data = NULL;
    rv = rsa_FormatBlock(&formatted, modulus_len, RSA_BlockPrivate,
                         &unformatted);
    if (rv != SECSuccess)
        goto done;

    rv = RSA_PrivateKeyOpDoubleChecked(&key->u.rsa, output,
                                       formatted.data);
    *output_len = modulus_len;

    goto done;

  done:
    if (formatted.data != NULL)
        nss_ZFreeIf(formatted.data);
    return rv;
}

#if 0
/* XXX Doesn't set error code */
SECStatus
RSA_CheckSign(NSSLOWKEYPublicKey * key,
              unsigned char *sign,
              unsigned int sign_len,
              unsigned char *hash, unsigned int hash_len)
{
    SECStatus rv;
    unsigned int modulus_len = pem_PublicModulusLen(key);
    unsigned int i;
    unsigned char *buffer;

    modulus_len = pem_PublicModulusLen(key);
    if (sign_len != modulus_len)
        goto failure;
    /*
     * 0x00 || BT || Pad || 0x00 || ActualData
     *
     * The "3" below is the first octet + the second octet + the 0x00
     * octet that always comes just before the ActualData.
     */
    if (hash_len > modulus_len - (3 + RSA_BLOCK_MIN_PAD_LEN))
        goto failure;
    PORT_Assert(key->keyType == pemLOWKEYRSAKey);
    if (key->keyType != pemLOWKEYRSAKey)
        goto failure;

    buffer = (unsigned char *) nss_ZAlloc(NULL, modulus_len + 1);
    if (!buffer)
        goto failure;

    rv = RSA_PublicKeyOp(&key->u.rsa, buffer, sign);
    if (rv != SECSuccess)
        goto loser;

    /*
     * check the padding that was used
     */
    if (buffer[0] != 0 || buffer[1] != 1)
        goto loser;
    for (i = 2; i < modulus_len - hash_len - 1; i++) {
        if (buffer[i] != 0xff)
            goto loser;
    }
    if (buffer[i] != 0)
        goto loser;

    /*
     * make sure we get the same results
     */
    if (memcmp(buffer + modulus_len - hash_len, hash, hash_len) != 0)
        goto loser;

    nss_ZFreeIf(buffer);
    return SECSuccess;

  loser:
    nss_ZFreeIf(buffer);
  failure:
    return SECFailure;
}

/* XXX Doesn't set error code */
SECStatus
RSA_CheckSignRecover(NSSLOWKEYPublicKey * key,
                     unsigned char *data,
                     unsigned int *data_len,
                     unsigned int max_output_len,
                     unsigned char *sign, unsigned int sign_len)
{
    SECStatus rv;
    unsigned int modulus_len = pem_PublicModulusLen(key);
    unsigned int i;
    unsigned char *buffer;

    if (sign_len != modulus_len)
        goto failure;
    PORT_Assert(key->keyType == pemLOWKEYRSAKey);
    if (key->keyType != pemLOWKEYRSAKey)
        goto failure;

    buffer = (unsigned char *) nss_ZAlloc(NULL, modulus_len + 1);
    if (!buffer)
        goto failure;

    rv = RSA_PublicKeyOp(&key->u.rsa, buffer, sign);
    if (rv != SECSuccess)
        goto loser;
    *data_len = 0;

    /*
     * check the padding that was used
     */
    if (buffer[0] != 0 || buffer[1] != 1)
        goto loser;
    for (i = 2; i < modulus_len; i++) {
        if (buffer[i] == 0) {
            *data_len = modulus_len - i - 1;
            break;
        }
        if (buffer[i] != 0xff)
            goto loser;
    }
    if (*data_len == 0)
        goto loser;
    if (*data_len > max_output_len)
        goto loser;

    /*
     * make sure we get the same results
     */
    nsslibc_memcpy(data, buffer + modulus_len - *data_len, *data_len);

    nss_ZFreeIf(buffer);
    return SECSuccess;

  loser:
    nss_ZFreeIf(buffer);
  failure:
    return SECFailure;
}

/* XXX Doesn't set error code */
SECStatus
RSA_EncryptBlock(NSSLOWKEYPublicKey * key,
                 unsigned char *output,
                 unsigned int *output_len,
                 unsigned int max_output_len,
                 unsigned char *input, unsigned int input_len)
{
    SECStatus rv;
    unsigned int modulus_len = pem_PublicModulusLen(key);
    SECItem formatted;
    SECItem unformatted;

    formatted.data = NULL;
    if (max_output_len < modulus_len)
        goto failure;
    PORT_Assert(key->keyType == pemLOWKEYRSAKey);
    if (key->keyType != pemLOWKEYRSAKey)
        goto failure;

    unformatted.len = input_len;
    unformatted.data = input;
    formatted.data = NULL;
    rv = rsa_FormatBlock(&formatted, modulus_len, RSA_BlockPublic,
                         &unformatted);
    if (rv != SECSuccess)
        goto failure;

    rv = RSA_PublicKeyOp(&key->u.rsa, output, formatted.data);
    if (rv != SECSuccess)
        goto failure;

    nss_ZFreeIf(formatted.data);
    *output_len = modulus_len;
    return SECSuccess;

  failure:
    if (formatted.data != NULL)
        nss_ZFreeIf(formatted.data);
    return SECFailure;
}
#endif

/* XXX Doesn't set error code */
SECStatus
pem_RSA_DecryptBlock(pemLOWKEYPrivateKey * key,
                     unsigned char *output,
                     unsigned int *output_len,
                     unsigned int max_output_len,
                     unsigned char *input, unsigned int input_len)
{
    SECStatus rv;
    unsigned int modulus_len = pem_PrivateModulusLen(key);
    unsigned int i;
    unsigned char *buffer;

    PORT_Assert(key->keyType == pemLOWKEYRSAKey);
    if (key->keyType != pemLOWKEYRSAKey)
        goto failure;
    if (input_len != modulus_len)
        goto failure;

    buffer = (unsigned char *) nss_ZAlloc(NULL, modulus_len + 1);
    if (!buffer)
        goto failure;

    rv = RSA_PrivateKeyOp(&key->u.rsa, buffer, input);
    if (rv != SECSuccess) {
        goto loser;
    }

    if (buffer[0] != 0 || buffer[1] != 2)
        goto loser;
    *output_len = 0;
    for (i = 2; i < modulus_len; i++) {
        if (buffer[i] == 0) {
            *output_len = modulus_len - i - 1;
            break;
        }
    }
    if (*output_len == 0)
        goto loser;
    if (*output_len > max_output_len)
        goto loser;

    nsslibc_memcpy(output, buffer + modulus_len - *output_len, *output_len);

    nss_ZFreeIf(buffer);
    return SECSuccess;

  loser:
    nss_ZFreeIf(buffer);
  failure:
    return SECFailure;
}

#if 0
/* XXX Doesn't set error code */
/*
 * added to make pkcs #11 happy
 *   RAW is RSA_X_509
 */
SECStatus
pem_RSA_SignRaw(pemLOWKEYPrivateKey * key,
                unsigned char *output,
                unsigned int *output_len,
                unsigned int maxOutputLen,
                unsigned char *input, unsigned int input_len)
{
    SECStatus rv = SECSuccess;
    unsigned int modulus_len = pem_PrivateModulusLen(key);
    SECItem formatted;
    SECItem unformatted;

    if (maxOutputLen < modulus_len)
        return SECFailure;
    PORT_Assert(key->keyType == pemLOWKEYRSAKey);
    if (key->keyType != pemLOWKEYRSAKey)
        return SECFailure;

    unformatted.len = input_len;
    unformatted.data = input;
    formatted.data = NULL;
    rv = rsa_FormatBlock(&formatted, modulus_len, RSA_BlockRaw,
                         &unformatted);
    if (rv != SECSuccess)
        goto done;

    rv = RSA_PrivateKeyOpDoubleChecked(&key->u.rsa, output,
                                       formatted.data);
    *output_len = modulus_len;

  done:
    if (formatted.data != NULL)
        nss_ZFreeIf(formatted.data);
    return rv;
}

/* XXX Doesn't set error code */
SECStatus
RSA_CheckSignRaw(NSSLOWKEYPublicKey * key,
                 unsigned char *sign,
                 unsigned int sign_len,
                 unsigned char *hash, unsigned int hash_len)
{
    SECStatus rv;
    unsigned int modulus_len = pem_PublicModulusLen(key);
    unsigned char *buffer;

    if (sign_len != modulus_len)
        goto failure;
    if (hash_len > modulus_len)
        goto failure;
    PORT_Assert(key->keyType == pemLOWKEYRSAKey);
    if (key->keyType != pemLOWKEYRSAKey)
        goto failure;

    buffer = (unsigned char *) nss_ZAlloc(NULL, modulus_len + 1);
    if (!buffer)
        goto failure;

    rv = RSA_PublicKeyOp(&key->u.rsa, buffer, sign);
    if (rv != SECSuccess)
        goto loser;

    /*
     * make sure we get the same results
     */
    /* NOTE: should we verify the leading zeros? */
    if (memcmp(buffer + (modulus_len - hash_len), hash, hash_len) !=
        0)
        goto loser;

    nss_ZFreeIf(buffer);
    return SECSuccess;

  loser:
    nss_ZFreeIf(buffer);
  failure:
    return SECFailure;
}

/* XXX Doesn't set error code */
SECStatus
RSA_CheckSignRecoverRaw(NSSLOWKEYPublicKey * key,
                        unsigned char *data,
                        unsigned int *data_len,
                        unsigned int max_output_len,
                        unsigned char *sign, unsigned int sign_len)
{
    SECStatus rv;
    unsigned int modulus_len = pem_PublicModulusLen(key);

    if (sign_len != modulus_len)
        goto failure;
    if (max_output_len < modulus_len)
        goto failure;
    PORT_Assert(key->keyType == pemLOWKEYRSAKey);
    if (key->keyType != pemLOWKEYRSAKey)
        goto failure;

    rv = RSA_PublicKeyOp(&key->u.rsa, data, sign);
    if (rv != SECSuccess)
        goto failure;

    *data_len = modulus_len;
    return SECSuccess;

  failure:
    return SECFailure;
}


/* XXX Doesn't set error code */
SECStatus
RSA_EncryptRaw(NSSLOWKEYPublicKey * key,
               unsigned char *output,
               unsigned int *output_len,
               unsigned int max_output_len,
               unsigned char *input, unsigned int input_len)
{
    SECStatus rv;
    unsigned int modulus_len = pem_PublicModulusLen(key);
    SECItem formatted;
    SECItem unformatted;

    formatted.data = NULL;
    if (max_output_len < modulus_len)
        goto failure;
    PORT_Assert(key->keyType == pemLOWKEYRSAKey);
    if (key->keyType != pemLOWKEYRSAKey)
        goto failure;

    unformatted.len = input_len;
    unformatted.data = input;
    formatted.data = NULL;
    rv = rsa_FormatBlock(&formatted, modulus_len, RSA_BlockRaw,
                         &unformatted);
    if (rv != SECSuccess)
        goto failure;

    rv = RSA_PublicKeyOp(&key->u.rsa, output, formatted.data);
    if (rv != SECSuccess)
        goto failure;

    nss_ZFreeIf(formatted.data);
    *output_len = modulus_len;
    return SECSuccess;

  failure:
    if (formatted.data != NULL)
        nss_ZFreeIf(formatted.data);
    return SECFailure;
}

/* XXX Doesn't set error code */
SECStatus
pem_RSA_DecryptRaw(pemLOWKEYPrivateKey * key,
                   unsigned char *output,
                   unsigned int *output_len,
                   unsigned int max_output_len,
                   unsigned char *input, unsigned int input_len)
{
    SECStatus rv;
    unsigned int modulus_len = pem_PrivateModulusLen(key);

    if (modulus_len <= 0)
        goto failure;
    if (modulus_len > max_output_len)
        goto failure;
    PORT_Assert(key->keyType == pemLOWKEYRSAKey);
    if (key->keyType != pemLOWKEYRSAKey)
        goto failure;
    if (input_len != modulus_len)
        goto failure;

    rv = RSA_PrivateKeyOp(&key->u.rsa, output, input);
    if (rv != SECSuccess) {
        goto failure;
    }

    *output_len = modulus_len;
    return SECSuccess;

  failure:
    return SECFailure;
}
#endif