-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoc-index.html
3065 lines (3056 loc) · 557 KB
/
doc-index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index, follow, all" />
<title>Index | phpseclib API Documentation</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="css/doctum.css">
<link rel="stylesheet" type="text/css" href="fonts/doctum-font.css">
<script src="js/jquery-3.5.1.slim.min.js"></script>
<script async defer src="js/bootstrap.min.js"></script>
<script src="js/typeahead.min.js"></script>
<script src="doctum.js"></script>
<meta name="MobileOptimized" content="width">
<meta name="HandheldFriendly" content="true">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
</head>
<body id="doc-index" data-name="" data-root-path="">
<div id="content">
<div id="left-column">
<div id="control-panel">
<form action="#">
<select class="form-control" id="version-switcher" name="version">
<option value="../1.0/index.html" data-version="1.0">1.0</option>
<option value="../2.0/index.html" data-version="2.0">2.0</option>
<option value="../3.0/index.html" data-version="3.0">3.0</option>
<option value="../master/index.html" data-version="master">master</option>
</select>
</form>
<form id="search-form" action="search.html">
<span class="icon icon-search"></span>
<input name="search"
class="typeahead form-control"
type="search"
placeholder="Search">
</form>
</div>
<div id="api-tree"></div>
</div>
<div id="right-column">
<nav id="site-nav" class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-elements">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">phpseclib API Documentation</a>
</div>
<div class="collapse navbar-collapse" id="navbar-elements">
<ul class="nav navbar-nav">
<li><a href="classes.html">Classes</a></li>
<li><a href="namespaces.html">Namespaces</a></li>
<li><a href="interfaces.html">Interfaces</a></li>
<li><a href="traits.html">Traits</a></li>
<li><a href="doc-index.html">Index</a></li>
<li><a href="search.html">Search</a></li>
</ul>
</div>
</div>
</nav>
<div id="page-content">
<div class="page-header">
<h1>Index</h1>
</div>
<ul class="pagination">
<li><a href="#letterA">A</a></li>
<li><a href="#letterB">B</a></li>
<li><a href="#letterC">C</a></li>
<li><a href="#letterD">D</a></li>
<li><a href="#letterE">E</a></li>
<li><a href="#letterF">F</a></li>
<li><a href="#letterG">G</a></li>
<li><a href="#letterH">H</a></li>
<li><a href="#letterI">I</a></li>
<li><a href="#letterJ">J</a></li>
<li><a href="#letterK">K</a></li>
<li><a href="#letterL">L</a></li>
<li><a href="#letterM">M</a></li>
<li><a href="#letterN">N</a></li>
<li><a href="#letterO">O</a></li>
<li><a href="#letterP">P</a></li>
<li><a href="#letterQ">Q</a></li>
<li><a href="#letterR">R</a></li>
<li><a href="#letterS">S</a></li>
<li><a href="#letterT">T</a></li>
<li><a href="#letterU">U</a></li>
<li><a href="#letterV">V</a></li>
<li><a href="#letterW">W</a></li>
<li><a href="#letterX">X</a></li>
<li class="disabled"><a href="#letterY">Y</a></li>
<li><a href="#letterZ">Z</a></li>
</ul>
<h2 id="letterA">A</h2>
<dl id="indexA"><dt><a href="phpseclib3/Crypt/AES.html"><abbr title="phpseclib3\Crypt\AES">AES</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt.html">phpseclib3\Crypt</a></em></dt>
<dd>Pure-PHP implementation of AES.</dd><dt><a href="phpseclib3/Crypt/Common/AsymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/Common.html">phpseclib3\Crypt\Common</a></em></dt>
<dd>Base Class for all asymmetric cipher classes</dd><dt><a href="phpseclib3/Crypt/Common/AsymmetricKey.html#method_addFileFormat">
<abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr>::addFileFormat</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/AsymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr></a></em></dt>
<dd>Add a fileformat plugin</dd><dt>$<a href="phpseclib3/Crypt/Common/SymmetricKey.html#property_aad">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>#aad</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Additional authenticated data</dd><dt><a href="phpseclib3/Crypt/DSA/Formats/Signature/ASN1.html"><abbr title="phpseclib3\Crypt\DSA\Formats\Signature\ASN1">ASN1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/DSA/Formats/Signature.html">phpseclib3\Crypt\DSA\Formats\Signature</a></em></dt>
<dd>ASN1 Signature Handler</dd><dt>$<a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html#property_a">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr>#a</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr></a></em></dt>
<dd>Cofficient for x^1</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html#method_addPoint">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr>::addPoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr></a></em></dt>
<dd>Adds two points on the curve</dd><dt>$<a href="phpseclib3/Crypt/EC/BaseCurves/Montgomery.html#property_a">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Montgomery">Montgomery</abbr>#a</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/BaseCurves/Montgomery.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Montgomery">Montgomery</abbr></a></em></dt>
<dd>Cofficient for x</dd><dt>$<a href="phpseclib3/Crypt/EC/BaseCurves/Montgomery.html#property_a24">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Montgomery">Montgomery</abbr>#a24</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/BaseCurves/Montgomery.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Montgomery">Montgomery</abbr></a></em></dt>
<dd>Constant used for point doubling</dd><dt>$<a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html#property_a">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr>#a</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr></a></em></dt>
<dd>Cofficient for x^1</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html#method_addPoint">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr>::addPoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr></a></em></dt>
<dd>Adds two points on the curve</dd><dt>$<a href="phpseclib3/Crypt/EC/BaseCurves/TwistedEdwards.html#property_a">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\TwistedEdwards">TwistedEdwards</abbr>#a</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/BaseCurves/TwistedEdwards.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\TwistedEdwards">TwistedEdwards</abbr></a></em></dt>
<dd>Cofficient for x^2</dd><dt><a href="phpseclib3/Crypt/EC/Curves/Ed25519.html#method_addPoint">
<abbr title="phpseclib3\Crypt\EC\Curves\Ed25519">Ed25519</abbr>::addPoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/Curves/Ed25519.html"><abbr title="phpseclib3\Crypt\EC\Curves\Ed25519">Ed25519</abbr></a></em></dt>
<dd>Adds two points on the curve</dd><dt><a href="phpseclib3/Crypt/EC/Curves/Ed448.html#method_addPoint">
<abbr title="phpseclib3\Crypt\EC\Curves\Ed448">Ed448</abbr>::addPoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/Curves/Ed448.html"><abbr title="phpseclib3\Crypt\EC\Curves\Ed448">Ed448</abbr></a></em></dt>
<dd>Adds two points on the curve</dd><dt><a href="phpseclib3/Crypt/EC/Formats/Signature/ASN1.html"><abbr title="phpseclib3\Crypt\EC\Formats\Signature\ASN1">ASN1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Formats/Signature.html">phpseclib3\Crypt\EC\Formats\Signature</a></em></dt>
<dd>ASN1 Signature Handler</dd><dt><a href="phpseclib3/Crypt/RSA/PublicKey.html#method_asPrivateKey">
<abbr title="phpseclib3\Crypt\RSA\PublicKey">PublicKey</abbr>::asPrivateKey</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA/PublicKey.html"><abbr title="phpseclib3\Crypt\RSA\PublicKey">PublicKey</abbr></a></em></dt>
<dd>Converts a public key to a private key</dd><dt><a href="phpseclib3/File/ANSI.html"><abbr title="phpseclib3\File\ANSI">ANSI</abbr></a> — <em>Class in namespace <a href="phpseclib3/File.html">phpseclib3\File</a></em></dt>
<dd>Pure-PHP ANSI Decoder</dd><dt><a href="phpseclib3/File/ANSI.html#method_appendString">
<abbr title="phpseclib3\File\ANSI">ANSI</abbr>::appendString</a>() — <em>Method in class <a href="phpseclib3/File/ANSI.html"><abbr title="phpseclib3\File\ANSI">ANSI</abbr></a></em></dt>
<dd>Appdend a string</dd><dt><a href="phpseclib3/File/ASN1.html"><abbr title="phpseclib3\File\ASN1">ASN1</abbr></a> — <em>Class in namespace <a href="phpseclib3/File.html">phpseclib3\File</a></em></dt>
<dd>Pure-PHP ASN.1 Parser</dd><dt><a href="phpseclib3/File/ASN1.html#method_asn1map">
<abbr title="phpseclib3\File\ASN1">ASN1</abbr>::asn1map</a>() — <em>Method in class <a href="phpseclib3/File/ASN1.html"><abbr title="phpseclib3\File\ASN1">ASN1</abbr></a></em></dt>
<dd>ASN.1 Map</dd><dt><a href="phpseclib3/File/ASN1/Maps/AccessDescription.html"><abbr title="phpseclib3\File\ASN1\Maps\AccessDescription">AccessDescription</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>AccessDescription</dd><dt><a href="phpseclib3/File/ASN1/Maps/AdministrationDomainName.html"><abbr title="phpseclib3\File\ASN1\Maps\AdministrationDomainName">AdministrationDomainName</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>AdministrationDomainName</dd><dt><a href="phpseclib3/File/ASN1/Maps/AlgorithmIdentifier.html"><abbr title="phpseclib3\File\ASN1\Maps\AlgorithmIdentifier">AlgorithmIdentifier</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>AlgorithmIdentifier</dd><dt><a href="phpseclib3/File/ASN1/Maps/AnotherName.html"><abbr title="phpseclib3\File\ASN1\Maps\AnotherName">AnotherName</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>AnotherName</dd><dt><a href="phpseclib3/File/ASN1/Maps/Attribute.html"><abbr title="phpseclib3\File\ASN1\Maps\Attribute">Attribute</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>Attribute</dd><dt><a href="phpseclib3/File/ASN1/Maps/AttributeType.html"><abbr title="phpseclib3\File\ASN1\Maps\AttributeType">AttributeType</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>AttributeType</dd><dt><a href="phpseclib3/File/ASN1/Maps/AttributeTypeAndValue.html"><abbr title="phpseclib3\File\ASN1\Maps\AttributeTypeAndValue">AttributeTypeAndValue</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>AttributeTypeAndValue</dd><dt><a href="phpseclib3/File/ASN1/Maps/AttributeValue.html"><abbr title="phpseclib3\File\ASN1\Maps\AttributeValue">AttributeValue</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>AttributeValue</dd><dt><a href="phpseclib3/File/ASN1/Maps/Attributes.html"><abbr title="phpseclib3\File\ASN1\Maps\Attributes">Attributes</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>Attributes</dd><dt><a href="phpseclib3/File/ASN1/Maps/AuthorityInfoAccessSyntax.html"><abbr title="phpseclib3\File\ASN1\Maps\AuthorityInfoAccessSyntax">AuthorityInfoAccessSyntax</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>AuthorityInfoAccessSyntax</dd><dt><a href="phpseclib3/File/ASN1/Maps/AuthorityKeyIdentifier.html"><abbr title="phpseclib3\File\ASN1\Maps\AuthorityKeyIdentifier">AuthorityKeyIdentifier</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>AuthorityKeyIdentifier</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_add">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::add</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Adds two BigIntegers.</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_abs">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::abs</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Absolute value.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath.html#method_add">
<abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr>::add</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/BCMath.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr></a></em></dt>
<dd>Adds two BigIntegers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath.html#method_abs">
<abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr>::abs</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/BCMath.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr></a></em></dt>
<dd>Absolute value.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/GMP.html#method_add">
<abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr>::add</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/GMP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr></a></em></dt>
<dd>Adds two BigIntegers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/GMP.html#method_abs">
<abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr>::abs</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/GMP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr></a></em></dt>
<dd>Absolute value.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP.html#method_addHelper">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr>::addHelper</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr></a></em></dt>
<dd>Performs addition.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP.html#method_abs">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr>::abs</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr></a></em></dt>
<dd>Absolute value.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP.html#method_array_repeat">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr>::array_repeat</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr></a></em></dt>
<dd>Array Repeat</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP32.html#method_add">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr>::add</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP32.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr></a></em></dt>
<dd>Adds two BigIntegers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP64.html#method_add">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr>::add</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP64.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr></a></em></dt>
<dd>Adds two BigIntegers.</dd><dt><a href="phpseclib3/Math/BinaryField/Integer.html#method_add">
<abbr title="phpseclib3\Math\BinaryField\Integer">Integer</abbr>::add</a>() — <em>Method in class <a href="phpseclib3/Math/BinaryField/Integer.html"><abbr title="phpseclib3\Math\BinaryField\Integer">Integer</abbr></a></em></dt>
<dd>Adds two BinaryFieldIntegers.</dd><dt><a href="phpseclib3/Math/PrimeField/Integer.html#method_add">
<abbr title="phpseclib3\Math\PrimeField\Integer">Integer</abbr>::add</a>() — <em>Method in class <a href="phpseclib3/Math/PrimeField/Integer.html"><abbr title="phpseclib3\Math\PrimeField\Integer">Integer</abbr></a></em></dt>
<dd>Adds two PrimeFieldIntegers.</dd><dt>$<a href="phpseclib3/Net/SSH2.html#property_auth">
<abbr title="phpseclib3\Net\SSH2">SSH2</abbr>#auth</a> — <em>Property in class <a href="phpseclib3/Net/SSH2.html"><abbr title="phpseclib3\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Authentication Credentials</dd><dt><a href="phpseclib3/System/SSH/Agent.html"><abbr title="phpseclib3\System\SSH\Agent">Agent</abbr></a> — <em>Class in namespace <a href="phpseclib3/System/SSH.html">phpseclib3\System\SSH</a></em></dt>
<dd>Pure-PHP ssh-agent client identity factory</dd> </dl><h2 id="letterB">B</h2>
<dl id="indexB"><dt><a href="phpseclib3/Common/Functions/Strings.html#method_bits2bin">
<abbr title="phpseclib3\Common\Functions\Strings">Strings</abbr>::bits2bin</a>() — <em>Method in class <a href="phpseclib3/Common/Functions/Strings.html"><abbr title="phpseclib3\Common\Functions\Strings">Strings</abbr></a></em></dt>
<dd>Convert binary data into bits</dd><dt><a href="phpseclib3/Common/Functions/Strings.html#method_bin2bits">
<abbr title="phpseclib3\Common\Functions\Strings">Strings</abbr>::bin2bits</a>() — <em>Method in class <a href="phpseclib3/Common/Functions/Strings.html"><abbr title="phpseclib3\Common\Functions\Strings">Strings</abbr></a></em></dt>
<dd>Convert bits to binary data</dd><dt><a href="phpseclib3/Crypt/Blowfish.html"><abbr title="phpseclib3\Crypt\Blowfish">Blowfish</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt.html">phpseclib3\Crypt</a></em></dt>
<dd>Pure-PHP implementation of Blowfish.</dd><dt>$<a href="phpseclib3/Crypt/Blowfish.html#property_block_size">
<abbr title="phpseclib3\Crypt\Blowfish">Blowfish</abbr>#block_size</a> — <em>Property in class <a href="phpseclib3/Crypt/Blowfish.html"><abbr title="phpseclib3\Crypt\Blowfish">Blowfish</abbr></a></em></dt>
<dd>Block Length of the cipher</dd><dt><a href="phpseclib3/Crypt/Common/AsymmetricKey.html#method_bits2int">
<abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr>::bits2int</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/AsymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr></a></em></dt>
<dd>Bit String to Integer</dd><dt><a href="phpseclib3/Crypt/Common/BlockCipher.html"><abbr title="phpseclib3\Crypt\Common\BlockCipher">BlockCipher</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/Common.html">phpseclib3\Crypt\Common</a></em></dt>
<dd>Base Class for all block cipher classes</dd><dt>$<a href="phpseclib3/Crypt/Common/Formats/Keys/OpenSSH.html#property_binary">
<abbr title="phpseclib3\Crypt\Common\Formats\Keys\OpenSSH">OpenSSH</abbr>#binary</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/Formats/Keys/OpenSSH.html"><abbr title="phpseclib3\Crypt\Common\Formats\Keys\OpenSSH">OpenSSH</abbr></a></em></dt>
<dd>Binary key flag</dd><dt>$<a href="phpseclib3/Crypt/Common/StreamCipher.html#property_block_size">
<abbr title="phpseclib3\Crypt\Common\StreamCipher">StreamCipher</abbr>#block_size</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/StreamCipher.html"><abbr title="phpseclib3\Crypt\Common\StreamCipher">StreamCipher</abbr></a></em></dt>
<dd>Block Length of the cipher</dd><dt>$<a href="phpseclib3/Crypt/Common/SymmetricKey.html#property_block_size">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>#block_size</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>The Block Length of the block cipher</dd><dt>$<a href="phpseclib3/Crypt/DES.html#property_block_size">
<abbr title="phpseclib3\Crypt\DES">DES</abbr>#block_size</a> — <em>Property in class <a href="phpseclib3/Crypt/DES.html"><abbr title="phpseclib3\Crypt\DES">DES</abbr></a></em></dt>
<dd>Block Length of the cipher</dd><dt>$<a href="phpseclib3/Crypt/DH.html#property_base">
<abbr title="phpseclib3\Crypt\DH">DH</abbr>#base</a> — <em>Property in class <a href="phpseclib3/Crypt/DH.html"><abbr title="phpseclib3\Crypt\DH">DH</abbr></a></em></dt>
<dd>DH Base</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Base.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/BaseCurves.html">phpseclib3\Crypt\EC\BaseCurves</a></em></dt>
<dd>Base</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/BaseCurves.html">phpseclib3\Crypt\EC\BaseCurves</a></em></dt>
<dd>Curves over y^2 + x<em>y = x^3 + a</em>x^2 + b</dd><dt>$<a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html#property_b">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr>#b</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr></a></em></dt>
<dd>Cofficient for x^0</dd><dt>$<a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html#property_b">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr>#b</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr></a></em></dt>
<dd>Cofficient for x^0</dd><dt><a href="phpseclib3/Crypt/EC/Curves/brainpoolP160r1.html"><abbr title="phpseclib3\Crypt\EC\Curves\brainpoolP160r1">brainpoolP160r1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/brainpoolP160t1.html"><abbr title="phpseclib3\Crypt\EC\Curves\brainpoolP160t1">brainpoolP160t1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/brainpoolP192r1.html"><abbr title="phpseclib3\Crypt\EC\Curves\brainpoolP192r1">brainpoolP192r1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/brainpoolP192t1.html"><abbr title="phpseclib3\Crypt\EC\Curves\brainpoolP192t1">brainpoolP192t1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/brainpoolP224r1.html"><abbr title="phpseclib3\Crypt\EC\Curves\brainpoolP224r1">brainpoolP224r1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/brainpoolP224t1.html"><abbr title="phpseclib3\Crypt\EC\Curves\brainpoolP224t1">brainpoolP224t1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/brainpoolP256r1.html"><abbr title="phpseclib3\Crypt\EC\Curves\brainpoolP256r1">brainpoolP256r1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/brainpoolP256t1.html"><abbr title="phpseclib3\Crypt\EC\Curves\brainpoolP256t1">brainpoolP256t1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/brainpoolP320r1.html"><abbr title="phpseclib3\Crypt\EC\Curves\brainpoolP320r1">brainpoolP320r1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/brainpoolP320t1.html"><abbr title="phpseclib3\Crypt\EC\Curves\brainpoolP320t1">brainpoolP320t1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/brainpoolP384r1.html"><abbr title="phpseclib3\Crypt\EC\Curves\brainpoolP384r1">brainpoolP384r1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/brainpoolP384t1.html"><abbr title="phpseclib3\Crypt\EC\Curves\brainpoolP384t1">brainpoolP384t1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/brainpoolP512r1.html"><abbr title="phpseclib3\Crypt\EC\Curves\brainpoolP512r1">brainpoolP512r1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/brainpoolP512t1.html"><abbr title="phpseclib3\Crypt\EC\Curves\brainpoolP512t1">brainpoolP512t1</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt>$<a href="phpseclib3/Crypt/RC2.html#property_block_size">
<abbr title="phpseclib3\Crypt\RC2">RC2</abbr>#block_size</a> — <em>Property in class <a href="phpseclib3/Crypt/RC2.html"><abbr title="phpseclib3\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>Block Length of the cipher</dd><dt><a href="phpseclib3/Exception/BadConfigurationException.html"><abbr title="phpseclib3\Exception\BadConfigurationException">BadConfigurationException</abbr></a> — <em>Class in namespace <a href="phpseclib3/Exception.html">phpseclib3\Exception</a></em></dt>
<dd>BadConfigurationException</dd><dt><a href="phpseclib3/Exception/BadDecryptionException.html"><abbr title="phpseclib3\Exception\BadDecryptionException">BadDecryptionException</abbr></a> — <em>Class in namespace <a href="phpseclib3/Exception.html">phpseclib3\Exception</a></em></dt>
<dd>BadDecryptionException</dd><dt><a href="phpseclib3/Exception/BadModeException.html"><abbr title="phpseclib3\Exception\BadModeException">BadModeException</abbr></a> — <em>Class in namespace <a href="phpseclib3/Exception.html">phpseclib3\Exception</a></em></dt>
<dd>BadModeException</dd><dt><a href="phpseclib3/File/ASN1/Maps/BaseDistance.html"><abbr title="phpseclib3\File\ASN1\Maps\BaseDistance">BaseDistance</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>BaseDistance</dd><dt><a href="phpseclib3/File/ASN1/Maps/BasicConstraints.html"><abbr title="phpseclib3\File\ASN1\Maps\BasicConstraints">BasicConstraints</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>BasicConstraints</dd><dt><a href="phpseclib3/File/ASN1/Maps/BuiltInDomainDefinedAttribute.html"><abbr title="phpseclib3\File\ASN1\Maps\BuiltInDomainDefinedAttribute">BuiltInDomainDefinedAttribute</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>BuiltInDomainDefinedAttribute</dd><dt><a href="phpseclib3/File/ASN1/Maps/BuiltInDomainDefinedAttributes.html"><abbr title="phpseclib3\File\ASN1\Maps\BuiltInDomainDefinedAttributes">BuiltInDomainDefinedAttributes</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>BuiltInDomainDefinedAttributes</dd><dt><a href="phpseclib3/File/ASN1/Maps/BuiltInStandardAttributes.html"><abbr title="phpseclib3\File\ASN1\Maps\BuiltInStandardAttributes">BuiltInStandardAttributes</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>BuiltInStandardAttributes</dd><dt><a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math.html">phpseclib3\Math</a></em></dt>
<dd>Pure-PHP arbitrary precision integer arithmetic library. Supports base-2, base-10, base-16, and base-256
numbers.</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_bitwise_not">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::bitwise_not</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical Not</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_bitwise_and">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::bitwise_and</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical And</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_bitwise_or">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::bitwise_or</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical Or</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_bitwise_xor">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::bitwise_xor</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical Exclusive Or</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_bitwise_rightShift">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::bitwise_rightShift</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical Right Shift</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_bitwise_leftShift">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::bitwise_leftShift</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical Left Shift</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_bitwise_leftRotate">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::bitwise_leftRotate</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical Left Rotate</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_bitwise_rightRotate">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::bitwise_rightRotate</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical Right Rotate</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_between">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::between</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Tests BigInteger to see if it is between two integers, inclusive</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_bitwise_split">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::bitwise_split</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Bitwise Split</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math/BigInteger/Engines.html">phpseclib3\Math\BigInteger\Engines</a></em></dt>
<dd>BCMath Engine.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath.html#method_bitwise_and">
<abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr>::bitwise_and</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/BCMath.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr></a></em></dt>
<dd>Logical And</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath.html#method_bitwise_or">
<abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr>::bitwise_or</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/BCMath.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr></a></em></dt>
<dd>Logical Or</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath.html#method_bitwise_xor">
<abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr>::bitwise_xor</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/BCMath.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr></a></em></dt>
<dd>Logical Exclusive Or</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath.html#method_bitwise_rightShift">
<abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr>::bitwise_rightShift</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/BCMath.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr></a></em></dt>
<dd>Logical Right Shift</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath.html#method_bitwise_leftShift">
<abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr>::bitwise_leftShift</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/BCMath.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr></a></em></dt>
<dd>Logical Left Shift</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath.html#method_between">
<abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr>::between</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/BCMath.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr></a></em></dt>
<dd>Tests BigInteger to see if it is between two integers, inclusive</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath/Base.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath\Base">Base</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math/BigInteger/Engines/BCMath.html">phpseclib3\Math\BigInteger\Engines\BCMath</a></em></dt>
<dd>Sliding Window Exponentiation Engine</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath/BuiltIn.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath\BuiltIn">BuiltIn</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math/BigInteger/Engines/BCMath.html">phpseclib3\Math\BigInteger\Engines\BCMath</a></em></dt>
<dd>Built-In BCMath Modular Exponentiation Engine</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath/Reductions/Barrett.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath\Reductions\Barrett">Barrett</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math/BigInteger/Engines/BCMath/Reductions.html">phpseclib3\Math\BigInteger\Engines\BCMath\Reductions</a></em></dt>
<dd>PHP Barrett Modular Exponentiation Engine</dd><dt>$<a href="phpseclib3/Math/BigInteger/Engines/Engine.html#property_bitmask">
<abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr>#bitmask</a> — <em>Property in class <a href="phpseclib3/Math/BigInteger/Engines/Engine.html"><abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr></a></em></dt>
<dd>Precision Bitmask</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/Engine.html#method_bitwise_not">
<abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr>::bitwise_not</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/Engine.html"><abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr></a></em></dt>
<dd>Logical Not</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/Engine.html#method_base256_lshift">
<abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr>::base256_lshift</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/Engine.html"><abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr></a></em></dt>
<dd>Logical Left Shift</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/Engine.html#method_bitwise_leftRotate">
<abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr>::bitwise_leftRotate</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/Engine.html"><abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr></a></em></dt>
<dd>Logical Left Rotate</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/Engine.html#method_bitwise_rightRotate">
<abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr>::bitwise_rightRotate</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/Engine.html"><abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr></a></em></dt>
<dd>Logical Right Rotate</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/Engine.html#method_bitwise_split">
<abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr>::bitwise_split</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/Engine.html"><abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr></a></em></dt>
<dd>Bitwise Split</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/Engine.html#method_bitwiseAndHelper">
<abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr>::bitwiseAndHelper</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/Engine.html"><abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr></a></em></dt>
<dd>Logical And</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/Engine.html#method_bitwiseOrHelper">
<abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr>::bitwiseOrHelper</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/Engine.html"><abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr></a></em></dt>
<dd>Logical Or</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/Engine.html#method_bitwiseXorHelper">
<abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr>::bitwiseXorHelper</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/Engine.html"><abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr></a></em></dt>
<dd>Logical Exclusive Or</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/GMP.html#method_bitwise_and">
<abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr>::bitwise_and</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/GMP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr></a></em></dt>
<dd>Logical And</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/GMP.html#method_bitwise_or">
<abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr>::bitwise_or</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/GMP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr></a></em></dt>
<dd>Logical Or</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/GMP.html#method_bitwise_xor">
<abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr>::bitwise_xor</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/GMP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr></a></em></dt>
<dd>Logical Exclusive Or</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/GMP.html#method_bitwise_rightShift">
<abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr>::bitwise_rightShift</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/GMP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr></a></em></dt>
<dd>Logical Right Shift</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/GMP.html#method_bitwise_leftShift">
<abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr>::bitwise_leftShift</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/GMP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr></a></em></dt>
<dd>Logical Left Shift</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/GMP.html#method_between">
<abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr>::between</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/GMP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr></a></em></dt>
<dd>Tests BigInteger to see if it is between two integers, inclusive</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP.html#method_bitwise_rightShift">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr>::bitwise_rightShift</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr></a></em></dt>
<dd>Logical Right Shift</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP.html#method_bitwise_leftShift">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr>::bitwise_leftShift</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr></a></em></dt>
<dd>Logical Left Shift</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP.html#method_baseSquare">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr>::baseSquare</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr></a></em></dt>
<dd>Performs traditional squaring on two BigIntegers</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP.html#method_bitwise_split">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr>::bitwise_split</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr></a></em></dt>
<dd>Bitwise Split</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP32.html#method_bitwise_and">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr>::bitwise_and</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP32.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr></a></em></dt>
<dd>Logical And</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP32.html#method_bitwise_or">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr>::bitwise_or</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP32.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr></a></em></dt>
<dd>Logical Or</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP32.html#method_bitwise_xor">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr>::bitwise_xor</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP32.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr></a></em></dt>
<dd>Logical Exclusive Or</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP32.html#method_between">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr>::between</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP32.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr></a></em></dt>
<dd>Tests BigInteger to see if it is between two integers, inclusive</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP64.html#method_bitwise_and">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr>::bitwise_and</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP64.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr></a></em></dt>
<dd>Logical And</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP64.html#method_bitwise_or">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr>::bitwise_or</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP64.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr></a></em></dt>
<dd>Logical Or</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP64.html#method_bitwise_xor">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr>::bitwise_xor</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP64.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr></a></em></dt>
<dd>Logical Exclusive Or</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP64.html#method_between">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr>::between</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP64.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr></a></em></dt>
<dd>Tests BigInteger to see if it is between two integers, inclusive</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP/Base.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP\Base">Base</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math/BigInteger/Engines/PHP.html">phpseclib3\Math\BigInteger\Engines\PHP</a></em></dt>
<dd>PHP Modular Exponentiation Engine</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP/Reductions/Barrett.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP\Reductions\Barrett">Barrett</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math/BigInteger/Engines/PHP/Reductions.html">phpseclib3\Math\BigInteger\Engines\PHP\Reductions</a></em></dt>
<dd>PHP Barrett Modular Exponentiation Engine</dd><dt><a href="phpseclib3/Math/BinaryField.html"><abbr title="phpseclib3\Math\BinaryField">BinaryField</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math.html">phpseclib3\Math</a></em></dt>
<dd>Binary Finite Fields</dd><dt><a href="phpseclib3/Math/BinaryField.html#method_base2ToBase256">
<abbr title="phpseclib3\Math\BinaryField">BinaryField</abbr>::base2ToBase256</a>() — <em>Method in class <a href="phpseclib3/Math/BinaryField.html"><abbr title="phpseclib3\Math\BinaryField">BinaryField</abbr></a></em></dt>
<dd>Converts a base-2 string to a base-256 string</dd><dt><a href="phpseclib3/Math/BinaryField.html#method_base256ToBase2">
<abbr title="phpseclib3\Math\BinaryField">BinaryField</abbr>::base256ToBase2</a>() — <em>Method in class <a href="phpseclib3/Math/BinaryField.html"><abbr title="phpseclib3\Math\BinaryField">BinaryField</abbr></a></em></dt>
<dd>Converts a base-256 string to a base-2 string</dd><dt>$<a href="phpseclib3/Net/SSH2.html#property_bitmap">
<abbr title="phpseclib3\Net\SSH2">SSH2</abbr>#bitmap</a> — <em>Property in class <a href="phpseclib3/Net/SSH2.html"><abbr title="phpseclib3\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Execution Bitmap</dd> </dl><h2 id="letterC">C</h2>
<dl id="indexC"><dt>$<a href="phpseclib3/Crypt/Blowfish.html#property_cipher_name_mcrypt">
<abbr title="phpseclib3\Crypt\Blowfish">Blowfish</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib3/Crypt/Blowfish.html"><abbr title="phpseclib3\Crypt\Blowfish">Blowfish</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib3/Crypt/Blowfish.html#property_cfb_init_len">
<abbr title="phpseclib3\Crypt\Blowfish">Blowfish</abbr>#cfb_init_len</a> — <em>Property in class <a href="phpseclib3/Crypt/Blowfish.html"><abbr title="phpseclib3\Crypt\Blowfish">Blowfish</abbr></a></em></dt>
<dd>Optimizing value while CFB-encrypting</dd><dt><a href="phpseclib3/Crypt/ChaCha20.html"><abbr title="phpseclib3\Crypt\ChaCha20">ChaCha20</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt.html">phpseclib3\Crypt</a></em></dt>
<dd>Pure-PHP implementation of ChaCha20.</dd><dt>$<a href="phpseclib3/Crypt/ChaCha20.html#property_cipher_name_openssl">
<abbr title="phpseclib3\Crypt\ChaCha20">ChaCha20</abbr>#cipher_name_openssl</a> — <em>Property in class <a href="phpseclib3/Crypt/ChaCha20.html"><abbr title="phpseclib3\Crypt\ChaCha20">ChaCha20</abbr></a></em></dt>
<dd>The OpenSSL specific name of the cipher</dd><dt><a href="phpseclib3/Crypt/Common/AsymmetricKey.html#method_computek">
<abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr>::computek</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/AsymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr></a></em></dt>
<dd>Compute the pseudorandom k for signature generation,
using the process specified for deterministic DSA.</dd><dt>$<a href="phpseclib3/Crypt/Common/Formats/Keys/OpenSSH.html#property_comment">
<abbr title="phpseclib3\Crypt\Common\Formats\Keys\OpenSSH">OpenSSH</abbr>#comment</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/Formats/Keys/OpenSSH.html"><abbr title="phpseclib3\Crypt\Common\Formats\Keys\OpenSSH">OpenSSH</abbr></a></em></dt>
<dd>Default comment</dd><dt>$<a href="phpseclib3/Crypt/Common/SymmetricKey.html#property_continuousBuffer">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>#continuousBuffer</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Continuous Buffer status</dd><dt>$<a href="phpseclib3/Crypt/Common/SymmetricKey.html#property_cfb_init_len">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>#cfb_init_len</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Optimizing value while CFB-encrypting</dd><dt>$<a href="phpseclib3/Crypt/Common/SymmetricKey.html#property_changed">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>#changed</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Does internal cipher state need to be (re)initialized?</dd><dt>$<a href="phpseclib3/Crypt/Common/SymmetricKey.html#property_cipher_name_mcrypt">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib3/Crypt/Common/SymmetricKey.html#property_cipher_name_openssl">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>#cipher_name_openssl</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>The openssl specific name of the cipher</dd><dt>$<a href="phpseclib3/Crypt/Common/SymmetricKey.html#property_cipher_name_openssl_ecb">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>#cipher_name_openssl_ecb</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>The openssl specific name of the cipher in ECB mode</dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_createInlineCryptFunction">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::createInlineCryptFunction</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Creates the performance-optimized function for en/decrypt()</dd><dt>$<a href="phpseclib3/Crypt/DES.html#property_cipher_name_mcrypt">
<abbr title="phpseclib3\Crypt\DES">DES</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib3/Crypt/DES.html"><abbr title="phpseclib3\Crypt\DES">DES</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib3/Crypt/DES.html#property_cfb_init_len">
<abbr title="phpseclib3\Crypt\DES">DES</abbr>#cfb_init_len</a> — <em>Property in class <a href="phpseclib3/Crypt/DES.html"><abbr title="phpseclib3\Crypt\DES">DES</abbr></a></em></dt>
<dd>Optimizing value while CFB-encrypting</dd><dt><a href="phpseclib3/Crypt/DH.html#method_createParameters">
<abbr title="phpseclib3\Crypt\DH">DH</abbr>::createParameters</a>() — <em>Method in class <a href="phpseclib3/Crypt/DH.html"><abbr title="phpseclib3\Crypt\DH">DH</abbr></a></em></dt>
<dd>Create DH parameters</dd><dt><a href="phpseclib3/Crypt/DH.html#method_createKey">
<abbr title="phpseclib3\Crypt\DH">DH</abbr>::createKey</a>() — <em>Method in class <a href="phpseclib3/Crypt/DH.html"><abbr title="phpseclib3\Crypt\DH">DH</abbr></a></em></dt>
<dd>Create public / private key pair.</dd><dt><a href="phpseclib3/Crypt/DH.html#method_computeSecret">
<abbr title="phpseclib3\Crypt\DH">DH</abbr>::computeSecret</a>() — <em>Method in class <a href="phpseclib3/Crypt/DH.html"><abbr title="phpseclib3\Crypt\DH">DH</abbr></a></em></dt>
<dd>Compute Shared Secret</dd><dt>$<a href="phpseclib3/Crypt/DH/Formats/Keys/PKCS8.html#property_childOIDsLoaded">
<abbr title="phpseclib3\Crypt\DH\Formats\Keys\PKCS8">PKCS8</abbr>#childOIDsLoaded</a> — <em>Property in class <a href="phpseclib3/Crypt/DH/Formats/Keys/PKCS8.html"><abbr title="phpseclib3\Crypt\DH\Formats\Keys\PKCS8">PKCS8</abbr></a></em></dt>
<dd>Child OIDs loaded</dd><dt><a href="phpseclib3/Crypt/DSA.html#method_createParameters">
<abbr title="phpseclib3\Crypt\DSA">DSA</abbr>::createParameters</a>() — <em>Method in class <a href="phpseclib3/Crypt/DSA.html"><abbr title="phpseclib3\Crypt\DSA">DSA</abbr></a></em></dt>
<dd>Create DSA parameters</dd><dt><a href="phpseclib3/Crypt/DSA.html#method_createKey">
<abbr title="phpseclib3\Crypt\DSA">DSA</abbr>::createKey</a>() — <em>Method in class <a href="phpseclib3/Crypt/DSA.html"><abbr title="phpseclib3\Crypt\DSA">DSA</abbr></a></em></dt>
<dd>Create public / private key pair.</dd><dt>$<a href="phpseclib3/Crypt/DSA/Formats/Keys/PKCS8.html#property_childOIDsLoaded">
<abbr title="phpseclib3\Crypt\DSA\Formats\Keys\PKCS8">PKCS8</abbr>#childOIDsLoaded</a> — <em>Property in class <a href="phpseclib3/Crypt/DSA/Formats/Keys/PKCS8.html"><abbr title="phpseclib3\Crypt\DSA\Formats\Keys\PKCS8">PKCS8</abbr></a></em></dt>
<dd>Child OIDs loaded</dd><dt>$<a href="phpseclib3/Crypt/EC.html#property_curve">
<abbr title="phpseclib3\Crypt\EC">EC</abbr>#curve</a> — <em>Property in class <a href="phpseclib3/Crypt/EC.html"><abbr title="phpseclib3\Crypt\EC">EC</abbr></a></em></dt>
<dd>Curve</dd><dt>$<a href="phpseclib3/Crypt/EC.html#property_context">
<abbr title="phpseclib3\Crypt\EC">EC</abbr>#context</a> — <em>Property in class <a href="phpseclib3/Crypt/EC.html"><abbr title="phpseclib3\Crypt\EC">EC</abbr></a></em></dt>
<dd>Context</dd><dt><a href="phpseclib3/Crypt/EC.html#method_createKey">
<abbr title="phpseclib3\Crypt\EC">EC</abbr>::createKey</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC.html"><abbr title="phpseclib3\Crypt\EC">EC</abbr></a></em></dt>
<dd>Create public / private key pair.</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Base.html#method_convertInteger">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr>::convertInteger</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Base.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr></a></em></dt>
<dd>Converts a BigInteger to a FiniteField integer</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Base.html#method_createRandomMultiplier">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr>::createRandomMultiplier</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Base.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr></a></em></dt>
<dd>Creates a random scalar multiplier</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Base.html#method_convertToAffine">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr>::convertToAffine</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Base.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr></a></em></dt>
<dd>Returns the affine point</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Base.html#method_convertToInternal">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr>::convertToInternal</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Base.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr></a></em></dt>
<dd>Converts an affine point to a jacobian coordinate</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html#method_convertToAffine">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr>::convertToAffine</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr></a></em></dt>
<dd>Returns the affine point</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html#method_convertToInternal">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr>::convertToInternal</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr></a></em></dt>
<dd>Converts an affine point to a jacobian coordinate</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Montgomery.html#method_convertToInternal">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Montgomery">Montgomery</abbr>::convertToInternal</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Montgomery.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Montgomery">Montgomery</abbr></a></em></dt>
<dd>Converts an affine point to an XZ coordinate</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Montgomery.html#method_convertToAffine">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Montgomery">Montgomery</abbr>::convertToAffine</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Montgomery.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Montgomery">Montgomery</abbr></a></em></dt>
<dd>Returns the affine point</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html#method_convertToAffine">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr>::convertToAffine</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr></a></em></dt>
<dd>Returns the affine point</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html#method_convertToInternal">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr>::convertToInternal</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr></a></em></dt>
<dd>Converts an affine point to a jacobian coordinate</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/TwistedEdwards.html#method_convertToAffine">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\TwistedEdwards">TwistedEdwards</abbr>::convertToAffine</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/TwistedEdwards.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\TwistedEdwards">TwistedEdwards</abbr></a></em></dt>
<dd>Returns the affine point</dd><dt><a href="phpseclib3/Crypt/EC/Curves/Curve25519.html"><abbr title="phpseclib3\Crypt\EC\Curves\Curve25519">Curve25519</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/Curve448.html"><abbr title="phpseclib3\Crypt\EC\Curves\Curve448">Curve448</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/Ed25519.html#method_createRandomMultiplier">
<abbr title="phpseclib3\Crypt\EC\Curves\Ed25519">Ed25519</abbr>::createRandomMultiplier</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/Curves/Ed25519.html"><abbr title="phpseclib3\Crypt\EC\Curves\Ed25519">Ed25519</abbr></a></em></dt>
<dd>Creates a random scalar multiplier</dd><dt><a href="phpseclib3/Crypt/EC/Curves/Ed25519.html#method_convertToInternal">
<abbr title="phpseclib3\Crypt\EC\Curves\Ed25519">Ed25519</abbr>::convertToInternal</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/Curves/Ed25519.html"><abbr title="phpseclib3\Crypt\EC\Curves\Ed25519">Ed25519</abbr></a></em></dt>
<dd>Converts an affine point to an extended homogeneous coordinate</dd><dt><a href="phpseclib3/Crypt/EC/Curves/Ed448.html#method_createRandomMultiplier">
<abbr title="phpseclib3\Crypt\EC\Curves\Ed448">Ed448</abbr>::createRandomMultiplier</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/Curves/Ed448.html"><abbr title="phpseclib3\Crypt\EC\Curves\Ed448">Ed448</abbr></a></em></dt>
<dd>Creates a random scalar multiplier</dd><dt><a href="phpseclib3/Crypt/EC/Curves/Ed448.html#method_convertToInternal">
<abbr title="phpseclib3\Crypt\EC\Curves\Ed448">Ed448</abbr>::convertToInternal</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/Curves/Ed448.html"><abbr title="phpseclib3\Crypt\EC\Curves\Ed448">Ed448</abbr></a></em></dt>
<dd>Converts an affine point to an extended homogeneous coordinate</dd><dt><a href="phpseclib3/Crypt/EC/Formats/Keys/Common.html"><abbr title="phpseclib3\Crypt\EC\Formats\Keys\Common">Common</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Formats/Keys.html">phpseclib3\Crypt\EC\Formats\Keys</a></em></dt>
<dd>Generic EC Key Parsing Helper functions</dd><dt>$<a href="phpseclib3/Crypt/EC/Formats/Keys/Common.html#property_childOIDsLoaded">
<abbr title="phpseclib3\Crypt\EC\Formats\Keys\Common">Common</abbr>#childOIDsLoaded</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/Formats/Keys/Common.html"><abbr title="phpseclib3\Crypt\EC\Formats\Keys\Common">Common</abbr></a></em></dt>
<dd>Child OIDs loaded</dd><dt>$<a href="phpseclib3/Crypt/RC2.html#property_cipher_name_mcrypt">
<abbr title="phpseclib3\Crypt\RC2">RC2</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib3/Crypt/RC2.html"><abbr title="phpseclib3\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib3/Crypt/RC2.html#property_cfb_init_len">
<abbr title="phpseclib3\Crypt\RC2">RC2</abbr>#cfb_init_len</a> — <em>Property in class <a href="phpseclib3/Crypt/RC2.html"><abbr title="phpseclib3\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>Optimizing value while CFB-encrypting</dd><dt>$<a href="phpseclib3/Crypt/RC4.html#property_cipher_name_mcrypt">
<abbr title="phpseclib3\Crypt\RC4">RC4</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib3/Crypt/RC4.html"><abbr title="phpseclib3\Crypt\RC4">RC4</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib3/Crypt/RSA.html#property_configFile">
<abbr title="phpseclib3\Crypt\RSA">RSA</abbr>#configFile</a> — <em>Property in class <a href="phpseclib3/Crypt/RSA.html"><abbr title="phpseclib3\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>OpenSSL configuration file name.</dd><dt><a href="phpseclib3/Crypt/RSA.html#method_createKey">
<abbr title="phpseclib3\Crypt\RSA">RSA</abbr>::createKey</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA.html"><abbr title="phpseclib3\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Create a private key</dd><dt>$<a href="phpseclib3/Crypt/RSA/Formats/Keys/PKCS8.html#property_childOIDsLoaded">
<abbr title="phpseclib3\Crypt\RSA\Formats\Keys\PKCS8">PKCS8</abbr>#childOIDsLoaded</a> — <em>Property in class <a href="phpseclib3/Crypt/RSA/Formats/Keys/PKCS8.html"><abbr title="phpseclib3\Crypt\RSA\Formats\Keys\PKCS8">PKCS8</abbr></a></em></dt>
<dd>Child OIDs loaded</dd><dt>$<a href="phpseclib3/Crypt/RSA/Formats/Keys/PSS.html#property_childOIDsLoaded">
<abbr title="phpseclib3\Crypt\RSA\Formats\Keys\PSS">PSS</abbr>#childOIDsLoaded</a> — <em>Property in class <a href="phpseclib3/Crypt/RSA/Formats/Keys/PSS.html"><abbr title="phpseclib3\Crypt\RSA\Formats\Keys\PSS">PSS</abbr></a></em></dt>
<dd>Child OIDs loaded</dd><dt>$<a href="phpseclib3/Crypt/RSA/PrivateKey.html#property_coefficients">
<abbr title="phpseclib3\Crypt\RSA\PrivateKey">PrivateKey</abbr>#coefficients</a> — <em>Property in class <a href="phpseclib3/Crypt/RSA/PrivateKey.html"><abbr title="phpseclib3\Crypt\RSA\PrivateKey">PrivateKey</abbr></a></em></dt>
<dd>Coefficients for Chinese Remainder Theorem (ie. qInv)</dd><dt>$<a href="phpseclib3/Crypt/Rijndael.html#property_cipher_name_mcrypt">
<abbr title="phpseclib3\Crypt\Rijndael">Rijndael</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib3/Crypt/Rijndael.html"><abbr title="phpseclib3\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib3/Crypt/Salsa20.html#property_counter">
<abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr>#counter</a> — <em>Property in class <a href="phpseclib3/Crypt/Salsa20.html"><abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr></a></em></dt>
<dd>Counter</dd><dt><a href="phpseclib3/Crypt/Salsa20.html#method_createPoly1305Key">
<abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr>::createPoly1305Key</a>() — <em>Method in class <a href="phpseclib3/Crypt/Salsa20.html"><abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr></a></em></dt>
<dd>Creates a Poly1305 key using the method discussed in RFC8439</dd><dt>$<a href="phpseclib3/Crypt/TripleDES.html#property_cipher_name_mcrypt">
<abbr title="phpseclib3\Crypt\TripleDES">TripleDES</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib3/Crypt/TripleDES.html"><abbr title="phpseclib3\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib3/Crypt/TripleDES.html#property_cfb_init_len">
<abbr title="phpseclib3\Crypt\TripleDES">TripleDES</abbr>#cfb_init_len</a> — <em>Property in class <a href="phpseclib3/Crypt/TripleDES.html"><abbr title="phpseclib3\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>Optimizing value while CFB-encrypting</dd><dt>$<a href="phpseclib3/Crypt/Twofish.html#property_cipher_name_mcrypt">
<abbr title="phpseclib3\Crypt\Twofish">Twofish</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib3/Crypt/Twofish.html"><abbr title="phpseclib3\Crypt\Twofish">Twofish</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib3/Crypt/Twofish.html#property_cfb_init_len">
<abbr title="phpseclib3\Crypt\Twofish">Twofish</abbr>#cfb_init_len</a> — <em>Property in class <a href="phpseclib3/Crypt/Twofish.html"><abbr title="phpseclib3\Crypt\Twofish">Twofish</abbr></a></em></dt>
<dd>Optimizing value while CFB-encrypting</dd><dt><a href="phpseclib3/Exception/ConnectionClosedException.html"><abbr title="phpseclib3\Exception\ConnectionClosedException">ConnectionClosedException</abbr></a> — <em>Class in namespace <a href="phpseclib3/Exception.html">phpseclib3\Exception</a></em></dt>
<dd>ConnectionClosedException</dd><dt><a href="phpseclib3/File/ASN1.html#method_convert">
<abbr title="phpseclib3\File\ASN1">ASN1</abbr>::convert</a>() — <em>Method in class <a href="phpseclib3/File/ASN1.html"><abbr title="phpseclib3\File\ASN1">ASN1</abbr></a></em></dt>
<dd>String type conversion</dd><dt><a href="phpseclib3/File/ASN1/Maps/CPSuri.html"><abbr title="phpseclib3\File\ASN1\Maps\CPSuri">CPSuri</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>CPSuri</dd><dt><a href="phpseclib3/File/ASN1/Maps/CRLDistributionPoints.html"><abbr title="phpseclib3\File\ASN1\Maps\CRLDistributionPoints">CRLDistributionPoints</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>CRLDistributionPoints</dd><dt><a href="phpseclib3/File/ASN1/Maps/CRLNumber.html"><abbr title="phpseclib3\File\ASN1\Maps\CRLNumber">CRLNumber</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>CRLNumber</dd><dt><a href="phpseclib3/File/ASN1/Maps/CRLReason.html"><abbr title="phpseclib3\File\ASN1\Maps\CRLReason">CRLReason</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>CRLReason</dd><dt><a href="phpseclib3/File/ASN1/Maps/CertPolicyId.html"><abbr title="phpseclib3\File\ASN1\Maps\CertPolicyId">CertPolicyId</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>CertPolicyId</dd><dt><a href="phpseclib3/File/ASN1/Maps/Certificate.html"><abbr title="phpseclib3\File\ASN1\Maps\Certificate">Certificate</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>Certificate</dd><dt><a href="phpseclib3/File/ASN1/Maps/CertificateIssuer.html"><abbr title="phpseclib3\File\ASN1\Maps\CertificateIssuer">CertificateIssuer</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>CertificateIssuer</dd><dt><a href="phpseclib3/File/ASN1/Maps/CertificateList.html"><abbr title="phpseclib3\File\ASN1\Maps\CertificateList">CertificateList</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>CertificateList</dd><dt><a href="phpseclib3/File/ASN1/Maps/CertificatePolicies.html"><abbr title="phpseclib3\File\ASN1\Maps\CertificatePolicies">CertificatePolicies</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>CertificatePolicies</dd><dt><a href="phpseclib3/File/ASN1/Maps/CertificateSerialNumber.html"><abbr title="phpseclib3\File\ASN1\Maps\CertificateSerialNumber">CertificateSerialNumber</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>CertificateSerialNumber</dd><dt><a href="phpseclib3/File/ASN1/Maps/CertificationRequest.html"><abbr title="phpseclib3\File\ASN1\Maps\CertificationRequest">CertificationRequest</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>CertificationRequest</dd><dt><a href="phpseclib3/File/ASN1/Maps/CertificationRequestInfo.html"><abbr title="phpseclib3\File\ASN1\Maps\CertificationRequestInfo">CertificationRequestInfo</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>CertificationRequestInfo</dd><dt><a href="phpseclib3/File/ASN1/Maps/Characteristic_two.html"><abbr title="phpseclib3\File\ASN1\Maps\Characteristic_two">Characteristic_two</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>Characteristic_two</dd><dt><a href="phpseclib3/File/ASN1/Maps/CountryName.html"><abbr title="phpseclib3\File\ASN1\Maps\CountryName">CountryName</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>CountryName</dd><dt><a href="phpseclib3/File/ASN1/Maps/Curve.html"><abbr title="phpseclib3\File\ASN1\Maps\Curve">Curve</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>Curve</dd><dt><a href="phpseclib3/File/X509.html#method_computeKeyIdentifier">
<abbr title="phpseclib3\File\X509">X509</abbr>::computeKeyIdentifier</a>() — <em>Method in class <a href="phpseclib3/File/X509.html"><abbr title="phpseclib3\File\X509">X509</abbr></a></em></dt>
<dd>Compute a public key identifier.</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_compare">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::compare</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Compares two numbers.</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_createRecurringModuloFunction">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::createRecurringModuloFunction</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Create Recurring Modulo Function</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath.html#method_compare">
<abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr>::compare</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/BCMath.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr></a></em></dt>
<dd>Compares two numbers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/Engine.html#method_createRecurringModuloFunction">
<abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr>::createRecurringModuloFunction</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/Engine.html"><abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr></a></em></dt>
<dd>Create Recurring Modulo Function</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/GMP.html#method_compare">
<abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr>::compare</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/GMP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr></a></em></dt>
<dd>Compares two numbers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/GMP.html#method_createRecurringModuloFunction">
<abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr>::createRecurringModuloFunction</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/GMP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr></a></em></dt>
<dd>Create Recurring Modulo Function</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP.html#method_convertToObj">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr>::convertToObj</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr></a></em></dt>
<dd></dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP.html#method_compareHelper">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr>::compareHelper</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr></a></em></dt>
<dd></dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP32.html#method_compare">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr>::compare</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP32.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr></a></em></dt>
<dd>Compares two numbers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP64.html#method_compare">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr>::compare</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP64.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr></a></em></dt>
<dd>Compares two numbers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP/Reductions/Classic.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP\Reductions\Classic">Classic</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math/BigInteger/Engines/PHP/Reductions.html">phpseclib3\Math\BigInteger\Engines\PHP\Reductions</a></em></dt>
<dd>PHP Classic Modular Exponentiation Engine</dd><dt><a href="phpseclib3/Math/BinaryField/Integer.html#method_compare">
<abbr title="phpseclib3\Math\BinaryField\Integer">Integer</abbr>::compare</a>() — <em>Method in class <a href="phpseclib3/Math/BinaryField/Integer.html"><abbr title="phpseclib3\Math\BinaryField\Integer">Integer</abbr></a></em></dt>
<dd>Compares two numbers.</dd><dt><a href="phpseclib3/Math/PrimeField/Integer.html#method_checkInstance">
<abbr title="phpseclib3\Math\PrimeField\Integer">Integer</abbr>::checkInstance</a>() — <em>Method in class <a href="phpseclib3/Math/PrimeField/Integer.html"><abbr title="phpseclib3\Math\PrimeField\Integer">Integer</abbr></a></em></dt>
<dd>Tests a parameter to see if it's of the right instance</dd><dt><a href="phpseclib3/Math/PrimeField/Integer.html#method_compare">
<abbr title="phpseclib3\Math\PrimeField\Integer">Integer</abbr>::compare</a>() — <em>Method in class <a href="phpseclib3/Math/PrimeField/Integer.html"><abbr title="phpseclib3\Math\PrimeField\Integer">Integer</abbr></a></em></dt>
<dd>Compares two numbers.</dd><dt><a href="phpseclib3/Net/SFTP.html#method_clearStatCache">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::clearStatCache</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Clear the stat cache</dd><dt><a href="phpseclib3/Net/SFTP.html#method_chdir">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::chdir</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Changes the current directory</dd><dt><a href="phpseclib3/Net/SFTP.html#method_chown">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::chown</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Changes file or directory owner</dd><dt><a href="phpseclib3/Net/SFTP.html#method_chgrp">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::chgrp</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Changes file or directory group</dd><dt><a href="phpseclib3/Net/SFTP.html#method_chmod">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::chmod</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Set permissions on a file.</dd><dt>$<a href="phpseclib3/Net/SFTP/Stream.html#property_context">
<abbr title="phpseclib3\Net\SFTP\Stream">Stream</abbr>#context</a> — <em>Property in class <a href="phpseclib3/Net/SFTP/Stream.html"><abbr title="phpseclib3\Net\SFTP\Stream">Stream</abbr></a></em></dt>
<dd>Context resource</dd><dt>$<a href="phpseclib3/Net/SSH2.html#property_channel_status">
<abbr title="phpseclib3\Net\SSH2">SSH2</abbr>#channel_status</a> — <em>Property in class <a href="phpseclib3/Net/SSH2.html"><abbr title="phpseclib3\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Channel Status</dd><dt>$<a href="phpseclib3/Net/SSH2.html#property_curTimeout">
<abbr title="phpseclib3\Net\SSH2">SSH2</abbr>#curTimeout</a> — <em>Property in class <a href="phpseclib3/Net/SSH2.html"><abbr title="phpseclib3\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Current Timeout</dd> </dl><h2 id="letterD">D</h2>
<dl id="indexD"><dt><a href="phpseclib3/Crypt/Blowfish.html#method_decryptBlock">
<abbr title="phpseclib3\Crypt\Blowfish">Blowfish</abbr>::decryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/Blowfish.html"><abbr title="phpseclib3\Crypt\Blowfish">Blowfish</abbr></a></em></dt>
<dd>Decrypts a block</dd><dt><a href="phpseclib3/Crypt/ChaCha20.html#method_decrypt">
<abbr title="phpseclib3\Crypt\ChaCha20">ChaCha20</abbr>::decrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/ChaCha20.html"><abbr title="phpseclib3\Crypt\ChaCha20">ChaCha20</abbr></a></em></dt>
<dd>Decrypts a message.</dd><dt><a href="phpseclib3/Crypt/ChaCha20.html#method_doubleRound">
<abbr title="phpseclib3\Crypt\ChaCha20">ChaCha20</abbr>::doubleRound</a>() — <em>Method in class <a href="phpseclib3/Crypt/ChaCha20.html"><abbr title="phpseclib3\Crypt\ChaCha20">ChaCha20</abbr></a></em></dt>
<dd>The doubleround function</dd><dt>$<a href="phpseclib3/Crypt/Common/SymmetricKey.html#property_decryptIV">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>#decryptIV</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>A "sliding" Initialization Vector</dd><dt>$<a href="phpseclib3/Crypt/Common/SymmetricKey.html#property_debuffer">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>#debuffer</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Decryption buffer for CTR, OFB and CFB modes</dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_decrypt">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::decrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Decrypts a message.</dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_disablePadding">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::disablePadding</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Do not pad packets.</dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_disableContinuousBuffer">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::disableContinuousBuffer</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Treat consecutive packets as if they are a discontinuous buffer.</dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_decryptBlock">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::decryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Decrypts a block</dd><dt><a href="phpseclib3/Crypt/DES.html"><abbr title="phpseclib3\Crypt\DES">DES</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt.html">phpseclib3\Crypt</a></em></dt>
<dd>Pure-PHP implementation of DES.</dd><dt>$<a href="phpseclib3/Crypt/DES.html#property_des_rounds">
<abbr title="phpseclib3\Crypt\DES">DES</abbr>#des_rounds</a> — <em>Property in class <a href="phpseclib3/Crypt/DES.html"><abbr title="phpseclib3\Crypt\DES">DES</abbr></a></em></dt>
<dd>Switch for DES/3DES encryption</dd><dt><a href="phpseclib3/Crypt/DES.html#method_decryptBlock">
<abbr title="phpseclib3\Crypt\DES">DES</abbr>::decryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/DES.html"><abbr title="phpseclib3\Crypt\DES">DES</abbr></a></em></dt>
<dd>Decrypts a block</dd><dt><a href="phpseclib3/Crypt/DH.html"><abbr title="phpseclib3\Crypt\DH">DH</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt.html">phpseclib3\Crypt</a></em></dt>
<dd>Pure-PHP (EC)DH implementation</dd><dt><a href="phpseclib3/Crypt/DSA.html"><abbr title="phpseclib3\Crypt\DSA">DSA</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt.html">phpseclib3\Crypt</a></em></dt>
<dd>Pure-PHP FIPS 186-4 compliant implementation of DSA.</dd><dt>$<a href="phpseclib3/Crypt/EC/BaseCurves/Base.html#property_doubles">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr>#doubles</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/BaseCurves/Base.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr></a></em></dt>
<dd>Doubles</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html#method_doublePoint">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr>::doublePoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr></a></em></dt>
<dd>Doubles a point on a curve</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html#method_derivePoint">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr>::derivePoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr></a></em></dt>
<dd>Returns the X coordinate and the derived Y coordinate</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/KoblitzPrime.html#method_doublePointHelper">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\KoblitzPrime">KoblitzPrime</abbr>::doublePointHelper</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/KoblitzPrime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\KoblitzPrime">KoblitzPrime</abbr></a></em></dt>
<dd>Returns the numerator and denominator of the slope</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html#method_doublePointHelper">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr>::doublePointHelper</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr></a></em></dt>
<dd>Returns the numerator and denominator of the slope</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html#method_doublePoint">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr>::doublePoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr></a></em></dt>
<dd>Doubles a point on a curve</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html#method_derivePoint">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr>::derivePoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr></a></em></dt>
<dd>Returns the X coordinate and the derived Y coordinate</dd><dt>$<a href="phpseclib3/Crypt/EC/BaseCurves/TwistedEdwards.html#property_d">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\TwistedEdwards">TwistedEdwards</abbr>#d</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/BaseCurves/TwistedEdwards.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\TwistedEdwards">TwistedEdwards</abbr></a></em></dt>
<dd>Cofficient for x^2*y^2</dd><dt><a href="phpseclib3/Crypt/EC/Curves/Ed25519.html#method_doublePoint">
<abbr title="phpseclib3\Crypt\EC\Curves\Ed25519">Ed25519</abbr>::doublePoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/Curves/Ed25519.html"><abbr title="phpseclib3\Crypt\EC\Curves\Ed25519">Ed25519</abbr></a></em></dt>
<dd>Doubles a point on a curve</dd><dt><a href="phpseclib3/Crypt/EC/Curves/Ed448.html#method_doublePoint">
<abbr title="phpseclib3\Crypt\EC\Curves\Ed448">Ed448</abbr>::doublePoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/Curves/Ed448.html"><abbr title="phpseclib3\Crypt\EC\Curves\Ed448">Ed448</abbr></a></em></dt>
<dd>Doubles a point on a curve</dd><dt><a href="phpseclib3/Crypt/EC/Formats/Keys/XML.html#method_disableRFC4050Syntax">
<abbr title="phpseclib3\Crypt\EC\Formats\Keys\XML">XML</abbr>::disableRFC4050Syntax</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/Formats/Keys/XML.html"><abbr title="phpseclib3\Crypt\EC\Formats\Keys\XML">XML</abbr></a></em></dt>
<dd>Uses the XML syntax specified in https://www.w3.org/TR/xmldsig-core/#sec-ECParameters</dd><dt>$<a href="phpseclib3/Crypt/EC/PrivateKey.html#property_dA">
<abbr title="phpseclib3\Crypt\EC\PrivateKey">PrivateKey</abbr>#dA</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/PrivateKey.html"><abbr title="phpseclib3\Crypt\EC\PrivateKey">PrivateKey</abbr></a></em></dt>
<dd>Private Key dA</dd><dt><a href="phpseclib3/Crypt/RC2.html#method_decrypt">
<abbr title="phpseclib3\Crypt\RC2">RC2</abbr>::decrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/RC2.html"><abbr title="phpseclib3\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>Decrypts a message.</dd><dt><a href="phpseclib3/Crypt/RC2.html#method_decryptBlock">
<abbr title="phpseclib3\Crypt\RC2">RC2</abbr>::decryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/RC2.html"><abbr title="phpseclib3\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>Decrypts a block</dd><dt><a href="phpseclib3/Crypt/RC4.html#method_decrypt">
<abbr title="phpseclib3\Crypt\RC4">RC4</abbr>::decrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/RC4.html"><abbr title="phpseclib3\Crypt\RC4">RC4</abbr></a></em></dt>
<dd>Decrypts a message.</dd><dt><a href="phpseclib3/Crypt/RC4.html#method_decryptBlock">
<abbr title="phpseclib3\Crypt\RC4">RC4</abbr>::decryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/RC4.html"><abbr title="phpseclib3\Crypt\RC4">RC4</abbr></a></em></dt>
<dd>Decrypts a block</dd><dt><a href="phpseclib3/Crypt/RSA.html#method_disableBlinding">
<abbr title="phpseclib3\Crypt\RSA">RSA</abbr>::disableBlinding</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA.html"><abbr title="phpseclib3\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Disable RSA Blinding</dd><dt><a href="phpseclib3/Crypt/RSA/PrivateKey.html#method_decrypt">
<abbr title="phpseclib3\Crypt\RSA\PrivateKey">PrivateKey</abbr>::decrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA/PrivateKey.html"><abbr title="phpseclib3\Crypt\RSA\PrivateKey">PrivateKey</abbr></a></em></dt>
<dd>Decryption</dd><dt><a href="phpseclib3/Crypt/Rijndael.html#method_decryptBlock">
<abbr title="phpseclib3\Crypt\Rijndael">Rijndael</abbr>::decryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/Rijndael.html"><abbr title="phpseclib3\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>Decrypts a block</dd><dt><a href="phpseclib3/Crypt/Rijndael.html#method_decrypt">
<abbr title="phpseclib3\Crypt\Rijndael">Rijndael</abbr>::decrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/Rijndael.html"><abbr title="phpseclib3\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>Decrypts a message.</dd><dt>$<a href="phpseclib3/Crypt/Salsa20.html#property_debuffer">
<abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr>#debuffer</a> — <em>Property in class <a href="phpseclib3/Crypt/Salsa20.html"><abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr></a></em></dt>
<dd>Decryption buffer for continuous mode</dd><dt><a href="phpseclib3/Crypt/Salsa20.html#method_decrypt">
<abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr>::decrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/Salsa20.html"><abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr></a></em></dt>
<dd>Decrypts a message.</dd><dt><a href="phpseclib3/Crypt/Salsa20.html#method_decryptBlock">
<abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr>::decryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/Salsa20.html"><abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr></a></em></dt>
<dd>Decrypts a block</dd><dt><a href="phpseclib3/Crypt/Salsa20.html#method_doubleRound">
<abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr>::doubleRound</a>() — <em>Method in class <a href="phpseclib3/Crypt/Salsa20.html"><abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr></a></em></dt>
<dd>The doubleround function</dd><dt><a href="phpseclib3/Crypt/TripleDES.html#method_decrypt">
<abbr title="phpseclib3\Crypt\TripleDES">TripleDES</abbr>::decrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/TripleDES.html"><abbr title="phpseclib3\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>Decrypts a message.</dd><dt><a href="phpseclib3/Crypt/TripleDES.html#method_disableContinuousBuffer">
<abbr title="phpseclib3\Crypt\TripleDES">TripleDES</abbr>::disableContinuousBuffer</a>() — <em>Method in class <a href="phpseclib3/Crypt/TripleDES.html"><abbr title="phpseclib3\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>Treat consecutive packets as if they are a discontinuous buffer.</dd><dt><a href="phpseclib3/Crypt/Twofish.html#method_decryptBlock">
<abbr title="phpseclib3\Crypt\Twofish">Twofish</abbr>::decryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/Twofish.html"><abbr title="phpseclib3\Crypt\Twofish">Twofish</abbr></a></em></dt>
<dd>Decrypts a block</dd><dt><a href="phpseclib3/File/ASN1.html#method_decodeBER">
<abbr title="phpseclib3\File\ASN1">ASN1</abbr>::decodeBER</a>() — <em>Method in class <a href="phpseclib3/File/ASN1.html"><abbr title="phpseclib3\File\ASN1">ASN1</abbr></a></em></dt>
<dd>Parse BER-encoding</dd><dt><a href="phpseclib3/File/ASN1.html#method_decodeLength">
<abbr title="phpseclib3\File\ASN1">ASN1</abbr>::decodeLength</a>() — <em>Method in class <a href="phpseclib3/File/ASN1.html"><abbr title="phpseclib3\File\ASN1">ASN1</abbr></a></em></dt>
<dd>DER-decode the length</dd><dt><a href="phpseclib3/File/ASN1.html#method_decodeOID">
<abbr title="phpseclib3\File\ASN1">ASN1</abbr>::decodeOID</a>() — <em>Method in class <a href="phpseclib3/File/ASN1.html"><abbr title="phpseclib3\File\ASN1">ASN1</abbr></a></em></dt>
<dd>BER-decode the OID</dd><dt><a href="phpseclib3/File/ASN1/Maps/DHParameter.html"><abbr title="phpseclib3\File\ASN1\Maps\DHParameter">DHParameter</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>DHParameter</dd><dt><a href="phpseclib3/File/ASN1/Maps/DSAParams.html"><abbr title="phpseclib3\File\ASN1\Maps\DSAParams">DSAParams</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>DSAParams</dd><dt><a href="phpseclib3/File/ASN1/Maps/DSAPrivateKey.html"><abbr title="phpseclib3\File\ASN1\Maps\DSAPrivateKey">DSAPrivateKey</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>DSAPrivateKey</dd><dt><a href="phpseclib3/File/ASN1/Maps/DSAPublicKey.html"><abbr title="phpseclib3\File\ASN1\Maps\DSAPublicKey">DSAPublicKey</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>DSAPublicKey</dd><dt><a href="phpseclib3/File/ASN1/Maps/DigestInfo.html"><abbr title="phpseclib3\File\ASN1\Maps\DigestInfo">DigestInfo</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>DigestInfo</dd><dt><a href="phpseclib3/File/ASN1/Maps/DirectoryString.html"><abbr title="phpseclib3\File\ASN1\Maps\DirectoryString">DirectoryString</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>DirectoryString</dd><dt><a href="phpseclib3/File/ASN1/Maps/DisplayText.html"><abbr title="phpseclib3\File\ASN1\Maps\DisplayText">DisplayText</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>DisplayText</dd><dt><a href="phpseclib3/File/ASN1/Maps/DistributionPoint.html"><abbr title="phpseclib3\File\ASN1\Maps\DistributionPoint">DistributionPoint</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>DistributionPoint</dd><dt><a href="phpseclib3/File/ASN1/Maps/DistributionPointName.html"><abbr title="phpseclib3\File\ASN1\Maps\DistributionPointName">DistributionPointName</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>DistributionPointName</dd><dt><a href="phpseclib3/File/ASN1/Maps/DssSigValue.html"><abbr title="phpseclib3\File\ASN1\Maps\DssSigValue">DssSigValue</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>DssSigValue</dd><dt><a href="phpseclib3/File/X509.html#method_disableURLFetch">
<abbr title="phpseclib3\File\X509">X509</abbr>::disableURLFetch</a>() — <em>Method in class <a href="phpseclib3/File/X509.html"><abbr title="phpseclib3\File\X509">X509</abbr></a></em></dt>
<dd>Prevents URIs from being automatically retrieved</dd><dt><a href="phpseclib3/File/X509.html#method_decodeIP">
<abbr title="phpseclib3\File\X509">X509</abbr>::decodeIP</a>() — <em>Method in class <a href="phpseclib3/File/X509.html"><abbr title="phpseclib3\File\X509">X509</abbr></a></em></dt>
<dd>Decodes an IP address</dd><dt><a href="phpseclib3/File/X509.html#method_decodeNameConstraintIP">
<abbr title="phpseclib3\File\X509">X509</abbr>::decodeNameConstraintIP</a>() — <em>Method in class <a href="phpseclib3/File/X509.html"><abbr title="phpseclib3\File\X509">X509</abbr></a></em></dt>
<dd>Decodes an IP address in a name constraints extension</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_divide">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::divide</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Divides two BigIntegers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath.html#method_divide">
<abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr>::divide</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/BCMath.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr></a></em></dt>
<dd>Divides two BigIntegers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath/DefaultEngine.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath\DefaultEngine">DefaultEngine</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math/BigInteger/Engines/BCMath.html">phpseclib3\Math\BigInteger\Engines\BCMath</a></em></dt>
<dd>PHP Default Modular Exponentiation Engine</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/GMP.html#method_divide">
<abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr>::divide</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/GMP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr></a></em></dt>
<dd>Divides two BigIntegers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/GMP/DefaultEngine.html"><abbr title="phpseclib3\Math\BigInteger\Engines\GMP\DefaultEngine">DefaultEngine</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math/BigInteger/Engines/GMP.html">phpseclib3\Math\BigInteger\Engines\GMP</a></em></dt>
<dd>GMP Modular Exponentiation Engine</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP.html#method_divideHelper">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr>::divideHelper</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP">PHP</abbr></a></em></dt>
<dd>Divides two BigIntegers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP32.html#method_divide">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr>::divide</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP32.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr></a></em></dt>
<dd>Divides two BigIntegers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP64.html#method_divide">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr>::divide</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP64.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr></a></em></dt>
<dd>Divides two BigIntegers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP/DefaultEngine.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP\DefaultEngine">DefaultEngine</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math/BigInteger/Engines/PHP.html">phpseclib3\Math\BigInteger\Engines\PHP</a></em></dt>
<dd>PHP Default Modular Exponentiation Engine</dd><dt><a href="phpseclib3/Math/BinaryField/Integer.html#method_divide">
<abbr title="phpseclib3\Math\BinaryField\Integer">Integer</abbr>::divide</a>() — <em>Method in class <a href="phpseclib3/Math/BinaryField/Integer.html"><abbr title="phpseclib3\Math\BinaryField\Integer">Integer</abbr></a></em></dt>
<dd>Divides two PrimeFieldIntegers.</dd><dt><a href="phpseclib3/Math/PrimeField/Integer.html#method_divide">
<abbr title="phpseclib3\Math\PrimeField\Integer">Integer</abbr>::divide</a>() — <em>Method in class <a href="phpseclib3/Math/PrimeField/Integer.html"><abbr title="phpseclib3\Math\PrimeField\Integer">Integer</abbr></a></em></dt>
<dd>Divides two PrimeFieldIntegers.</dd><dt><a href="phpseclib3/Net/SFTP.html#method_disableStatCache">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::disableStatCache</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Disable the stat cache</dd><dt><a href="phpseclib3/Net/SFTP.html#method_disablePathCanonicalization">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::disablePathCanonicalization</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Enable path canonicalization</dd><dt><a href="phpseclib3/Net/SFTP.html#method_delete">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::delete</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Deletes a file on the SFTP server.</dd><dt><a href="phpseclib3/Net/SFTP.html#method_disconnect_helper">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::disconnect_helper</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Disconnect</dd><dt><a href="phpseclib3/Net/SFTP.html#method_disableDatePreservation">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::disableDatePreservation</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Disable Date Preservation</dd><dt><a href="phpseclib3/Net/SSH2.html#method_disconnect">
<abbr title="phpseclib3\Net\SSH2">SSH2</abbr>::disconnect</a>() — <em>Method in class <a href="phpseclib3/Net/SSH2.html"><abbr title="phpseclib3\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Disconnect</dd><dt><a href="phpseclib3/Net/SSH2.html#method_disableQuietMode">
<abbr title="phpseclib3\Net\SSH2">SSH2</abbr>::disableQuietMode</a>() — <em>Method in class <a href="phpseclib3/Net/SSH2.html"><abbr title="phpseclib3\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Disable Quiet Mode</dd><dt><a href="phpseclib3/Net/SSH2.html#method_disablePTY">
<abbr title="phpseclib3\Net\SSH2">SSH2</abbr>::disablePTY</a>() — <em>Method in class <a href="phpseclib3/Net/SSH2.html"><abbr title="phpseclib3\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Disable request-pty when using exec()</dd><dt><a href="phpseclib3/Net/SSH2.html#method_disconnect_helper">
<abbr title="phpseclib3\Net\SSH2">SSH2</abbr>::disconnect_helper</a>() — <em>Method in class <a href="phpseclib3/Net/SSH2.html"><abbr title="phpseclib3\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Disconnect</dd><dt><a href="phpseclib3/Net/SSH2.html#method_define_array">
<abbr title="phpseclib3\Net\SSH2">SSH2</abbr>::define_array</a>() — <em>Method in class <a href="phpseclib3/Net/SSH2.html"><abbr title="phpseclib3\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Define Array</dd> </dl><h2 id="letterE">E</h2>
<dl id="indexE"><dt><a href="phpseclib3/Crypt/Blowfish.html#method_encryptBlock">
<abbr title="phpseclib3\Crypt\Blowfish">Blowfish</abbr>::encryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/Blowfish.html"><abbr title="phpseclib3\Crypt\Blowfish">Blowfish</abbr></a></em></dt>
<dd>Encrypts a block</dd><dt><a href="phpseclib3/Crypt/ChaCha20.html#method_encrypt">
<abbr title="phpseclib3\Crypt\ChaCha20">ChaCha20</abbr>::encrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/ChaCha20.html"><abbr title="phpseclib3\Crypt\ChaCha20">ChaCha20</abbr></a></em></dt>
<dd>Encrypts a message.</dd><dt>$<a href="phpseclib3/Crypt/Common/AsymmetricKey.html#property_engines">
<abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr>#engines</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/AsymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr></a></em></dt>
<dd>Available Engines</dd><dt><a href="phpseclib3/Crypt/Common/Formats/Keys/PKCS8.html#method_extractEncryptionAlgorithm">
<abbr title="phpseclib3\Crypt\Common\Formats\Keys\PKCS8">PKCS8</abbr>::extractEncryptionAlgorithm</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/Formats/Keys/PKCS8.html"><abbr title="phpseclib3\Crypt\Common\Formats\Keys\PKCS8">PKCS8</abbr></a></em></dt>
<dd>Returns the encryption parameters used by the key</dd><dt>$<a href="phpseclib3/Crypt/Common/SymmetricKey.html#property_encryptIV">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>#encryptIV</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>A "sliding" Initialization Vector</dd><dt>$<a href="phpseclib3/Crypt/Common/SymmetricKey.html#property_enbuffer">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>#enbuffer</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Encryption buffer for CTR, OFB and CFB modes</dd><dt>$<a href="phpseclib3/Crypt/Common/SymmetricKey.html#property_engine">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>#engine</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Holds which crypt engine internaly should be use,
which will be determined automatically on __construct()</dd><dt>$<a href="phpseclib3/Crypt/Common/SymmetricKey.html#property_explicit_key_length">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>#explicit_key_length</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Has the key length explicitly been set or should it be derived from the key, itself?</dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_enablePoly1305">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::enablePoly1305</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Enables Poly1305 mode.</dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_encrypt">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::encrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Encrypts a message.</dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_enablePadding">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::enablePadding</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Pad "packets".</dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_enableContinuousBuffer">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::enableContinuousBuffer</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Treat consecutive "packets" as if they are a continuous buffer.</dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_encryptBlock">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::encryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Encrypts a block</dd><dt><a href="phpseclib3/Crypt/DES.html#method_encryptBlock">
<abbr title="phpseclib3\Crypt\DES">DES</abbr>::encryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/DES.html"><abbr title="phpseclib3\Crypt\DES">DES</abbr></a></em></dt>
<dd>Encrypts a block</dd><dt><a href="phpseclib3/Crypt/EC.html"><abbr title="phpseclib3\Crypt\EC">EC</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt.html">phpseclib3\Crypt</a></em></dt>
<dd>Pure-PHP implementation of EC.</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/KoblitzPrime.html#method_extendedGCD">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\KoblitzPrime">KoblitzPrime</abbr>::extendedGCD</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/KoblitzPrime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\KoblitzPrime">KoblitzPrime</abbr></a></em></dt>
<dd>Calculates the parameters needed from the Euclidean algorithm as discussed at
http://diamond.boisestate.edu/~liljanab/MATH308/GuideToECC.pdf#page=148</dd><dt>$<a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html#property_eight">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr>#eight</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr></a></em></dt>
<dd>The number eight over the specified finite field</dd><dt><a href="phpseclib3/Crypt/EC/Curves/Ed25519.html"><abbr title="phpseclib3\Crypt\EC\Curves\Ed25519">Ed25519</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/Ed25519.html#method_extractSecret">
<abbr title="phpseclib3\Crypt\EC\Curves\Ed25519">Ed25519</abbr>::extractSecret</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/Curves/Ed25519.html"><abbr title="phpseclib3\Crypt\EC\Curves\Ed25519">Ed25519</abbr></a></em></dt>
<dd>Extract Secret Scalar</dd><dt><a href="phpseclib3/Crypt/EC/Curves/Ed25519.html#method_encodePoint">
<abbr title="phpseclib3\Crypt\EC\Curves\Ed25519">Ed25519</abbr>::encodePoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/Curves/Ed25519.html"><abbr title="phpseclib3\Crypt\EC\Curves\Ed25519">Ed25519</abbr></a></em></dt>
<dd>Encode a point as a string</dd><dt><a href="phpseclib3/Crypt/EC/Curves/Ed448.html"><abbr title="phpseclib3\Crypt\EC\Curves\Ed448">Ed448</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/EC/Curves.html">phpseclib3\Crypt\EC\Curves</a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/EC/Curves/Ed448.html#method_extractSecret">
<abbr title="phpseclib3\Crypt\EC\Curves\Ed448">Ed448</abbr>::extractSecret</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/Curves/Ed448.html"><abbr title="phpseclib3\Crypt\EC\Curves\Ed448">Ed448</abbr></a></em></dt>
<dd>Extract Secret Scalar</dd><dt><a href="phpseclib3/Crypt/EC/Curves/Ed448.html#method_encodePoint">
<abbr title="phpseclib3\Crypt\EC\Curves\Ed448">Ed448</abbr>::encodePoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/Curves/Ed448.html"><abbr title="phpseclib3\Crypt\EC\Curves\Ed448">Ed448</abbr></a></em></dt>
<dd>Encode a point as a string</dd><dt><a href="phpseclib3/Crypt/EC/Formats/Keys/Common.html#method_extractPoint">
<abbr title="phpseclib3\Crypt\EC\Formats\Keys\Common">Common</abbr>::extractPoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/Formats/Keys/Common.html"><abbr title="phpseclib3\Crypt\EC\Formats\Keys\Common">Common</abbr></a></em></dt>
<dd>Extract points from a string</dd><dt><a href="phpseclib3/Crypt/EC/Formats/Keys/XML.html#method_enableRFC4050Syntax">
<abbr title="phpseclib3\Crypt\EC\Formats\Keys\XML">XML</abbr>::enableRFC4050Syntax</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/Formats/Keys/XML.html"><abbr title="phpseclib3\Crypt\EC\Formats\Keys\XML">XML</abbr></a></em></dt>
<dd>Uses the XML syntax specified in https://tools.ietf.org/html/rfc4050</dd><dt><a href="phpseclib3/Crypt/RC2.html#method_encrypt">
<abbr title="phpseclib3\Crypt\RC2">RC2</abbr>::encrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/RC2.html"><abbr title="phpseclib3\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>Encrypts a message.</dd><dt><a href="phpseclib3/Crypt/RC2.html#method_encryptBlock">
<abbr title="phpseclib3\Crypt\RC2">RC2</abbr>::encryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/RC2.html"><abbr title="phpseclib3\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>Encrypts a block</dd><dt><a href="phpseclib3/Crypt/RC4.html#method_encrypt">
<abbr title="phpseclib3\Crypt\RC4">RC4</abbr>::encrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/RC4.html"><abbr title="phpseclib3\Crypt\RC4">RC4</abbr></a></em></dt>
<dd>Encrypts a message.</dd><dt><a href="phpseclib3/Crypt/RC4.html#method_encryptBlock">
<abbr title="phpseclib3\Crypt\RC4">RC4</abbr>::encryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/RC4.html"><abbr title="phpseclib3\Crypt\RC4">RC4</abbr></a></em></dt>
<dd>Encrypts a block</dd><dt>$<a href="phpseclib3/Crypt/RSA.html#property_encryptionPadding">
<abbr title="phpseclib3\Crypt\RSA">RSA</abbr>#encryptionPadding</a> — <em>Property in class <a href="phpseclib3/Crypt/RSA.html"><abbr title="phpseclib3\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Encryption padding mode</dd><dt>$<a href="phpseclib3/Crypt/RSA.html#property_exponent">
<abbr title="phpseclib3\Crypt\RSA">RSA</abbr>#exponent</a> — <em>Property in class <a href="phpseclib3/Crypt/RSA.html"><abbr title="phpseclib3\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Exponent (ie. e or d)</dd><dt>$<a href="phpseclib3/Crypt/RSA.html#property_enableBlinding">
<abbr title="phpseclib3\Crypt\RSA">RSA</abbr>#enableBlinding</a> — <em>Property in class <a href="phpseclib3/Crypt/RSA.html"><abbr title="phpseclib3\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Enable Blinding?</dd><dt><a href="phpseclib3/Crypt/RSA.html#method_emsa_pkcs1_v1_5_encode">
<abbr title="phpseclib3\Crypt\RSA">RSA</abbr>::emsa_pkcs1_v1_5_encode</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA.html"><abbr title="phpseclib3\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>EMSA-PKCS1-V1_5-ENCODE</dd><dt><a href="phpseclib3/Crypt/RSA.html#method_emsa_pkcs1_v1_5_encode_without_null">
<abbr title="phpseclib3\Crypt\RSA">RSA</abbr>::emsa_pkcs1_v1_5_encode_without_null</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA.html"><abbr title="phpseclib3\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>EMSA-PKCS1-V1_5-ENCODE (without NULL)</dd><dt><a href="phpseclib3/Crypt/RSA.html#method_enableBlinding">
<abbr title="phpseclib3\Crypt\RSA">RSA</abbr>::enableBlinding</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA.html"><abbr title="phpseclib3\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Enable RSA Blinding</dd><dt>$<a href="phpseclib3/Crypt/RSA/PrivateKey.html#property_exponents">
<abbr title="phpseclib3\Crypt\RSA\PrivateKey">PrivateKey</abbr>#exponents</a> — <em>Property in class <a href="phpseclib3/Crypt/RSA/PrivateKey.html"><abbr title="phpseclib3\Crypt\RSA\PrivateKey">PrivateKey</abbr></a></em></dt>
<dd>Exponents for Chinese Remainder Theorem (ie. dP and dQ)</dd><dt><a href="phpseclib3/Crypt/RSA/PrivateKey.html#method_exponentiate">
<abbr title="phpseclib3\Crypt\RSA\PrivateKey">PrivateKey</abbr>::exponentiate</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA/PrivateKey.html"><abbr title="phpseclib3\Crypt\RSA\PrivateKey">PrivateKey</abbr></a></em></dt>
<dd>Exponentiate</dd><dt><a href="phpseclib3/Crypt/RSA/PublicKey.html#method_encrypt">
<abbr title="phpseclib3\Crypt\RSA\PublicKey">PublicKey</abbr>::encrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA/PublicKey.html"><abbr title="phpseclib3\Crypt\RSA\PublicKey">PublicKey</abbr></a></em></dt>
<dd>Encryption</dd><dt><a href="phpseclib3/Crypt/Rijndael.html#method_encryptBlock">
<abbr title="phpseclib3\Crypt\Rijndael">Rijndael</abbr>::encryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/Rijndael.html"><abbr title="phpseclib3\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>Encrypts a block</dd><dt><a href="phpseclib3/Crypt/Rijndael.html#method_encrypt">
<abbr title="phpseclib3\Crypt\Rijndael">Rijndael</abbr>::encrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/Rijndael.html"><abbr title="phpseclib3\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>Encrypts a message.</dd><dt>$<a href="phpseclib3/Crypt/Salsa20.html#property_enbuffer">
<abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr>#enbuffer</a> — <em>Property in class <a href="phpseclib3/Crypt/Salsa20.html"><abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr></a></em></dt>
<dd>Encryption buffer for continuous mode</dd><dt><a href="phpseclib3/Crypt/Salsa20.html#method_encrypt">
<abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr>::encrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/Salsa20.html"><abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr></a></em></dt>
<dd>Encrypts a message.</dd><dt><a href="phpseclib3/Crypt/Salsa20.html#method_encryptBlock">
<abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr>::encryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/Salsa20.html"><abbr title="phpseclib3\Crypt\Salsa20">Salsa20</abbr></a></em></dt>
<dd>Encrypts a block</dd><dt><a href="phpseclib3/Crypt/TripleDES.html#method_encrypt">
<abbr title="phpseclib3\Crypt\TripleDES">TripleDES</abbr>::encrypt</a>() — <em>Method in class <a href="phpseclib3/Crypt/TripleDES.html"><abbr title="phpseclib3\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>Encrypts a message.</dd><dt><a href="phpseclib3/Crypt/TripleDES.html#method_enableContinuousBuffer">
<abbr title="phpseclib3\Crypt\TripleDES">TripleDES</abbr>::enableContinuousBuffer</a>() — <em>Method in class <a href="phpseclib3/Crypt/TripleDES.html"><abbr title="phpseclib3\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>Treat consecutive "packets" as if they are a continuous buffer.</dd><dt><a href="phpseclib3/Crypt/Twofish.html#method_encryptBlock">
<abbr title="phpseclib3\Crypt\Twofish">Twofish</abbr>::encryptBlock</a>() — <em>Method in class <a href="phpseclib3/Crypt/Twofish.html"><abbr title="phpseclib3\Crypt\Twofish">Twofish</abbr></a></em></dt>
<dd>Encrypts a block</dd><dt><a href="phpseclib3/File/ASN1.html#method_encodeDER">
<abbr title="phpseclib3\File\ASN1">ASN1</abbr>::encodeDER</a>() — <em>Method in class <a href="phpseclib3/File/ASN1.html"><abbr title="phpseclib3\File\ASN1">ASN1</abbr></a></em></dt>
<dd>ASN.1 Encode</dd><dt><a href="phpseclib3/File/ASN1.html#method_encodeOID">
<abbr title="phpseclib3\File\ASN1">ASN1</abbr>::encodeOID</a>() — <em>Method in class <a href="phpseclib3/File/ASN1.html"><abbr title="phpseclib3\File\ASN1">ASN1</abbr></a></em></dt>
<dd>DER-encode the OID</dd><dt><a href="phpseclib3/File/ASN1.html#method_extractBER">
<abbr title="phpseclib3\File\ASN1">ASN1</abbr>::extractBER</a>() — <em>Method in class <a href="phpseclib3/File/ASN1.html"><abbr title="phpseclib3\File\ASN1">ASN1</abbr></a></em></dt>
<dd>Extract raw BER from Base64 encoding</dd><dt><a href="phpseclib3/File/ASN1.html#method_encodeLength">
<abbr title="phpseclib3\File\ASN1">ASN1</abbr>::encodeLength</a>() — <em>Method in class <a href="phpseclib3/File/ASN1.html"><abbr title="phpseclib3\File\ASN1">ASN1</abbr></a></em></dt>
<dd>DER-encode the length</dd><dt><a href="phpseclib3/File/ASN1/Element.html"><abbr title="phpseclib3\File\ASN1\Element">Element</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1.html">phpseclib3\File\ASN1</a></em></dt>
<dd>ASN.1 Raw Element</dd><dt>$<a href="phpseclib3/File/ASN1/Element.html#property_element">
<abbr title="phpseclib3\File\ASN1\Element">Element</abbr>#element</a> — <em>Property in class <a href="phpseclib3/File/ASN1/Element.html"><abbr title="phpseclib3\File\ASN1\Element">Element</abbr></a></em></dt>
<dd>Raw element value</dd><dt><a href="phpseclib3/File/ASN1/Maps/ECParameters.html"><abbr title="phpseclib3\File\ASN1\Maps\ECParameters">ECParameters</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>ECParameters</dd><dt><a href="phpseclib3/File/ASN1/Maps/ECPoint.html"><abbr title="phpseclib3\File\ASN1\Maps\ECPoint">ECPoint</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>ECPoint</dd><dt><a href="phpseclib3/File/ASN1/Maps/ECPrivateKey.html"><abbr title="phpseclib3\File\ASN1\Maps\ECPrivateKey">ECPrivateKey</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>ECPrivateKey</dd><dt><a href="phpseclib3/File/ASN1/Maps/EDIPartyName.html"><abbr title="phpseclib3\File\ASN1\Maps\EDIPartyName">EDIPartyName</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>EDIPartyName</dd><dt><a href="phpseclib3/File/ASN1/Maps/EcdsaSigValue.html"><abbr title="phpseclib3\File\ASN1\Maps\EcdsaSigValue">EcdsaSigValue</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>EcdsaSigValue</dd><dt><a href="phpseclib3/File/ASN1/Maps/EncryptedData.html"><abbr title="phpseclib3\File\ASN1\Maps\EncryptedData">EncryptedData</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>EncryptedData</dd><dt><a href="phpseclib3/File/ASN1/Maps/EncryptedPrivateKeyInfo.html"><abbr title="phpseclib3\File\ASN1\Maps\EncryptedPrivateKeyInfo">EncryptedPrivateKeyInfo</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>EncryptedPrivateKeyInfo</dd><dt><a href="phpseclib3/File/ASN1/Maps/ExtKeyUsageSyntax.html"><abbr title="phpseclib3\File\ASN1\Maps\ExtKeyUsageSyntax">ExtKeyUsageSyntax</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>ExtKeyUsageSyntax</dd><dt><a href="phpseclib3/File/ASN1/Maps/Extension.html"><abbr title="phpseclib3\File\ASN1\Maps\Extension">Extension</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>Extension</dd><dt><a href="phpseclib3/File/ASN1/Maps/ExtensionAttribute.html"><abbr title="phpseclib3\File\ASN1\Maps\ExtensionAttribute">ExtensionAttribute</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>ExtensionAttribute</dd><dt><a href="phpseclib3/File/ASN1/Maps/ExtensionAttributes.html"><abbr title="phpseclib3\File\ASN1\Maps\ExtensionAttributes">ExtensionAttributes</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>ExtensionAttributes</dd><dt><a href="phpseclib3/File/ASN1/Maps/Extensions.html"><abbr title="phpseclib3\File\ASN1\Maps\Extensions">Extensions</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>Extensions</dd><dt><a href="phpseclib3/File/X509.html#method_enableURLFetch">
<abbr title="phpseclib3\File\X509">X509</abbr>::enableURLFetch</a>() — <em>Method in class <a href="phpseclib3/File/X509.html"><abbr title="phpseclib3\File\X509">X509</abbr></a></em></dt>
<dd>Allows URIs to be automatically retrieved</dd><dt><a href="phpseclib3/File/X509.html#method_encodeIP">
<abbr title="phpseclib3\File\X509">X509</abbr>::encodeIP</a>() — <em>Method in class <a href="phpseclib3/File/X509.html"><abbr title="phpseclib3\File\X509">X509</abbr></a></em></dt>
<dd>Encodes an IP address</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_extendedGCD">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::extendedGCD</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Calculates modular inverses.</dd><dt><a href="phpseclib3/Math/BigInteger.html#method_equals">
<abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr>::equals</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger.html"><abbr title="phpseclib3\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Tests the equality of two numbers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath.html#method_extendedGCD">
<abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr>::extendedGCD</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/BCMath.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr></a></em></dt>
<dd>Calculates the greatest common divisor and Bezout's identity.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath.html#method_equals">
<abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr>::equals</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/BCMath.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath">BCMath</abbr></a></em></dt>
<dd>Tests the equality of two numbers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/BCMath/Reductions/EvalBarrett.html"><abbr title="phpseclib3\Math\BigInteger\Engines\BCMath\Reductions\EvalBarrett">EvalBarrett</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math/BigInteger/Engines/BCMath/Reductions.html">phpseclib3\Math\BigInteger\Engines\BCMath\Reductions</a></em></dt>
<dd>PHP Barrett Modular Exponentiation Engine</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/Engine.html"><abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math/BigInteger/Engines.html">phpseclib3\Math\BigInteger\Engines</a></em></dt>
<dd>Base Engine.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/Engine.html#method_extendedGCDHelper">
<abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr>::extendedGCDHelper</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/Engine.html"><abbr title="phpseclib3\Math\BigInteger\Engines\Engine">Engine</abbr></a></em></dt>
<dd>Calculates the greatest common divisor and Bezout's identity.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/GMP.html#method_equals">
<abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr>::equals</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/GMP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr></a></em></dt>
<dd>Tests the equality of two numbers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/GMP.html#method_extendedGCD">
<abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr>::extendedGCD</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/GMP.html"><abbr title="phpseclib3\Math\BigInteger\Engines\GMP">GMP</abbr></a></em></dt>
<dd>Calculates the greatest common divisor and Bezout's identity.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP32.html#method_extendedGCD">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr>::extendedGCD</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP32.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr></a></em></dt>
<dd>Calculates modular inverses.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP32.html#method_equals">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr>::equals</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP32.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP32">PHP32</abbr></a></em></dt>
<dd>Tests the equality of two numbers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP64.html#method_extendedGCD">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr>::extendedGCD</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP64.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr></a></em></dt>
<dd>Calculates modular inverses.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP64.html#method_equals">
<abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr>::equals</a>() — <em>Method in class <a href="phpseclib3/Math/BigInteger/Engines/PHP64.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP64">PHP64</abbr></a></em></dt>
<dd>Tests the equality of two numbers.</dd><dt><a href="phpseclib3/Math/BigInteger/Engines/PHP/Reductions/EvalBarrett.html"><abbr title="phpseclib3\Math\BigInteger\Engines\PHP\Reductions\EvalBarrett">EvalBarrett</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math/BigInteger/Engines/PHP/Reductions.html">phpseclib3\Math\BigInteger\Engines\PHP\Reductions</a></em></dt>
<dd>PHP Dynamic Barrett Modular Exponentiation Engine</dd><dt><a href="phpseclib3/Math/BinaryField/Integer.html#method_equals">
<abbr title="phpseclib3\Math\BinaryField\Integer">Integer</abbr>::equals</a>() — <em>Method in class <a href="phpseclib3/Math/BinaryField/Integer.html"><abbr title="phpseclib3\Math\BinaryField\Integer">Integer</abbr></a></em></dt>
<dd>Tests the equality of two numbers.</dd><dt><a href="phpseclib3/Math/PrimeField/Integer.html#method_equals">
<abbr title="phpseclib3\Math\PrimeField\Integer">Integer</abbr>::equals</a>() — <em>Method in class <a href="phpseclib3/Math/PrimeField/Integer.html"><abbr title="phpseclib3\Math\PrimeField\Integer">Integer</abbr></a></em></dt>
<dd>Tests the equality of two numbers.</dd><dt><a href="phpseclib3/Net/SFTP.html#method_enableStatCache">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::enableStatCache</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Enable the stat cache</dd><dt><a href="phpseclib3/Net/SFTP.html#method_enablePathCanonicalization">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::enablePathCanonicalization</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Enable path canonicalization</dd><dt><a href="phpseclib3/Net/SFTP.html#method_enableDatePreservation">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::enableDatePreservation</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Enable Date Preservation</dd><dt><a href="phpseclib3/Net/SSH2.html#method_exec">
<abbr title="phpseclib3\Net\SSH2">SSH2</abbr>::exec</a>() — <em>Method in class <a href="phpseclib3/Net/SSH2.html"><abbr title="phpseclib3\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Execute Command</dd><dt><a href="phpseclib3/Net/SSH2.html#method_enableQuietMode">
<abbr title="phpseclib3\Net\SSH2">SSH2</abbr>::enableQuietMode</a>() — <em>Method in class <a href="phpseclib3/Net/SSH2.html"><abbr title="phpseclib3\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Enable Quiet Mode</dd><dt><a href="phpseclib3/Net/SSH2.html#method_enablePTY">
<abbr title="phpseclib3\Net\SSH2">SSH2</abbr>::enablePTY</a>() — <em>Method in class <a href="phpseclib3/Net/SSH2.html"><abbr title="phpseclib3\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Enable request-pty when using exec()</dd> </dl><h2 id="letterF">F</h2>
<dl id="indexF"><dt>$<a href="phpseclib3/Crypt/Common/AsymmetricKey.html#property_format">
<abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr>#format</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/AsymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr></a></em></dt>
<dd>Format of the loaded key</dd><dt>$<a href="phpseclib3/Crypt/Common/Formats/Keys/PKCS.html#property_format">
<abbr title="phpseclib3\Crypt\Common\Formats\Keys\PKCS">PKCS</abbr>#format</a> — <em>Property in class <a href="phpseclib3/Crypt/Common/Formats/Keys/PKCS.html"><abbr title="phpseclib3\Crypt\Common\Formats\Keys\PKCS">PKCS</abbr></a></em></dt>
<dd>Is the key a base-64 encoded PEM, DER or should it be auto-detected?</dd><dt><a href="phpseclib3/Crypt/Common/Traits/Fingerprint.html"><abbr title="phpseclib3\Crypt\Common\Traits\Fingerprint">Fingerprint</abbr></a> — <em>Class in namespace <a href="phpseclib3/Crypt/Common/Traits.html">phpseclib3\Crypt\Common\Traits</a></em></dt>
<dd>Fingerprint Trait for Private Keys</dd><dt>$<a href="phpseclib3/Crypt/EC.html#property_format">
<abbr title="phpseclib3\Crypt\EC">EC</abbr>#format</a> — <em>Property in class <a href="phpseclib3/Crypt/EC.html"><abbr title="phpseclib3\Crypt\EC">EC</abbr></a></em></dt>
<dd>Signature Format</dd><dt>$<a href="phpseclib3/Crypt/EC/BaseCurves/Base.html#property_factory">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr>#factory</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/BaseCurves/Base.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr></a></em></dt>
<dd>Finite Field Integer factory</dd><dt>$<a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html#property_factory">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr>#factory</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr></a></em></dt>
<dd>Binary Field Integer factory</dd><dt>$<a href="phpseclib3/Crypt/EC/BaseCurves/Montgomery.html#property_factory">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Montgomery">Montgomery</abbr>#factory</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/BaseCurves/Montgomery.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Montgomery">Montgomery</abbr></a></em></dt>
<dd>Prime Field Integer factory</dd><dt>$<a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html#property_factory">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr>#factory</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr></a></em></dt>
<dd>Prime Field Integer factory</dd><dt>$<a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html#property_four">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr>#four</a> — <em>Property in class <a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr></a></em></dt>
<dd>The number four over the specified finite field</dd><dt><a href="phpseclib3/Exception/FileNotFoundException.html"><abbr title="phpseclib3\Exception\FileNotFoundException">FileNotFoundException</abbr></a> — <em>Class in namespace <a href="phpseclib3/Exception.html">phpseclib3\Exception</a></em></dt>
<dd>FileNotFoundException</dd><dt><a href="phpseclib3/File/ASN1/Maps/FieldElement.html"><abbr title="phpseclib3\File\ASN1\Maps\FieldElement">FieldElement</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>FieldElement</dd><dt><a href="phpseclib3/File/ASN1/Maps/FieldID.html"><abbr title="phpseclib3\File\ASN1\Maps\FieldID">FieldID</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>FieldID</dd><dt><a href="phpseclib3/Math/Common/FiniteField.html"><abbr title="phpseclib3\Math\Common\FiniteField">FiniteField</abbr></a> — <em>Class in namespace <a href="phpseclib3/Math/Common.html">phpseclib3\Math\Common</a></em></dt>
<dd>Finite Fields</dd><dt><a href="phpseclib3/Net/SFTP.html#method_file_exists">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::file_exists</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Checks whether a file or directory exists</dd><dt><a href="phpseclib3/Net/SFTP.html#method_fileatime">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::fileatime</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Gets last access time of file</dd><dt><a href="phpseclib3/Net/SFTP.html#method_filemtime">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::filemtime</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Gets file modification time</dd><dt><a href="phpseclib3/Net/SFTP.html#method_fileperms">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::fileperms</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Gets file permissions</dd><dt><a href="phpseclib3/Net/SFTP.html#method_fileowner">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::fileowner</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Gets file owner</dd><dt><a href="phpseclib3/Net/SFTP.html#method_filegroup">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::filegroup</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Gets file group</dd><dt><a href="phpseclib3/Net/SFTP.html#method_filesize">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::filesize</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Gets file size</dd><dt><a href="phpseclib3/Net/SFTP.html#method_filetype">
<abbr title="phpseclib3\Net\SFTP">SFTP</abbr>::filetype</a>() — <em>Method in class <a href="phpseclib3/Net/SFTP.html"><abbr title="phpseclib3\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Gets file type</dd><dt>$<a href="phpseclib3/Net/SSH2.html#property_fsock">
<abbr title="phpseclib3\Net\SSH2">SSH2</abbr>#fsock</a> — <em>Property in class <a href="phpseclib3/Net/SSH2.html"><abbr title="phpseclib3\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>The Socket Object</dd><dt><a href="phpseclib3/Net/SSH2.html#method_format_log">
<abbr title="phpseclib3\Net\SSH2">SSH2</abbr>::format_log</a>() — <em>Method in class <a href="phpseclib3/Net/SSH2.html"><abbr title="phpseclib3\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Formats a log for printing</dd><dt><a href="phpseclib3/System/SSH/Agent.html#method_forwardData">
<abbr title="phpseclib3\System\SSH\Agent">Agent</abbr>::forwardData</a>() — <em>Method in class <a href="phpseclib3/System/SSH/Agent.html"><abbr title="phpseclib3\System\SSH\Agent">Agent</abbr></a></em></dt>
<dd>Forward data to SSH Agent and return data reply</dd> </dl><h2 id="letterG">G</h2>
<dl id="indexG"><dt><a href="phpseclib3/Crypt/Common/AsymmetricKey.html#method_getSupportedKeyFormats">
<abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr>::getSupportedKeyFormats</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/AsymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr></a></em></dt>
<dd>Returns a list of supported formats.</dd><dt><a href="phpseclib3/Crypt/Common/AsymmetricKey.html#method_getLoadedFormat">
<abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr>::getLoadedFormat</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/AsymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr></a></em></dt>
<dd>Returns the format of the loaded key.</dd><dt><a href="phpseclib3/Crypt/Common/AsymmetricKey.html#method_getComment">
<abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr>::getComment</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/AsymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr></a></em></dt>
<dd>Returns the key's comment</dd><dt><a href="phpseclib3/Crypt/Common/AsymmetricKey.html#method_getHash">
<abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr>::getHash</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/AsymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\AsymmetricKey">AsymmetricKey</abbr></a></em></dt>
<dd>Returns the hash algorithm currently being used</dd><dt><a href="phpseclib3/Crypt/Common/PrivateKey.html#method_getPublicKey">
<abbr title="phpseclib3\Crypt\Common\PrivateKey">PrivateKey</abbr>::getPublicKey</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/PrivateKey.html"><abbr title="phpseclib3\Crypt\Common\PrivateKey">PrivateKey</abbr></a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/Common/PublicKey.html#method_getFingerprint">
<abbr title="phpseclib3\Crypt\Common\PublicKey">PublicKey</abbr>::getFingerprint</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/PublicKey.html"><abbr title="phpseclib3\Crypt\Common\PublicKey">PublicKey</abbr></a></em></dt>
<dd></dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_getKeyLength">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::getKeyLength</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Returns the current key length in bits</dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_getBlockLength">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::getBlockLength</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Returns the current block length in bits</dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_getBlockLengthInBytes">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::getBlockLengthInBytes</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Returns the current block length in bytes</dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_getTag">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::getTag</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Get the authentication tag</dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_getIV">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::getIV</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Get the IV</dd><dt><a href="phpseclib3/Crypt/Common/SymmetricKey.html#method_getEngine">
<abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr>::getEngine</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/SymmetricKey.html"><abbr title="phpseclib3\Crypt\Common\SymmetricKey">SymmetricKey</abbr></a></em></dt>
<dd>Returns the engine currently being utilized</dd><dt><a href="phpseclib3/Crypt/Common/Traits/Fingerprint.html#method_getFingerprint">
<abbr title="phpseclib3\Crypt\Common\Traits\Fingerprint">Fingerprint</abbr>::getFingerprint</a>() — <em>Method in class <a href="phpseclib3/Crypt/Common/Traits/Fingerprint.html"><abbr title="phpseclib3\Crypt\Common\Traits\Fingerprint">Fingerprint</abbr></a></em></dt>
<dd>Returns the public key's fingerprint</dd><dt><a href="phpseclib3/Crypt/DH.html#method_getHash">
<abbr title="phpseclib3\Crypt\DH">DH</abbr>::getHash</a>() — <em>Method in class <a href="phpseclib3/Crypt/DH.html"><abbr title="phpseclib3\Crypt\DH">DH</abbr></a></em></dt>
<dd>Returns the hash algorithm currently being used</dd><dt><a href="phpseclib3/Crypt/DH.html#method_getParameters">
<abbr title="phpseclib3\Crypt\DH">DH</abbr>::getParameters</a>() — <em>Method in class <a href="phpseclib3/Crypt/DH.html"><abbr title="phpseclib3\Crypt\DH">DH</abbr></a></em></dt>
<dd>Returns the parameters</dd><dt><a href="phpseclib3/Crypt/DH/PrivateKey.html#method_getPublicKey">
<abbr title="phpseclib3\Crypt\DH\PrivateKey">PrivateKey</abbr>::getPublicKey</a>() — <em>Method in class <a href="phpseclib3/Crypt/DH/PrivateKey.html"><abbr title="phpseclib3\Crypt\DH\PrivateKey">PrivateKey</abbr></a></em></dt>
<dd>Returns the public key</dd><dt>$<a href="phpseclib3/Crypt/DSA.html#property_g">
<abbr title="phpseclib3\Crypt\DSA">DSA</abbr>#g</a> — <em>Property in class <a href="phpseclib3/Crypt/DSA.html"><abbr title="phpseclib3\Crypt\DSA">DSA</abbr></a></em></dt>
<dd>DSA Group Generator G</dd><dt><a href="phpseclib3/Crypt/DSA.html#method_getLength">
<abbr title="phpseclib3\Crypt\DSA">DSA</abbr>::getLength</a>() — <em>Method in class <a href="phpseclib3/Crypt/DSA.html"><abbr title="phpseclib3\Crypt\DSA">DSA</abbr></a></em></dt>
<dd>Returns the key size</dd><dt><a href="phpseclib3/Crypt/DSA.html#method_getEngine">
<abbr title="phpseclib3\Crypt\DSA">DSA</abbr>::getEngine</a>() — <em>Method in class <a href="phpseclib3/Crypt/DSA.html"><abbr title="phpseclib3\Crypt\DSA">DSA</abbr></a></em></dt>
<dd>Returns the current engine being used</dd><dt><a href="phpseclib3/Crypt/DSA.html#method_getParameters">
<abbr title="phpseclib3\Crypt\DSA">DSA</abbr>::getParameters</a>() — <em>Method in class <a href="phpseclib3/Crypt/DSA.html"><abbr title="phpseclib3\Crypt\DSA">DSA</abbr></a></em></dt>
<dd>Returns the parameters</dd><dt><a href="phpseclib3/Crypt/DSA.html#method_getSignatureFormat">
<abbr title="phpseclib3\Crypt\DSA">DSA</abbr>::getSignatureFormat</a>() — <em>Method in class <a href="phpseclib3/Crypt/DSA.html"><abbr title="phpseclib3\Crypt\DSA">DSA</abbr></a></em></dt>
<dd>Returns the signature format currently being used</dd><dt><a href="phpseclib3/Crypt/DSA/PrivateKey.html#method_getPublicKey">
<abbr title="phpseclib3\Crypt\DSA\PrivateKey">PrivateKey</abbr>::getPublicKey</a>() — <em>Method in class <a href="phpseclib3/Crypt/DSA/PrivateKey.html"><abbr title="phpseclib3\Crypt\DSA\PrivateKey">PrivateKey</abbr></a></em></dt>
<dd>Returns the public key</dd><dt><a href="phpseclib3/Crypt/EC.html#method_getCurve">
<abbr title="phpseclib3\Crypt\EC">EC</abbr>::getCurve</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC.html"><abbr title="phpseclib3\Crypt\EC">EC</abbr></a></em></dt>
<dd>Returns the curve</dd><dt><a href="phpseclib3/Crypt/EC.html#method_getLength">
<abbr title="phpseclib3\Crypt\EC">EC</abbr>::getLength</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC.html"><abbr title="phpseclib3\Crypt\EC">EC</abbr></a></em></dt>
<dd>Returns the key size</dd><dt><a href="phpseclib3/Crypt/EC.html#method_getEngine">
<abbr title="phpseclib3\Crypt\EC">EC</abbr>::getEngine</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC.html"><abbr title="phpseclib3\Crypt\EC">EC</abbr></a></em></dt>
<dd>Returns the current engine being used</dd><dt><a href="phpseclib3/Crypt/EC.html#method_getEncodedCoordinates">
<abbr title="phpseclib3\Crypt\EC">EC</abbr>::getEncodedCoordinates</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC.html"><abbr title="phpseclib3\Crypt\EC">EC</abbr></a></em></dt>
<dd>Returns the public key coordinates as a string</dd><dt><a href="phpseclib3/Crypt/EC.html#method_getParameters">
<abbr title="phpseclib3\Crypt\EC">EC</abbr>::getParameters</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC.html"><abbr title="phpseclib3\Crypt\EC">EC</abbr></a></em></dt>
<dd>Returns the parameters</dd><dt><a href="phpseclib3/Crypt/EC.html#method_getSignatureFormat">
<abbr title="phpseclib3\Crypt\EC">EC</abbr>::getSignatureFormat</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC.html"><abbr title="phpseclib3\Crypt\EC">EC</abbr></a></em></dt>
<dd>Returns the signature format currently being used</dd><dt><a href="phpseclib3/Crypt/EC.html#method_getContext">
<abbr title="phpseclib3\Crypt\EC">EC</abbr>::getContext</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC.html"><abbr title="phpseclib3\Crypt\EC">EC</abbr></a></em></dt>
<dd>Returns the signature format currently being used</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Base.html#method_getLengthInBytes">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr>::getLengthInBytes</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Base.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr></a></em></dt>
<dd>Returns the length, in bytes, of the modulo</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Base.html#method_getLength">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr>::getLength</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Base.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr></a></em></dt>
<dd>Returns the length, in bits, of the modulo</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Base.html#method_getOrder">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr>::getOrder</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Base.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Base">Base</abbr></a></em></dt>
<dd>Returns the Order</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html#method_getBasePoint">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr>::getBasePoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr></a></em></dt>
<dd>Retrieve the base point as an array</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html#method_getModulo">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr>::getModulo</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr></a></em></dt>
<dd>Returns the modulo</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html#method_getA">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr>::getA</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr></a></em></dt>
<dd>Returns the a coefficient</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html#method_getB">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr>::getB</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Binary.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Binary">Binary</abbr></a></em></dt>
<dd>Returns the a coefficient</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Montgomery.html#method_getBasePoint">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Montgomery">Montgomery</abbr>::getBasePoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Montgomery.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Montgomery">Montgomery</abbr></a></em></dt>
<dd>Retrieve the base point as an array</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html#method_getBasePoint">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr>::getBasePoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr></a></em></dt>
<dd>Retrieve the base point as an array</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html#method_getModulo">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr>::getModulo</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr></a></em></dt>
<dd>Returns the modulo</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html#method_getA">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr>::getA</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr></a></em></dt>
<dd>Returns the a coefficient</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html#method_getB">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr>::getB</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/Prime.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\Prime">Prime</abbr></a></em></dt>
<dd>Returns the a coefficient</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/TwistedEdwards.html#method_getA">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\TwistedEdwards">TwistedEdwards</abbr>::getA</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/TwistedEdwards.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\TwistedEdwards">TwistedEdwards</abbr></a></em></dt>
<dd>Returns the a coefficient</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/TwistedEdwards.html#method_getD">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\TwistedEdwards">TwistedEdwards</abbr>::getD</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/TwistedEdwards.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\TwistedEdwards">TwistedEdwards</abbr></a></em></dt>
<dd>Returns the a coefficient</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/TwistedEdwards.html#method_getBasePoint">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\TwistedEdwards">TwistedEdwards</abbr>::getBasePoint</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/TwistedEdwards.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\TwistedEdwards">TwistedEdwards</abbr></a></em></dt>
<dd>Retrieve the base point as an array</dd><dt><a href="phpseclib3/Crypt/EC/BaseCurves/TwistedEdwards.html#method_getModulo">
<abbr title="phpseclib3\Crypt\EC\BaseCurves\TwistedEdwards">TwistedEdwards</abbr>::getModulo</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/BaseCurves/TwistedEdwards.html"><abbr title="phpseclib3\Crypt\EC\BaseCurves\TwistedEdwards">TwistedEdwards</abbr></a></em></dt>
<dd>Returns the modulo</dd><dt><a href="phpseclib3/Crypt/EC/PrivateKey.html#method_getPublicKey">
<abbr title="phpseclib3\Crypt\EC\PrivateKey">PrivateKey</abbr>::getPublicKey</a>() — <em>Method in class <a href="phpseclib3/Crypt/EC/PrivateKey.html"><abbr title="phpseclib3\Crypt\EC\PrivateKey">PrivateKey</abbr></a></em></dt>
<dd>Returns the public key</dd><dt><a href="phpseclib3/Crypt/Hash.html#method_getHash">
<abbr title="phpseclib3\Crypt\Hash">Hash</abbr>::getHash</a>() — <em>Method in class <a href="phpseclib3/Crypt/Hash.html"><abbr title="phpseclib3\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Gets the hash function.</dd><dt><a href="phpseclib3/Crypt/Hash.html#method_getLength">
<abbr title="phpseclib3\Crypt\Hash">Hash</abbr>::getLength</a>() — <em>Method in class <a href="phpseclib3/Crypt/Hash.html"><abbr title="phpseclib3\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Returns the hash length (in bits)</dd><dt><a href="phpseclib3/Crypt/Hash.html#method_getLengthInBytes">
<abbr title="phpseclib3\Crypt\Hash">Hash</abbr>::getLengthInBytes</a>() — <em>Method in class <a href="phpseclib3/Crypt/Hash.html"><abbr title="phpseclib3\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Returns the hash length (in bytes)</dd><dt><a href="phpseclib3/Crypt/Hash.html#method_getBlockLength">
<abbr title="phpseclib3\Crypt\Hash">Hash</abbr>::getBlockLength</a>() — <em>Method in class <a href="phpseclib3/Crypt/Hash.html"><abbr title="phpseclib3\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Returns the block length (in bits)</dd><dt><a href="phpseclib3/Crypt/Hash.html#method_getBlockLengthInBytes">
<abbr title="phpseclib3\Crypt\Hash">Hash</abbr>::getBlockLengthInBytes</a>() — <em>Method in class <a href="phpseclib3/Crypt/Hash.html"><abbr title="phpseclib3\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Returns the block length (in bytes)</dd><dt><a href="phpseclib3/Crypt/RC2.html#method_getKeyLength">
<abbr title="phpseclib3\Crypt\RC2">RC2</abbr>::getKeyLength</a>() — <em>Method in class <a href="phpseclib3/Crypt/RC2.html"><abbr title="phpseclib3\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>Returns the current key length</dd><dt><a href="phpseclib3/Crypt/RSA.html#method_getLength">
<abbr title="phpseclib3\Crypt\RSA">RSA</abbr>::getLength</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA.html"><abbr title="phpseclib3\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Returns the key size</dd><dt><a href="phpseclib3/Crypt/RSA.html#method_getMGFHash">
<abbr title="phpseclib3\Crypt\RSA">RSA</abbr>::getMGFHash</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA.html"><abbr title="phpseclib3\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Returns the MGF hash algorithm currently being used</dd><dt><a href="phpseclib3/Crypt/RSA.html#method_getSaltLength">
<abbr title="phpseclib3\Crypt\RSA">RSA</abbr>::getSaltLength</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA.html"><abbr title="phpseclib3\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Returns the salt length currently being used</dd><dt><a href="phpseclib3/Crypt/RSA.html#method_getLabel">
<abbr title="phpseclib3\Crypt\RSA">RSA</abbr>::getLabel</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA.html"><abbr title="phpseclib3\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Returns the label currently being used</dd><dt><a href="phpseclib3/Crypt/RSA.html#method_getPadding">
<abbr title="phpseclib3\Crypt\RSA">RSA</abbr>::getPadding</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA.html"><abbr title="phpseclib3\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Returns the padding currently being used</dd><dt><a href="phpseclib3/Crypt/RSA.html#method_getEngine">
<abbr title="phpseclib3\Crypt\RSA">RSA</abbr>::getEngine</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA.html"><abbr title="phpseclib3\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Returns the current engine being used</dd><dt><a href="phpseclib3/Crypt/RSA/PrivateKey.html#method_getPublicKey">
<abbr title="phpseclib3\Crypt\RSA\PrivateKey">PrivateKey</abbr>::getPublicKey</a>() — <em>Method in class <a href="phpseclib3/Crypt/RSA/PrivateKey.html"><abbr title="phpseclib3\Crypt\RSA\PrivateKey">PrivateKey</abbr></a></em></dt>
<dd>Returns the public key</dd><dt><a href="phpseclib3/Crypt/Rijndael.html#method_getTables">
<abbr title="phpseclib3\Crypt\Rijndael">Rijndael</abbr>::getTables</a>() — <em>Method in class <a href="phpseclib3/Crypt/Rijndael.html"><abbr title="phpseclib3\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>Provides the mixColumns and sboxes tables</dd><dt><a href="phpseclib3/Crypt/Rijndael.html#method_getInvTables">
<abbr title="phpseclib3\Crypt\Rijndael">Rijndael</abbr>::getInvTables</a>() — <em>Method in class <a href="phpseclib3/Crypt/Rijndael.html"><abbr title="phpseclib3\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>Provides the inverse mixColumns and inverse sboxes tables</dd><dt><a href="phpseclib3/File/ANSI.html#method_getScreen">
<abbr title="phpseclib3\File\ANSI">ANSI</abbr>::getScreen</a>() — <em>Method in class <a href="phpseclib3/File/ANSI.html"><abbr title="phpseclib3\File\ANSI">ANSI</abbr></a></em></dt>
<dd>Returns the current screen</dd><dt><a href="phpseclib3/File/ANSI.html#method_getHistory">
<abbr title="phpseclib3\File\ANSI">ANSI</abbr>::getHistory</a>() — <em>Method in class <a href="phpseclib3/File/ANSI.html"><abbr title="phpseclib3\File\ANSI">ANSI</abbr></a></em></dt>
<dd>Returns the current screen and the x previous lines</dd><dt><a href="phpseclib3/File/ASN1.html#method_getOID">
<abbr title="phpseclib3\File\ASN1">ASN1</abbr>::getOID</a>() — <em>Method in class <a href="phpseclib3/File/ASN1.html"><abbr title="phpseclib3\File\ASN1">ASN1</abbr></a></em></dt>
<dd>Returns the OID corresponding to a name</dd><dt><a href="phpseclib3/File/ASN1/Maps/GeneralName.html"><abbr title="phpseclib3\File\ASN1\Maps\GeneralName">GeneralName</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>GeneralName</dd><dt><a href="phpseclib3/File/ASN1/Maps/GeneralNames.html"><abbr title="phpseclib3\File\ASN1\Maps\GeneralNames">GeneralNames</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>GeneralNames</dd><dt><a href="phpseclib3/File/ASN1/Maps/GeneralSubtree.html"><abbr title="phpseclib3\File\ASN1\Maps\GeneralSubtree">GeneralSubtree</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>GeneralSubtree</dd><dt><a href="phpseclib3/File/ASN1/Maps/GeneralSubtrees.html"><abbr title="phpseclib3\File\ASN1\Maps\GeneralSubtrees">GeneralSubtrees</abbr></a> — <em>Class in namespace <a href="phpseclib3/File/ASN1/Maps.html">phpseclib3\File\ASN1\Maps</a></em></dt>
<dd>GeneralSubtrees</dd><dt><a href="phpseclib3/File/X509.html#method_getDNProp">
<abbr title="phpseclib3\File\X509">X509</abbr>::getDNProp</a>() — <em>Method in class <a href="phpseclib3/File/X509.html"><abbr title="phpseclib3\File\X509">X509</abbr></a></em></dt>
<dd>Get Distinguished Name properties</dd><dt><a href="phpseclib3/File/X509.html#method_getDN">
<abbr title="phpseclib3\File\X509">X509</abbr>::getDN</a>() — <em>Method in class <a href="phpseclib3/File/X509.html"><abbr title="phpseclib3\File\X509">X509</abbr></a></em></dt>
<dd>Get the Distinguished Name for a certificates subject</dd><dt><a href="phpseclib3/File/X509.html#method_getIssuerDN">
<abbr title="phpseclib3\File\X509">X509</abbr>::getIssuerDN</a>() — <em>Method in class <a href="phpseclib3/File/X509.html"><abbr title="phpseclib3\File\X509">X509</abbr></a></em></dt>
<dd>Get the Distinguished Name for a certificate/crl issuer</dd><dt><a href="phpseclib3/File/X509.html#method_getSubjectDN">
<abbr title="phpseclib3\File\X509">X509</abbr>::getSubjectDN</a>() — <em>Method in class <a href="phpseclib3/File/X509.html"><abbr title="phpseclib3\File\X509">X509</abbr></a></em></dt>
<dd>Get the Distinguished Name for a certificate/csr subject
Alias of getDN()</dd><dt><a href="phpseclib3/File/X509.html#method_getIssuerDNProp">
<abbr title="phpseclib3\File\X509">X509</abbr>::getIssuerDNProp</a>() — <em>Method in class <a href="phpseclib3/File/X509.html"><abbr title="phpseclib3\File\X509">X509</abbr></a></em></dt>
<dd>Get an individual Distinguished Name property for a certificate/crl issuer</dd><dt><a href="phpseclib3/File/X509.html#method_getSubjectDNProp">