aboutsummaryrefslogtreecommitdiff
path: root/openssl/trunk/doc/crypto/rsa.pod
blob: 45ac53ffc1472fcbc5fdb14487dc823f7a72b51f (plain) (blame)
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
=pod

=head1 NAME

rsa - RSA public key cryptosystem

=head1 SYNOPSIS

 #include <openssl/rsa.h>
 #include <openssl/engine.h>

 RSA * RSA_new(void);
 void RSA_free(RSA *rsa);

 int RSA_public_encrypt(int flen, unsigned char *from,
    unsigned char *to, RSA *rsa, int padding);
 int RSA_private_decrypt(int flen, unsigned char *from,
    unsigned char *to, RSA *rsa, int padding);
 int RSA_private_encrypt(int flen, unsigned char *from,
    unsigned char *to, RSA *rsa,int padding);
 int RSA_public_decrypt(int flen, unsigned char *from, 
    unsigned char *to, RSA *rsa,int padding);

 int RSA_sign(int type, unsigned char *m, unsigned int m_len,
    unsigned char *sigret, unsigned int *siglen, RSA *rsa);
 int RSA_verify(int type, unsigned char *m, unsigned int m_len,
    unsigned char *sigbuf, unsigned int siglen, RSA *rsa);

 int RSA_size(const RSA *rsa);

 RSA *RSA_generate_key(int num, unsigned long e,
    void (*callback)(int,int,void *), void *cb_arg);

 int RSA_check_key(RSA *rsa);

 int RSA_blinding_on(RSA *rsa, BN_CTX *ctx);
 void RSA_blinding_off(RSA *rsa);

 void RSA_set_default_method(const RSA_METHOD *meth);
 const RSA_METHOD *RSA_get_default_method(void);
 int RSA_set_method(RSA *rsa, const RSA_METHOD *meth);
 const RSA_METHOD *RSA_get_method(const RSA *rsa);
 RSA_METHOD *RSA_PKCS1_SSLeay(void);
 RSA_METHOD *RSA_null_method(void);
 int RSA_flags(const RSA *rsa);
 RSA *RSA_new_method(ENGINE *engine);

 int RSA_print(BIO *bp, RSA *x, int offset);
 int RSA_print_fp(FILE *fp, RSA *x, int offset);

 int RSA_get_ex_new_index(long argl, char *argp, int (*new_func)(),
    int (*dup_func)(), void (*free_func)());
 int RSA_set_ex_data(RSA *r,int idx,char *arg);
 char *RSA_get_ex_data(RSA *r, int idx);

 int RSA_sign_ASN1_OCTET_STRING(int dummy, unsigned char *m,
    unsigned int m_len, unsigned char *sigret, unsigned int *siglen,
    RSA *rsa);
 int RSA_verify_ASN1_OCTET_STRING(int dummy, unsigned char *m,
    unsigned int m_len, unsigned char *sigbuf, unsigned int siglen,
    RSA *rsa);

=head1 DESCRIPTION

These functions implement RSA public key encryption and signatures
as defined in PKCS #1 v2.0 [RFC 2437].

The B<RSA> structure consists of several BIGNUM components. It can
contain public as well as private RSA keys:

 struct
        {
        BIGNUM *n;		// public modulus
        BIGNUM *e;		// public exponent
        BIGNUM *d;		// private exponent
        BIGNUM *p;		// secret prime factor
        BIGNUM *q;		// secret prime factor
        BIGNUM *dmp1;		// d mod (p-1)
        BIGNUM *dmq1;		// d mod (q-1)
        BIGNUM *iqmp;		// q^-1 mod p
	// ...
        };
 RSA

In public keys, the private exponent and the related secret values are
B<NULL>.

B<p>, B<q>, B<dmp1>, B<dmq1> and B<iqmp> may be B<NULL> in private
keys, but the RSA operations are much faster when these values are
available.

Note that RSA keys may use non-standard B<RSA_METHOD> implementations,
either directly or by the use of B<ENGINE> modules. In some cases (eg. an
ENGINE providing support for hardware-embedded keys), these BIGNUM values
will not be used by the implementation or may be used for alternative data
storage. For this reason, applications should generally avoid using RSA
structure elements directly and instead use API functions to query or
modify keys.

=head1 CONFORMING TO

SSL, PKCS #1 v2.0

=head1 PATENTS

RSA was covered by a US patent which expired in September 2000.

=head1 SEE ALSO

L<rsa(1)|rsa(1)>, L<bn(3)|bn(3)>, L<dsa(3)|dsa(3)>, L<dh(3)|dh(3)>,
L<rand(3)|rand(3)>, L<engine(3)|engine(3)>, L<RSA_new(3)|RSA_new(3)>,
L<RSA_public_encrypt(3)|RSA_public_encrypt(3)>,
L<RSA_sign(3)|RSA_sign(3)>, L<RSA_size(3)|RSA_size(3)>,
L<RSA_generate_key(3)|RSA_generate_key(3)>,
L<RSA_check_key(3)|RSA_check_key(3)>,
L<RSA_blinding_on(3)|RSA_blinding_on(3)>,
L<RSA_set_method(3)|RSA_set_method(3)>, L<RSA_print(3)|RSA_print(3)>,
L<RSA_get_ex_new_index(3)|RSA_get_ex_new_index(3)>,
L<RSA_private_encrypt(3)|RSA_private_encrypt(3)>,
L<RSA_sign_ASN1_OCTET_STRING(3)|RSA_sign_ASN1_OCTET_STRING(3)>,
L<RSA_padding_add_PKCS1_type_1(3)|RSA_padding_add_PKCS1_type_1(3)> 

=cut
12 21:42:51 +0000 committer Rob Austein <sra@hactrn.net> 2012-10-12 21:42:51 +0000 Replace rpki.ipaddrs with rpki.POW.IPAddress.' href='/sra/rpki.net/commit/rpkid/rpki/resource_set.py?h=zone-cleanup&id=f91067126a35c2df1d5fff8d0061262e568114c1'>f9106712
03d0e7da
a780a780


13a65b46
03d0e7da




ef6584ea




13a65b46
99d707ca
ef6584ea




9d67afc3




13a65b46
9d67afc3



03d0e7da
a780a780

eba8fc67


696d52f8
a780a780

2d5c5397
03d0e7da
f9106712




60ca1495
a780a780

d5ca4ddc

a780a780
13a65b46
03d0e7da
63b77270
d5ca4ddc
f9106712
03d0e7da



d5ca4ddc

91625343
e2fb2b8b









13a65b46
e2fb2b8b





91625343
a780a780


13a65b46
d5ca4ddc
60ca1495
d5ca4ddc
03d0e7da
03d0e7da
a81c0322
ef6584ea



13a65b46
99d707ca
ef6584ea
770ba2f6
99d707ca
ef6584ea
770ba2f6





07a045d1
ef6584ea

48580e7c
a780a780


13a65b46
f9106712


48580e7c
f9106712
a81c0322
aa07ae9f




13a65b46
aa07ae9f
60ca1495
aa07ae9f

c4be735c



aa07ae9f

c4be735c

aa07ae9f


c4be735c

aa07ae9f
9d67afc3




13a65b46
9d67afc3

f9106712


9d67afc3

f9106712
9d67afc3
f9106712
9d67afc3
f9106712
9d67afc3
f9106712

9d67afc3
03d0e7da
a780a780


f720a81d
f9106712
03d0e7da

a780a780


f720a81d
f9106712
03d0e7da
eba8fc67
a780a780


f9106712
7ab6effc
f9106712






7ab6effc
f9106712
7ab6effc
f9106712
7ab6effc


f9106712
7ab6effc
03d0e7da
a780a780

eba8fc67
696d52f8

2d5c5397
03d0e7da
696d52f8


adbe4444

aa07ae9f




e7192c87
a780a780


13a65b46
d0c51c60
7859254e
f8dbec35
14593e58
adbe4444

7859254e
7ab6effc

e7192c87


aa07ae9f
e7192c87
aa07ae9f


13a65b46
e612d70b
aa07ae9f

e7192c87





aa07ae9f
e7192c87





aa07ae9f





13a65b46
aa07ae9f






13a65b46
aa07ae9f

03d0e7da

a780a780


13a65b46
adbe4444


7859254e
03d0e7da
eba8fc67
a780a780

eba8fc67




7ab6effc
aa07ae9f
adbe4444
c7c46cd2
aa07ae9f

7ab6effc






eba8fc67
7ab6effc
eba8fc67
7ab6effc
eba8fc67
7ab6effc
eba8fc67
7ab6effc






a780a780


aa07ae9f
adbe4444
c7c46cd2
aa07ae9f

7ab6effc









c4be735c




da944a5d
c4be735c

da944a5d
7ab6effc

960ec3dc

7ab6effc
aa07ae9f


13a65b46
eba8fc67
7ab6effc
960ec3dc

7ab6effc
aa07ae9f


13a65b46
eba8fc67
7ab6effc
960ec3dc

7ab6effc
aa07ae9f


13a65b46
eba8fc67
72d61753
7ab6effc
960ec3dc

7ab6effc
a780a780


13a65b46
adbe4444
aa07ae9f
3ec8b842


c4be735c

3ec8b842
c4be735c

3ec8b842



c4be735c
3ec8b842
7ab6effc
3ec8b842
c4be735c
7ab6effc
960ec3dc

e364ef51
a780a780


13a65b46
e364ef51




960ec3dc

e364ef51
aa07ae9f


13a65b46
e364ef51

960ec3dc







e612d70b





13a65b46
e612d70b



960ec3dc
e612d70b




13a65b46
e612d70b
960ec3dc
a6748e38
88524489
a780a780

bcd8088b
88524489

bcd8088b


a6748e38
88524489
1b4918cd

55769ccf
bcd8088b
ef6584ea
39676701











ef6584ea





13a65b46
ef6584ea

03d0e7da
a780a780


03d0e7da
9da3ea19


bcd8088b

03d0e7da
a780a780

eba8fc67
696d52f8

2d5c5397
03d0e7da
d5ca4ddc

aa07ae9f
d5ca4ddc
13a65b46
51174820


aa07ae9f
60ca1495
51174820
d5ca4ddc
03d0e7da
a780a780


2d5c5397
9da3ea19


03d0e7da
9da3ea19
03d0e7da
a780a780


2d5c5397
9da3ea19


03d0e7da
9da3ea19
222dcc75
a780a780


222dcc75

e7da2a67
696d52f8










e7da2a67

222dcc75

43948f0e
222dcc75

a780a780


13a65b46
e7da2a67
222dcc75



a780a780


13a65b46
e7da2a67
222dcc75



3d7748a4




13a65b46
3d7748a4









e7192c87
960ec3dc



13a65b46
960ec3dc









e7192c87


960ec3dc

31d70399








13a65b46
54be63e6


31d70399



222dcc75
aa07ae9f


13a65b46
e7da2a67
222dcc75
55494cca


222dcc75
e7da2a67
8a65f4d8


222dcc75

35c1ca65
222dcc75

a780a780


8d48fee8
13a65b46
960ec3dc


8d48fee8
7ab6effc
960ec3dc

96394374
a780a780


96394374
13a65b46
960ec3dc











13a65b46
960ec3dc


96394374

960ec3dc






13a65b46
960ec3dc






39628f36

e7da2a67

39628f36









cc9751ae







a81c0322








a780a780

a81c0322

7859254e
696d52f8
a81c0322

48580e7c


696d52f8






48580e7c
a780a780


a81c0322
13a65b46
a81c0322


48580e7c
a81c0322



a780a780
48580e7c
a780a780
a81c0322
13a65b46
b13d2545
99d707ca


a81c0322

a780a780


13a65b46
7859254e
48580e7c
7859254e
48580e7c
7859254e

a780a780

7859254e


13a65b46
48580e7c
a81c0322
7859254e
aa07ae9f


13a65b46
48580e7c
7859254e

a780a780


13a65b46
f9106712
b13d2545
b1e9a923



13a65b46
f9106712
b1e9a923
99d707ca




13a65b46
99d707ca

f9106712
99d707ca

f9106712
07a045d1
99d707ca
7859254e
a780a780


7859254e
9da3ea19


7859254e


a780a780


7859254e
9da3ea19


7859254e


a780a780


7859254e

a780a780


13a65b46
d0c51c60
4afd28fd
7859254e





61d55246
7859254e
aa07ae9f


13a65b46
7859254e

99d707ca

a780a780

99d707ca
a780a780
13a65b46
99d707ca
a81c0322
4afd28fd
a780a780

61d55246





13a65b46
61d55246




72d61753
61d55246
4afd28fd
37c89cee
88524489
a780a780

88524489



48580e7c
88524489
37c89cee

88524489
f9106712
55769ccf
37c89cee
39676701
252393a3
39676701






f9106712
39676701

b1e9a923



13a65b46
b1e9a923





4afd28fd
a780a780


4afd28fd
9da3ea19


4afd28fd
9da3ea19



4afd28fd

d5ca4ddc


4afd28fd
a780a780


4afd28fd
9da3ea19


4afd28fd
9da3ea19



4afd28fd

d5ca4ddc


ad172639



















35c1ca65
ad172639

7859254e
7ab6effc


51174820

aa07ae9f
7859254e
4afd28fd


7ab6effc

51174820

eba8fc67

7ab6effc
960ec3dc






7ab6effc
51174820
960ec3dc

51174820

960ec3dc

7ab6effc
51174820
960ec3dc

7ab6effc
51174820
7ab6effc
4afd28fd
cd5516da

4afd28fd

cd5516da



d5ca4ddc














4afd28fd
7a5062ef
7ab6effc
4afd28fd
7859254e
4afd28fd
7859254e
4afd28fd
7859254e
4afd28fd
7859254e
7a5062ef
c4495080

4afd28fd







8667be0e






d5ca4ddc





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
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196