-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoc-index.html
2167 lines (2158 loc) · 317 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 class="disabled"><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 class="disabled"><a href="#letterZ">Z</a></li>
</ul>
<h2 id="letterA">A</h2>
<dl id="indexA"><dt><a href="phpseclib/Crypt/AES.html"><abbr title="phpseclib\Crypt\AES">AES</abbr></a> — <em>Class in namespace <a href="phpseclib/Crypt.html">phpseclib\Crypt</a></em></dt>
<dd>Pure-PHP implementation of AES.</dd><dt><a href="phpseclib/File/ANSI.html"><abbr title="phpseclib\File\ANSI">ANSI</abbr></a> — <em>Class in namespace <a href="phpseclib/File.html">phpseclib\File</a></em></dt>
<dd>Pure-PHP ANSI Decoder</dd><dt>$<a href="phpseclib/File/ANSI.html#property_attr_cell">
<abbr title="phpseclib\File\ANSI">ANSI</abbr>#attr_cell</a> — <em>Property in class <a href="phpseclib/File/ANSI.html"><abbr title="phpseclib\File\ANSI">ANSI</abbr></a></em></dt>
<dd>The current attribute cell</dd><dt>$<a href="phpseclib/File/ANSI.html#property_attr_row">
<abbr title="phpseclib\File\ANSI">ANSI</abbr>#attr_row</a> — <em>Property in class <a href="phpseclib/File/ANSI.html"><abbr title="phpseclib\File\ANSI">ANSI</abbr></a></em></dt>
<dd>An empty attribute row</dd><dt>$<a href="phpseclib/File/ANSI.html#property_attrs">
<abbr title="phpseclib\File\ANSI">ANSI</abbr>#attrs</a> — <em>Property in class <a href="phpseclib/File/ANSI.html"><abbr title="phpseclib\File\ANSI">ANSI</abbr></a></em></dt>
<dd>The current screen attributes</dd><dt>$<a href="phpseclib/File/ANSI.html#property_ansi">
<abbr title="phpseclib\File\ANSI">ANSI</abbr>#ansi</a> — <em>Property in class <a href="phpseclib/File/ANSI.html"><abbr title="phpseclib\File\ANSI">ANSI</abbr></a></em></dt>
<dd>Current ANSI code</dd><dt><a href="phpseclib/File/ANSI.html#method_appendString">
<abbr title="phpseclib\File\ANSI">ANSI</abbr>::appendString</a>() — <em>Method in class <a href="phpseclib/File/ANSI.html"><abbr title="phpseclib\File\ANSI">ANSI</abbr></a></em></dt>
<dd>Appdend a string</dd><dt><a href="phpseclib/File/ASN1.html"><abbr title="phpseclib\File\ASN1">ASN1</abbr></a> — <em>Class in namespace <a href="phpseclib/File.html">phpseclib\File</a></em></dt>
<dd>Pure-PHP ASN.1 Parser</dd><dt>$<a href="phpseclib/File/ASN1.html#property_ANYmap">
<abbr title="phpseclib\File\ASN1">ASN1</abbr>#ANYmap</a> — <em>Property in class <a href="phpseclib/File/ASN1.html"><abbr title="phpseclib\File\ASN1">ASN1</abbr></a></em></dt>
<dd>Type mapping table for the ANY type.</dd><dt><a href="phpseclib/File/ASN1.html#method_asn1map">
<abbr title="phpseclib\File\ASN1">ASN1</abbr>::asn1map</a>() — <em>Method in class <a href="phpseclib/File/ASN1.html"><abbr title="phpseclib\File\ASN1">ASN1</abbr></a></em></dt>
<dd>ASN.1 Map</dd><dt>$<a href="phpseclib/File/X509.html#property_AttributeValue">
<abbr title="phpseclib\File\X509">X509</abbr>#AttributeValue</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_AuthorityKeyIdentifier">
<abbr title="phpseclib\File\X509">X509</abbr>#AuthorityKeyIdentifier</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_AuthorityInfoAccessSyntax">
<abbr title="phpseclib\File\X509">X509</abbr>#AuthorityInfoAccessSyntax</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt><a href="phpseclib/Math/BigInteger.html#method_add">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::add</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Adds two BigIntegers.</dd><dt><a href="phpseclib/Math/BigInteger.html#method_abs">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::abs</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Absolute value.</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_agent">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#agent</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>A System_SSH_Agent for use in the SSH2 Agent Forwarding scenario</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_auth">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#auth</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Authentication Credentials</dd><dt><a href="phpseclib/System/SSH/Agent.html"><abbr title="phpseclib\System\SSH\Agent">Agent</abbr></a> — <em>Class in namespace <a href="phpseclib/System/SSH.html">phpseclib\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="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a> — <em>Class in namespace <a href="phpseclib/Crypt.html">phpseclib\Crypt</a></em></dt>
<dd>Base Class for all \phpseclib\Crypt* cipher classes</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_block_size">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#block_size</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>The Block Length of the block cipher</dd><dt><a href="phpseclib/Crypt/Blowfish.html"><abbr title="phpseclib\Crypt\Blowfish">Blowfish</abbr></a> — <em>Class in namespace <a href="phpseclib/Crypt.html">phpseclib\Crypt</a></em></dt>
<dd>Pure-PHP implementation of Blowfish.</dd><dt>$<a href="phpseclib/Crypt/Blowfish.html#property_block_size">
<abbr title="phpseclib\Crypt\Blowfish">Blowfish</abbr>#block_size</a> — <em>Property in class <a href="phpseclib/Crypt/Blowfish.html"><abbr title="phpseclib\Crypt\Blowfish">Blowfish</abbr></a></em></dt>
<dd>Block Length of the cipher</dd><dt>$<a href="phpseclib/Crypt/Blowfish.html#property_bctx">
<abbr title="phpseclib\Crypt\Blowfish">Blowfish</abbr>#bctx</a> — <em>Property in class <a href="phpseclib/Crypt/Blowfish.html"><abbr title="phpseclib\Crypt\Blowfish">Blowfish</abbr></a></em></dt>
<dd>The BCTX-working Array</dd><dt>$<a href="phpseclib/Crypt/DES.html#property_block_size">
<abbr title="phpseclib\Crypt\DES">DES</abbr>#block_size</a> — <em>Property in class <a href="phpseclib/Crypt/DES.html"><abbr title="phpseclib\Crypt\DES">DES</abbr></a></em></dt>
<dd>Block Length of the cipher</dd><dt>$<a href="phpseclib/Crypt/Hash.html#property_b">
<abbr title="phpseclib\Crypt\Hash">Hash</abbr>#b</a> — <em>Property in class <a href="phpseclib/Crypt/Hash.html"><abbr title="phpseclib\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Byte-length of compression blocks / key (Internal HMAC)</dd><dt>$<a href="phpseclib/Crypt/RC2.html#property_block_size">
<abbr title="phpseclib\Crypt\RC2">RC2</abbr>#block_size</a> — <em>Property in class <a href="phpseclib/Crypt/RC2.html"><abbr title="phpseclib\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>Block Length of the cipher</dd><dt>$<a href="phpseclib/Crypt/RC4.html#property_block_size">
<abbr title="phpseclib\Crypt\RC4">RC4</abbr>#block_size</a> — <em>Property in class <a href="phpseclib/Crypt/RC4.html"><abbr title="phpseclib\Crypt\RC4">RC4</abbr></a></em></dt>
<dd>Block Length of the cipher</dd><dt>$<a href="phpseclib/File/ANSI.html#property_base_attr_cell">
<abbr title="phpseclib\File\ANSI">ANSI</abbr>#base_attr_cell</a> — <em>Property in class <a href="phpseclib/File/ANSI.html"><abbr title="phpseclib\File\ANSI">ANSI</abbr></a></em></dt>
<dd>An empty attribute cell</dd><dt>$<a href="phpseclib/File/X509.html#property_BasicConstraints">
<abbr title="phpseclib\File\X509">X509</abbr>#BasicConstraints</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt><a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a> — <em>Class in namespace <a href="phpseclib/Math.html">phpseclib\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="phpseclib/Math/BigInteger.html#property_base">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>#base</a> — <em>Property in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/Math/BigInteger.html#property_baseFull">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>#baseFull</a> — <em>Property in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/Math/BigInteger.html#property_bitmask">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>#bitmask</a> — <em>Property in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Precision Bitmask</dd><dt><a href="phpseclib/Math/BigInteger.html#method_bitwise_and">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::bitwise_and</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical And</dd><dt><a href="phpseclib/Math/BigInteger.html#method_bitwise_or">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::bitwise_or</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical Or</dd><dt><a href="phpseclib/Math/BigInteger.html#method_bitwise_xor">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::bitwise_xor</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical Exclusive-Or</dd><dt><a href="phpseclib/Math/BigInteger.html#method_bitwise_not">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::bitwise_not</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical Not</dd><dt><a href="phpseclib/Math/BigInteger.html#method_bitwise_rightShift">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::bitwise_rightShift</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical Right Shift</dd><dt><a href="phpseclib/Math/BigInteger.html#method_bitwise_leftShift">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::bitwise_leftShift</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical Left Shift</dd><dt><a href="phpseclib/Math/BigInteger.html#method_bitwise_leftRotate">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::bitwise_leftRotate</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical Left Rotate</dd><dt><a href="phpseclib/Math/BigInteger.html#method_bitwise_rightRotate">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::bitwise_rightRotate</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Logical Right Rotate</dd><dt>$<a href="phpseclib/Net/SSH1.html#property_bitmap">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>#bitmap</a> — <em>Property in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Execution Bitmap</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_bitmap">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#bitmap</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Execution Bitmap</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_banner_message">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#banner_message</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Banner Message</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_bad_key_size_fix">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#bad_key_size_fix</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Some versions of OpenSSH incorrectly calculate the key size</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_binary_packet_buffer">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#binary_packet_buffer</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Binary Packet Buffer</dd> </dl><h2 id="letterC">C</h2>
<dl id="indexC"><dt>$<a href="phpseclib/Crypt/Base.html#property_continuousBuffer">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#continuousBuffer</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Continuous Buffer status</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_cfb_init_len">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#cfb_init_len</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Optimizing value while CFB-encrypting</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_changed">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#changed</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Does internal cipher state need to be (re)initialized?</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_cipher_name_mcrypt">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_cipher_name_openssl">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#cipher_name_openssl</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>The openssl specific name of the cipher</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_cipher_name_openssl_ecb">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#cipher_name_openssl_ecb</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>The openssl specific name of the cipher in ECB mode</dd><dt>$<a href="phpseclib/Crypt/Blowfish.html#property_cipher_name_mcrypt">
<abbr title="phpseclib\Crypt\Blowfish">Blowfish</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib/Crypt/Blowfish.html"><abbr title="phpseclib\Crypt\Blowfish">Blowfish</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib/Crypt/Blowfish.html#property_cfb_init_len">
<abbr title="phpseclib\Crypt\Blowfish">Blowfish</abbr>#cfb_init_len</a> — <em>Property in class <a href="phpseclib/Crypt/Blowfish.html"><abbr title="phpseclib\Crypt\Blowfish">Blowfish</abbr></a></em></dt>
<dd>Optimizing value while CFB-encrypting</dd><dt>$<a href="phpseclib/Crypt/DES.html#property_cipher_name_mcrypt">
<abbr title="phpseclib\Crypt\DES">DES</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib/Crypt/DES.html"><abbr title="phpseclib\Crypt\DES">DES</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib/Crypt/DES.html#property_cfb_init_len">
<abbr title="phpseclib\Crypt\DES">DES</abbr>#cfb_init_len</a> — <em>Property in class <a href="phpseclib/Crypt/DES.html"><abbr title="phpseclib\Crypt\DES">DES</abbr></a></em></dt>
<dd>Optimizing value while CFB-encrypting</dd><dt>$<a href="phpseclib/Crypt/Hash.html#property_computedKey">
<abbr title="phpseclib\Crypt\Hash">Hash</abbr>#computedKey</a> — <em>Property in class <a href="phpseclib/Crypt/Hash.html"><abbr title="phpseclib\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Computed Key</dd><dt>$<a href="phpseclib/Crypt/RC2.html#property_cipher_name_mcrypt">
<abbr title="phpseclib\Crypt\RC2">RC2</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib/Crypt/RC2.html"><abbr title="phpseclib\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib/Crypt/RC2.html#property_cfb_init_len">
<abbr title="phpseclib\Crypt\RC2">RC2</abbr>#cfb_init_len</a> — <em>Property in class <a href="phpseclib/Crypt/RC2.html"><abbr title="phpseclib\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>Optimizing value while CFB-encrypting</dd><dt>$<a href="phpseclib/Crypt/RC2.html#property_current_key_length">
<abbr title="phpseclib\Crypt\RC2">RC2</abbr>#current_key_length</a> — <em>Property in class <a href="phpseclib/Crypt/RC2.html"><abbr title="phpseclib\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>The key length in bits.</dd><dt>$<a href="phpseclib/Crypt/RC4.html#property_cipher_name_mcrypt">
<abbr title="phpseclib\Crypt\RC4">RC4</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib/Crypt/RC4.html"><abbr title="phpseclib\Crypt\RC4">RC4</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib/Crypt/RSA.html#property_coefficients">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>#coefficients</a> — <em>Property in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Coefficients for Chinese Remainder Theorem (ie. qInv)</dd><dt>$<a href="phpseclib/Crypt/RSA.html#property_components">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>#components</a> — <em>Property in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Components</dd><dt>$<a href="phpseclib/Crypt/RSA.html#property_current">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>#current</a> — <em>Property in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Current String</dd><dt>$<a href="phpseclib/Crypt/RSA.html#property_configFile">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>#configFile</a> — <em>Property in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>OpenSSL configuration file name.</dd><dt>$<a href="phpseclib/Crypt/RSA.html#property_comment">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>#comment</a> — <em>Property in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Public key comment field.</dd><dt><a href="phpseclib/Crypt/RSA.html#method_createKey">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>::createKey</a>() — <em>Method in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Create public / private key pair</dd><dt>$<a href="phpseclib/Crypt/Rijndael.html#property_cipher_name_mcrypt">
<abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib/Crypt/Rijndael.html"><abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib/Crypt/Rijndael.html#property_c">
<abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr>#c</a> — <em>Property in class <a href="phpseclib/Crypt/Rijndael.html"><abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>Shift offsets</dd><dt>$<a href="phpseclib/Crypt/TripleDES.html#property_cipher_name_mcrypt">
<abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib/Crypt/TripleDES.html"><abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib/Crypt/TripleDES.html#property_cfb_init_len">
<abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr>#cfb_init_len</a> — <em>Property in class <a href="phpseclib/Crypt/TripleDES.html"><abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>Optimizing value while CFB-encrypting</dd><dt>$<a href="phpseclib/Crypt/Twofish.html#property_cipher_name_mcrypt">
<abbr title="phpseclib\Crypt\Twofish">Twofish</abbr>#cipher_name_mcrypt</a> — <em>Property in class <a href="phpseclib/Crypt/Twofish.html"><abbr title="phpseclib\Crypt\Twofish">Twofish</abbr></a></em></dt>
<dd>The mcrypt specific name of the cipher</dd><dt>$<a href="phpseclib/Crypt/Twofish.html#property_cfb_init_len">
<abbr title="phpseclib\Crypt\Twofish">Twofish</abbr>#cfb_init_len</a> — <em>Property in class <a href="phpseclib/Crypt/Twofish.html"><abbr title="phpseclib\Crypt\Twofish">Twofish</abbr></a></em></dt>
<dd>Optimizing value while CFB-encrypting</dd><dt><a href="phpseclib/File/ASN1.html#method_convert">
<abbr title="phpseclib\File\ASN1">ASN1</abbr>::convert</a>() — <em>Method in class <a href="phpseclib/File/ASN1.html"><abbr title="phpseclib\File\ASN1">ASN1</abbr></a></em></dt>
<dd>String type conversion</dd><dt>$<a href="phpseclib/File/X509.html#property_Certificate">
<abbr title="phpseclib\File\X509">X509</abbr>#Certificate</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>ASN.1 syntax for X.509 certificates</dd><dt>$<a href="phpseclib/File/X509.html#property_CRLDistributionPoints">
<abbr title="phpseclib\File\X509">X509</abbr>#CRLDistributionPoints</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_CertificatePolicies">
<abbr title="phpseclib\File\X509">X509</abbr>#CertificatePolicies</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_CPSuri">
<abbr title="phpseclib\File\X509">X509</abbr>#CPSuri</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_CRLNumber">
<abbr title="phpseclib\File\X509">X509</abbr>#CRLNumber</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_CRLReason">
<abbr title="phpseclib\File\X509">X509</abbr>#CRLReason</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_CertificateIssuer">
<abbr title="phpseclib\File\X509">X509</abbr>#CertificateIssuer</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_CertificationRequest">
<abbr title="phpseclib\File\X509">X509</abbr>#CertificationRequest</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>ASN.1 syntax for Certificate Signing Requests (RFC2986)</dd><dt>$<a href="phpseclib/File/X509.html#property_CertificateList">
<abbr title="phpseclib\File\X509">X509</abbr>#CertificateList</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>ASN.1 syntax for Certificate Revocation Lists (RFC5280)</dd><dt>$<a href="phpseclib/File/X509.html#property_CAs">
<abbr title="phpseclib\File\X509">X509</abbr>#CAs</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>The certificate authorities</dd><dt>$<a href="phpseclib/File/X509.html#property_currentCert">
<abbr title="phpseclib\File\X509">X509</abbr>#currentCert</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>The currently loaded certificate</dd><dt>$<a href="phpseclib/File/X509.html#property_currentKeyIdentifier">
<abbr title="phpseclib\File\X509">X509</abbr>#currentKeyIdentifier</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Key Identifier</dd><dt>$<a href="phpseclib/File/X509.html#property_caFlag">
<abbr title="phpseclib\File\X509">X509</abbr>#caFlag</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>CA Flag</dd><dt>$<a href="phpseclib/File/X509.html#property_challenge">
<abbr title="phpseclib\File\X509">X509</abbr>#challenge</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>SPKAC Challenge</dd><dt><a href="phpseclib/File/X509.html#method_computeKeyIdentifier">
<abbr title="phpseclib\File\X509">X509</abbr>::computeKeyIdentifier</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Compute a public key identifier.</dd><dt><a href="phpseclib/Math/BigInteger.html#method_copy">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::copy</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Copy an object</dd><dt><a href="phpseclib/Math/BigInteger.html#method_compare">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::compare</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Compares two numbers.</dd><dt>$<a href="phpseclib/Net/SFTP.html#property_canonicalize_paths">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>#canonicalize_paths</a> — <em>Property in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Canonicalization Flag</dd><dt>$<a href="phpseclib/Net/SFTP.html#property_channel_close">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>#channel_close</a> — <em>Property in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Was the last packet due to the channels being closed or not?</dd><dt><a href="phpseclib/Net/SFTP.html#method_clearStatCache">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::clearStatCache</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Clear the stat cache</dd><dt><a href="phpseclib/Net/SFTP.html#method_chdir">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::chdir</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Changes the current directory</dd><dt><a href="phpseclib/Net/SFTP.html#method_chown">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::chown</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Changes file or directory owner</dd><dt><a href="phpseclib/Net/SFTP.html#method_chgrp">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::chgrp</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Changes file or directory group</dd><dt><a href="phpseclib/Net/SFTP.html#method_chmod">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::chmod</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Set permissions on a file.</dd><dt>$<a href="phpseclib/Net/SFTP/Stream.html#property_context">
<abbr title="phpseclib\Net\SFTP\Stream">Stream</abbr>#context</a> — <em>Property in class <a href="phpseclib/Net/SFTP/Stream.html"><abbr title="phpseclib\Net\SFTP\Stream">Stream</abbr></a></em></dt>
<dd>Context resource</dd><dt>$<a href="phpseclib/Net/SSH1.html#property_crypto">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>#crypto</a> — <em>Property in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>The cryptography object</dd><dt>$<a href="phpseclib/Net/SSH1.html#property_curTimeout">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>#curTimeout</a> — <em>Property in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Current Timeout</dd><dt>$<a href="phpseclib/Net/SSH1.html#property_connectionTimeout">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>#connectionTimeout</a> — <em>Property in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Timeout for initial connection</dd><dt>$<a href="phpseclib/Net/SSH1.html#property_cipher">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>#cipher</a> — <em>Property in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Default cipher</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_compression_algorithms_client_to_server">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#compression_algorithms_client_to_server</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Compression Algorithms: Client to Server</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_compression_algorithms_server_to_client">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#compression_algorithms_server_to_client</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Compression Algorithms: Server to Client</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_channel_open_failure_reasons">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#channel_open_failure_reasons</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>SSH_MSG_CHANNEL_OPEN_FAILURE 'reason codes', defined in RFC4254</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_channel_extended_data_type_codes">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#channel_extended_data_type_codes</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>SSH_MSG_CHANNEL_EXTENDED_DATA's data_type_codes</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_channel_buffers">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#channel_buffers</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Channel Buffers</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_channel_status">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#channel_status</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Channel Status</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_curTimeout">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#curTimeout</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Current Timeout</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_crypto_engine">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#crypto_engine</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Crypto Engine</dd> </dl><h2 id="letterD">D</h2>
<dl id="indexD"><dt>$<a href="phpseclib/Crypt/Base.html#property_decryptIV">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#decryptIV</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>A "sliding" Initialization Vector</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_debuffer">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#debuffer</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Decryption buffer for CTR, OFB and CFB modes</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_demcrypt">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#demcrypt</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>mcrypt resource for decryption</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_dechanged">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#dechanged</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Does the demcrypt resource need to be (re)initialized?</dd><dt><a href="phpseclib/Crypt/Base.html#method_decrypt">
<abbr title="phpseclib\Crypt\Base">Base</abbr>::decrypt</a>() — <em>Method in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Decrypts a message.</dd><dt><a href="phpseclib/Crypt/Base.html#method_disablePadding">
<abbr title="phpseclib\Crypt\Base">Base</abbr>::disablePadding</a>() — <em>Method in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Do not pad packets.</dd><dt><a href="phpseclib/Crypt/Base.html#method_disableContinuousBuffer">
<abbr title="phpseclib\Crypt\Base">Base</abbr>::disableContinuousBuffer</a>() — <em>Method in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Treat consecutive packets as if they are a discontinuous buffer.</dd><dt><a href="phpseclib/Crypt/Base.html#method_do_nothing">
<abbr title="phpseclib\Crypt\Base">Base</abbr>::do_nothing</a>() — <em>Method in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Dummy error handler to suppress mcrypt errors</dd><dt><a href="phpseclib/Crypt/DES.html"><abbr title="phpseclib\Crypt\DES">DES</abbr></a> — <em>Class in namespace <a href="phpseclib/Crypt.html">phpseclib\Crypt</a></em></dt>
<dd>Pure-PHP implementation of DES.</dd><dt>$<a href="phpseclib/Crypt/DES.html#property_des_rounds">
<abbr title="phpseclib\Crypt\DES">DES</abbr>#des_rounds</a> — <em>Property in class <a href="phpseclib/Crypt/DES.html"><abbr title="phpseclib\Crypt\DES">DES</abbr></a></em></dt>
<dd>Switch for DES/3DES encryption</dd><dt>$<a href="phpseclib/Crypt/RC2.html#property_default_key_length">
<abbr title="phpseclib\Crypt\RC2">RC2</abbr>#default_key_length</a> — <em>Property in class <a href="phpseclib/Crypt/RC2.html"><abbr title="phpseclib\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>The key length in bits.</dd><dt><a href="phpseclib/Crypt/RC2.html#method_decrypt">
<abbr title="phpseclib\Crypt\RC2">RC2</abbr>::decrypt</a>() — <em>Method in class <a href="phpseclib/Crypt/RC2.html"><abbr title="phpseclib\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>Decrypts a message.</dd><dt><a href="phpseclib/Crypt/RC4.html#method_decrypt">
<abbr title="phpseclib\Crypt\RC4">RC4</abbr>::decrypt</a>() — <em>Method in class <a href="phpseclib/Crypt/RC4.html"><abbr title="phpseclib\Crypt\RC4">RC4</abbr></a></em></dt>
<dd>Decrypts a message.</dd><dt><a href="phpseclib/Crypt/RSA.html#method_decrypt">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>::decrypt</a>() — <em>Method in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Decryption</dd><dt>$<a href="phpseclib/Crypt/Rijndael.html#property_dw">
<abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr>#dw</a> — <em>Property in class <a href="phpseclib/Crypt/Rijndael.html"><abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>The Inverse Key Schedule</dd><dt>$<a href="phpseclib/Crypt/TripleDES.html#property_des">
<abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr>#des</a> — <em>Property in class <a href="phpseclib/Crypt/TripleDES.html"><abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>The \phpseclib\Crypt\DES objects</dd><dt><a href="phpseclib/Crypt/TripleDES.html#method_decrypt">
<abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr>::decrypt</a>() — <em>Method in class <a href="phpseclib/Crypt/TripleDES.html"><abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>Decrypts a message.</dd><dt><a href="phpseclib/Crypt/TripleDES.html#method_disableContinuousBuffer">
<abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr>::disableContinuousBuffer</a>() — <em>Method in class <a href="phpseclib/Crypt/TripleDES.html"><abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>Treat consecutive packets as if they are a discontinuous buffer.</dd><dt><a href="phpseclib/File/ASN1.html#method_decodeBER">
<abbr title="phpseclib\File\ASN1">ASN1</abbr>::decodeBER</a>() — <em>Method in class <a href="phpseclib/File/ASN1.html"><abbr title="phpseclib\File\ASN1">ASN1</abbr></a></em></dt>
<dd>Parse BER-encoding</dd><dt>$<a href="phpseclib/File/X509.html#property_DirectoryString">
<abbr title="phpseclib\File\X509">X509</abbr>#DirectoryString</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_dn">
<abbr title="phpseclib\File\X509">X509</abbr>#dn</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Distinguished Name</dd><dt>$<a href="phpseclib/File/X509.html#property_disable_url_fetch">
<abbr title="phpseclib\File\X509">X509</abbr>#disable_url_fetch</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>URL fetch flag</dd><dt><a href="phpseclib/File/X509.html#method_disableURLFetch">
<abbr title="phpseclib\File\X509">X509</abbr>::disableURLFetch</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Prevents URIs from being automatically retrieved</dd><dt><a href="phpseclib/Math/BigInteger.html#method_divide">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::divide</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Divides two BigIntegers.</dd><dt><a href="phpseclib/Net/SFTP.html#method_disableStatCache">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::disableStatCache</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Disable the stat cache</dd><dt><a href="phpseclib/Net/SFTP.html#method_disablePathCanonicalization">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::disablePathCanonicalization</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Enable path canonicalization</dd><dt><a href="phpseclib/Net/SFTP.html#method_delete">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::delete</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Deletes a file on the SFTP server.</dd><dt><a href="phpseclib/Net/SFTP.html#method_disableDatePreservation">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::disableDatePreservation</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Disable Date Preservation</dd><dt><a href="phpseclib/Net/SSH1.html#method_disconnect">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>::disconnect</a>() — <em>Method in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Disconnect</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_decrypt_block_size">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#decrypt_block_size</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Block Size for Client to Server Encryption</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_decrypt">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#decrypt</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Server to Client Encryption Object</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_disconnect_reasons">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#disconnect_reasons</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Disconnection Message 'reason codes' defined in RFC4253</dd><dt><a href="phpseclib/Net/SSH2.html#method_disconnect">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::disconnect</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Disconnect</dd><dt><a href="phpseclib/Net/SSH2.html#method_disableQuietMode">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::disableQuietMode</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Disable Quiet Mode</dd><dt><a href="phpseclib/Net/SSH2.html#method_disablePTY">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::disablePTY</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Disable request-pty when using exec()</dd> </dl><h2 id="letterE">E</h2>
<dl id="indexE"><dt>$<a href="phpseclib/Crypt/Base.html#property_encryptIV">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#encryptIV</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>A "sliding" Initialization Vector</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_enbuffer">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#enbuffer</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Encryption buffer for CTR, OFB and CFB modes</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_enmcrypt">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#enmcrypt</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>mcrypt resource for encryption</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_enchanged">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#enchanged</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Does the enmcrypt resource need to be (re)initialized?</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_ecb">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#ecb</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>mcrypt resource for CFB mode</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_engine">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#engine</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Holds which crypt engine internaly should be use,
which will be determined automatically on __construct()</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_explicit_key_length">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#explicit_key_length</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</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="phpseclib/Crypt/Base.html#method_encrypt">
<abbr title="phpseclib\Crypt\Base">Base</abbr>::encrypt</a>() — <em>Method in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Encrypts a message.</dd><dt><a href="phpseclib/Crypt/Base.html#method_enablePadding">
<abbr title="phpseclib\Crypt\Base">Base</abbr>::enablePadding</a>() — <em>Method in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Pad "packets".</dd><dt><a href="phpseclib/Crypt/Base.html#method_enableContinuousBuffer">
<abbr title="phpseclib\Crypt\Base">Base</abbr>::enableContinuousBuffer</a>() — <em>Method in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Treat consecutive "packets" as if they are a continuous buffer.</dd><dt>$<a href="phpseclib/Crypt/Hash.html#property_engine">
<abbr title="phpseclib\Crypt\Hash">Hash</abbr>#engine</a> — <em>Property in class <a href="phpseclib/Crypt/Hash.html"><abbr title="phpseclib\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Engine</dd><dt><a href="phpseclib/Crypt/RC2.html#method_encrypt">
<abbr title="phpseclib\Crypt\RC2">RC2</abbr>::encrypt</a>() — <em>Method in class <a href="phpseclib/Crypt/RC2.html"><abbr title="phpseclib\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>Encrypts a message.</dd><dt><a href="phpseclib/Crypt/RC4.html#method_encrypt">
<abbr title="phpseclib\Crypt\RC4">RC4</abbr>::encrypt</a>() — <em>Method in class <a href="phpseclib/Crypt/RC4.html"><abbr title="phpseclib\Crypt\RC4">RC4</abbr></a></em></dt>
<dd>Encrypts a message.</dd><dt>$<a href="phpseclib/Crypt/RSA.html#property_exponent">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>#exponent</a> — <em>Property in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Exponent (ie. e or d)</dd><dt>$<a href="phpseclib/Crypt/RSA.html#property_exponents">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>#exponents</a> — <em>Property in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Exponents for Chinese Remainder Theorem (ie. dP and dQ)</dd><dt>$<a href="phpseclib/Crypt/RSA.html#property_encryptionMode">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>#encryptionMode</a> — <em>Property in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Encryption mode</dd><dt><a href="phpseclib/Crypt/RSA.html#method_encrypt">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>::encrypt</a>() — <em>Method in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Encryption</dd><dt><a href="phpseclib/Crypt/TripleDES.html#method_encrypt">
<abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr>::encrypt</a>() — <em>Method in class <a href="phpseclib/Crypt/TripleDES.html"><abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>Encrypts a message.</dd><dt><a href="phpseclib/Crypt/TripleDES.html#method_enableContinuousBuffer">
<abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr>::enableContinuousBuffer</a>() — <em>Method in class <a href="phpseclib/Crypt/TripleDES.html"><abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>Treat consecutive "packets" as if they are a continuous buffer.</dd><dt>$<a href="phpseclib/File/ASN1.html#property_encoded">
<abbr title="phpseclib\File\ASN1">ASN1</abbr>#encoded</a> — <em>Property in class <a href="phpseclib/File/ASN1.html"><abbr title="phpseclib\File\ASN1">ASN1</abbr></a></em></dt>
<dd>Default date format</dd><dt><a href="phpseclib/File/ASN1.html#method_encodeDER">
<abbr title="phpseclib\File\ASN1">ASN1</abbr>::encodeDER</a>() — <em>Method in class <a href="phpseclib/File/ASN1.html"><abbr title="phpseclib\File\ASN1">ASN1</abbr></a></em></dt>
<dd>ASN.1 Encode</dd><dt><a href="phpseclib/File/ASN1/Element.html"><abbr title="phpseclib\File\ASN1\Element">Element</abbr></a> — <em>Class in namespace <a href="phpseclib/File/ASN1.html">phpseclib\File\ASN1</a></em></dt>
<dd>ASN.1 Element</dd><dt>$<a href="phpseclib/File/ASN1/Element.html#property_element">
<abbr title="phpseclib\File\ASN1\Element">Element</abbr>#element</a> — <em>Property in class <a href="phpseclib/File/ASN1/Element.html"><abbr title="phpseclib\File\ASN1\Element">Element</abbr></a></em></dt>
<dd>Raw element value</dd><dt>$<a href="phpseclib/File/X509.html#property_Extensions">
<abbr title="phpseclib\File\X509">X509</abbr>#Extensions</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_ExtKeyUsageSyntax">
<abbr title="phpseclib\File\X509">X509</abbr>#ExtKeyUsageSyntax</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_endDate">
<abbr title="phpseclib\File\X509">X509</abbr>#endDate</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Certificate End Date</dd><dt><a href="phpseclib/File/X509.html#method_enableURLFetch">
<abbr title="phpseclib\File\X509">X509</abbr>::enableURLFetch</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Allows URIs to be automatically retrieved</dd><dt><a href="phpseclib/Math/BigInteger.html#method_extendedGCD">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::extendedGCD</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Calculates the greatest common divisor and Bezout's identity.</dd><dt><a href="phpseclib/Math/BigInteger.html#method_equals">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::equals</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Tests the equality of two numbers.</dd><dt>$<a href="phpseclib/Net/SFTP.html#property_extensions">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>#extensions</a> — <em>Property in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Extensions supported by the server</dd><dt><a href="phpseclib/Net/SFTP.html#method_enableStatCache">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::enableStatCache</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Enable the stat cache</dd><dt><a href="phpseclib/Net/SFTP.html#method_enablePathCanonicalization">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::enablePathCanonicalization</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Enable path canonicalization</dd><dt><a href="phpseclib/Net/SFTP.html#method_enableDatePreservation">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::enableDatePreservation</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Enable Date Preservation</dd><dt>$<a href="phpseclib/Net/SFTP/Stream.html#property_entries">
<abbr title="phpseclib\Net\SFTP\Stream">Stream</abbr>#entries</a> — <em>Property in class <a href="phpseclib/Net/SFTP/Stream.html"><abbr title="phpseclib\Net\SFTP\Stream">Stream</abbr></a></em></dt>
<dd>Directory entries</dd><dt>$<a href="phpseclib/Net/SFTP/Stream.html#property_eof">
<abbr title="phpseclib\Net\SFTP\Stream">Stream</abbr>#eof</a> — <em>Property in class <a href="phpseclib/Net/SFTP/Stream.html"><abbr title="phpseclib\Net\SFTP\Stream">Stream</abbr></a></em></dt>
<dd>EOF flag</dd><dt><a href="phpseclib/Net/SSH1.html#method_exec">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>::exec</a>() — <em>Method in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Executes a command on a non-interactive shell, returns the output, and quits.</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_errors">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#errors</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Error information</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_encryption_algorithms_client_to_server">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#encryption_algorithms_client_to_server</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Encryption Algorithms: Client to Server</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_encryption_algorithms_server_to_client">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#encryption_algorithms_server_to_client</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Encryption Algorithms: Server to Client</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_encrypt_block_size">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#encrypt_block_size</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Block Size for Server to Client Encryption</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_encrypt">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#encrypt</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Client to Server Encryption Object</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_exchange_hash">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#exchange_hash</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Exchange hash</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_exit_status">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#exit_status</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Exit status returned from ssh if any</dd><dt><a href="phpseclib/Net/SSH2.html#method_exec">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::exec</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Execute Command</dd><dt><a href="phpseclib/Net/SSH2.html#method_enableQuietMode">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::enableQuietMode</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Enable Quiet Mode</dd><dt><a href="phpseclib/Net/SSH2.html#method_enablePTY">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::enablePTY</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Enable request-pty when using exec()</dd><dt>$<a href="phpseclib/System/SSH/Agent.html#property_expected_bytes">
<abbr title="phpseclib\System\SSH\Agent">Agent</abbr>#expected_bytes</a> — <em>Property in class <a href="phpseclib/System/SSH/Agent.html"><abbr title="phpseclib\System\SSH\Agent">Agent</abbr></a></em></dt>
<dd>Tracking the number of bytes we are expecting
to arrive for the agent socket on the SSH data
channel</dd> </dl><h2 id="letterF">F</h2>
<dl id="indexF"><dt>$<a href="phpseclib/File/ASN1.html#property_format">
<abbr title="phpseclib\File\ASN1">ASN1</abbr>#format</a> — <em>Property in class <a href="phpseclib/File/ASN1.html"><abbr title="phpseclib\File\ASN1">ASN1</abbr></a></em></dt>
<dd>Default date format</dd><dt>$<a href="phpseclib/File/ASN1.html#property_filters">
<abbr title="phpseclib\File\ASN1">ASN1</abbr>#filters</a> — <em>Property in class <a href="phpseclib/File/ASN1.html"><abbr title="phpseclib\File\ASN1">ASN1</abbr></a></em></dt>
<dd>Filters</dd><dt><a href="phpseclib/Net/SFTP.html#method_file_exists">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::file_exists</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Checks whether a file or directory exists</dd><dt><a href="phpseclib/Net/SFTP.html#method_fileatime">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::fileatime</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Gets last access time of file</dd><dt><a href="phpseclib/Net/SFTP.html#method_filemtime">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::filemtime</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Gets file modification time</dd><dt><a href="phpseclib/Net/SFTP.html#method_fileperms">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::fileperms</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Gets file permissions</dd><dt><a href="phpseclib/Net/SFTP.html#method_fileowner">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::fileowner</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Gets file owner</dd><dt><a href="phpseclib/Net/SFTP.html#method_filegroup">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::filegroup</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Gets file group</dd><dt><a href="phpseclib/Net/SFTP.html#method_filesize">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::filesize</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Gets file size</dd><dt><a href="phpseclib/Net/SFTP.html#method_filetype">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::filetype</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Gets file type</dd><dt>$<a href="phpseclib/Net/SSH1.html#property_fsock">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>#fsock</a> — <em>Property in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>The Socket Object</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_fsock">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#fsock</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>The Socket Object</dd><dt>$<a href="phpseclib/System/SSH/Agent.html#property_fsock">
<abbr title="phpseclib\System\SSH\Agent">Agent</abbr>#fsock</a> — <em>Property in class <a href="phpseclib/System/SSH/Agent.html"><abbr title="phpseclib\System\SSH\Agent">Agent</abbr></a></em></dt>
<dd>Socket Resource</dd><dt>$<a href="phpseclib/System/SSH/Agent.html#property_forward_status">
<abbr title="phpseclib\System\SSH\Agent">Agent</abbr>#forward_status</a> — <em>Property in class <a href="phpseclib/System/SSH/Agent.html"><abbr title="phpseclib\System\SSH\Agent">Agent</abbr></a></em></dt>
<dd>Agent forwarding status</dd><dt>$<a href="phpseclib/System/SSH/Agent/Identity.html#property_fsock">
<abbr title="phpseclib\System\SSH\Agent\Identity">Identity</abbr>#fsock</a> — <em>Property in class <a href="phpseclib/System/SSH/Agent/Identity.html"><abbr title="phpseclib\System\SSH\Agent\Identity">Identity</abbr></a></em></dt>
<dd>Socket Resource</dd><dt>$<a href="phpseclib/System/SSH/Agent/Identity.html#property_flags">
<abbr title="phpseclib\System\SSH\Agent\Identity">Identity</abbr>#flags</a> — <em>Property in class <a href="phpseclib/System/SSH/Agent/Identity.html"><abbr title="phpseclib\System\SSH\Agent\Identity">Identity</abbr></a></em></dt>
<dd>Signature flags</dd> </dl><h2 id="letterG">G</h2>
<dl id="indexG"><dt><a href="phpseclib/Crypt/Base.html#method_getKeyLength">
<abbr title="phpseclib\Crypt\Base">Base</abbr>::getKeyLength</a>() — <em>Method in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Returns the current key length in bits</dd><dt><a href="phpseclib/Crypt/Base.html#method_getBlockLength">
<abbr title="phpseclib\Crypt\Base">Base</abbr>::getBlockLength</a>() — <em>Method in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Returns the current block length in bits</dd><dt><a href="phpseclib/Crypt/Base.html#method_getEngine">
<abbr title="phpseclib\Crypt\Base">Base</abbr>::getEngine</a>() — <em>Method in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Returns the engine currently being utilized</dd><dt><a href="phpseclib/Crypt/Hash.html#method_getHash">
<abbr title="phpseclib\Crypt\Hash">Hash</abbr>::getHash</a>() — <em>Method in class <a href="phpseclib/Crypt/Hash.html"><abbr title="phpseclib\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Gets the hash function.</dd><dt><a href="phpseclib/Crypt/Hash.html#method_getLength">
<abbr title="phpseclib\Crypt\Hash">Hash</abbr>::getLength</a>() — <em>Method in class <a href="phpseclib/Crypt/Hash.html"><abbr title="phpseclib\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Returns the hash length (in bytes)</dd><dt><a href="phpseclib/Crypt/RC2.html#method_getKeyLength">
<abbr title="phpseclib\Crypt\RC2">RC2</abbr>::getKeyLength</a>() — <em>Method in class <a href="phpseclib/Crypt/RC2.html"><abbr title="phpseclib\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>Returns the current key length</dd><dt><a href="phpseclib/Crypt/RSA.html#method_getSize">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>::getSize</a>() — <em>Method in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Returns the key size</dd><dt><a href="phpseclib/Crypt/RSA.html#method_getPublicKey">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>::getPublicKey</a>() — <em>Method in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Returns the public key</dd><dt><a href="phpseclib/Crypt/RSA.html#method_getPublicKeyFingerprint">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>::getPublicKeyFingerprint</a>() — <em>Method in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Returns the public key's fingerprint</dd><dt><a href="phpseclib/Crypt/RSA.html#method_getPrivateKey">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>::getPrivateKey</a>() — <em>Method in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Returns the private key</dd><dt><a href="phpseclib/Crypt/RSA.html#method_getComment">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>::getComment</a>() — <em>Method in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Get public key comment.</dd><dt><a href="phpseclib/File/ANSI.html#method_getScreen">
<abbr title="phpseclib\File\ANSI">ANSI</abbr>::getScreen</a>() — <em>Method in class <a href="phpseclib/File/ANSI.html"><abbr title="phpseclib\File\ANSI">ANSI</abbr></a></em></dt>
<dd>Returns the current screen</dd><dt><a href="phpseclib/File/ANSI.html#method_getHistory">
<abbr title="phpseclib\File\ANSI">ANSI</abbr>::getHistory</a>() — <em>Method in class <a href="phpseclib/File/ANSI.html"><abbr title="phpseclib\File\ANSI">ANSI</abbr></a></em></dt>
<dd>Returns the current screen and the x previous lines</dd><dt><a href="phpseclib/File/X509.html#method_getDNProp">
<abbr title="phpseclib\File\X509">X509</abbr>::getDNProp</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Get Distinguished Name properties</dd><dt><a href="phpseclib/File/X509.html#method_getDN">
<abbr title="phpseclib\File\X509">X509</abbr>::getDN</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Get the Distinguished Name for a certificates subject</dd><dt><a href="phpseclib/File/X509.html#method_getIssuerDN">
<abbr title="phpseclib\File\X509">X509</abbr>::getIssuerDN</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Get the Distinguished Name for a certificate/crl issuer</dd><dt><a href="phpseclib/File/X509.html#method_getSubjectDN">
<abbr title="phpseclib\File\X509">X509</abbr>::getSubjectDN</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Get the Distinguished Name for a certificate/csr subject
Alias of getDN()</dd><dt><a href="phpseclib/File/X509.html#method_getIssuerDNProp">
<abbr title="phpseclib\File\X509">X509</abbr>::getIssuerDNProp</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Get an individual Distinguished Name property for a certificate/crl issuer</dd><dt><a href="phpseclib/File/X509.html#method_getSubjectDNProp">
<abbr title="phpseclib\File\X509">X509</abbr>::getSubjectDNProp</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Get an individual Distinguished Name property for a certificate/csr subject</dd><dt><a href="phpseclib/File/X509.html#method_getChain">
<abbr title="phpseclib\File\X509">X509</abbr>::getChain</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Get the certificate chain for the current cert</dd><dt><a href="phpseclib/File/X509.html#method_getPublicKey">
<abbr title="phpseclib\File\X509">X509</abbr>::getPublicKey</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Gets the public key</dd><dt><a href="phpseclib/File/X509.html#method_getExtension">
<abbr title="phpseclib\File\X509">X509</abbr>::getExtension</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Get a certificate, CSR or CRL Extension</dd><dt><a href="phpseclib/File/X509.html#method_getExtensions">
<abbr title="phpseclib\File\X509">X509</abbr>::getExtensions</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Returns a list of all extensions in use in certificate, CSR or CRL</dd><dt><a href="phpseclib/File/X509.html#method_getAttribute">
<abbr title="phpseclib\File\X509">X509</abbr>::getAttribute</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Get a CSR attribute</dd><dt><a href="phpseclib/File/X509.html#method_getAttributes">
<abbr title="phpseclib\File\X509">X509</abbr>::getAttributes</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Returns a list of all CSR attributes in use</dd><dt><a href="phpseclib/File/X509.html#method_getRevoked">
<abbr title="phpseclib\File\X509">X509</abbr>::getRevoked</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Get a revoked certificate.</dd><dt><a href="phpseclib/File/X509.html#method_getRevokedCertificateExtension">
<abbr title="phpseclib\File\X509">X509</abbr>::getRevokedCertificateExtension</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Get a Revoked Certificate Extension</dd><dt><a href="phpseclib/File/X509.html#method_getRevokedCertificateExtensions">
<abbr title="phpseclib\File\X509">X509</abbr>::getRevokedCertificateExtensions</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Returns a list of all extensions in use for a given revoked certificate</dd><dt><a href="phpseclib/File/X509.html#method_getOID">
<abbr title="phpseclib\File\X509">X509</abbr>::getOID</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Returns the OID corresponding to a name</dd><dt><a href="phpseclib/Math/BigInteger.html#method_gcd">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::gcd</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Calculates the greatest common divisor</dd><dt><a href="phpseclib/Net/SCP.html#method_get">
<abbr title="phpseclib\Net\SCP">SCP</abbr>::get</a>() — <em>Method in class <a href="phpseclib/Net/SCP.html"><abbr title="phpseclib\Net\SCP">SCP</abbr></a></em></dt>
<dd>Downloads a file from the SCP server.</dd><dt><a href="phpseclib/Net/SFTP.html#method_get">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::get</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Downloads a file from the SFTP server.</dd><dt><a href="phpseclib/Net/SFTP.html#method_getSFTPLog">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::getSFTPLog</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Returns a log of the packets that have been sent and received.</dd><dt><a href="phpseclib/Net/SFTP.html#method_getSFTPErrors">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::getSFTPErrors</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Returns all errors</dd><dt><a href="phpseclib/Net/SFTP.html#method_getLastSFTPError">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::getLastSFTPError</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Returns the last error</dd><dt><a href="phpseclib/Net/SFTP.html#method_getSupportedVersions">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::getSupportedVersions</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Get supported SFTP versions</dd><dt><a href="phpseclib/Net/SSH1.html#method_getLog">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>::getLog</a>() — <em>Method in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Returns a log of the packets that have been sent and received.</dd><dt><a href="phpseclib/Net/SSH1.html#method_getServerKeyPublicExponent">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>::getServerKeyPublicExponent</a>() — <em>Method in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Return the server key public exponent</dd><dt><a href="phpseclib/Net/SSH1.html#method_getServerKeyPublicModulus">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>::getServerKeyPublicModulus</a>() — <em>Method in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Return the server key public modulus</dd><dt><a href="phpseclib/Net/SSH1.html#method_getHostKeyPublicExponent">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>::getHostKeyPublicExponent</a>() — <em>Method in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Return the host key public exponent</dd><dt><a href="phpseclib/Net/SSH1.html#method_getHostKeyPublicModulus">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>::getHostKeyPublicModulus</a>() — <em>Method in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Return the host key public modulus</dd><dt><a href="phpseclib/Net/SSH1.html#method_getSupportedCiphers">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>::getSupportedCiphers</a>() — <em>Method in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Return a list of ciphers supported by SSH1 server.</dd><dt><a href="phpseclib/Net/SSH1.html#method_getSupportedAuthentications">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>::getSupportedAuthentications</a>() — <em>Method in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Return a list of authentications supported by SSH1 server.</dd><dt><a href="phpseclib/Net/SSH1.html#method_getServerIdentification">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>::getServerIdentification</a>() — <em>Method in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Return the server identification.</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_get_seq_no">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#get_seq_no</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Get Sequence Number</dd><dt><a href="phpseclib/Net/SSH2.html#method_getStdError">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getStdError</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Get the output from stdError</dd><dt><a href="phpseclib/Net/SSH2.html#method_getLog">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getLog</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns a log of the packets that have been sent and received.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getErrors">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getErrors</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns all errors</dd><dt><a href="phpseclib/Net/SSH2.html#method_getLastError">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getLastError</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns the last error</dd><dt><a href="phpseclib/Net/SSH2.html#method_getServerIdentification">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getServerIdentification</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Return the server identification.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getKexAlgorithms">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getKexAlgorithms</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Return a list of the key exchange algorithms the server supports.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getServerHostKeyAlgorithms">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getServerHostKeyAlgorithms</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Return a list of the host key (public key) algorithms the server supports.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getEncryptionAlgorithmsClient2Server">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getEncryptionAlgorithmsClient2Server</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Return a list of the (symmetric key) encryption algorithms the server supports, when receiving stuff from the client.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getEncryptionAlgorithmsServer2Client">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getEncryptionAlgorithmsServer2Client</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Return a list of the (symmetric key) encryption algorithms the server supports, when sending stuff to the client.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getMACAlgorithmsClient2Server">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getMACAlgorithmsClient2Server</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Return a list of the MAC algorithms the server supports, when receiving stuff from the client.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getMACAlgorithmsServer2Client">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getMACAlgorithmsServer2Client</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Return a list of the MAC algorithms the server supports, when sending stuff to the client.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getCompressionAlgorithmsClient2Server">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getCompressionAlgorithmsClient2Server</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Return a list of the compression algorithms the server supports, when receiving stuff from the client.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getCompressionAlgorithmsServer2Client">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getCompressionAlgorithmsServer2Client</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Return a list of the compression algorithms the server supports, when sending stuff to the client.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getLanguagesServer2Client">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getLanguagesServer2Client</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Return a list of the languages the server supports, when sending stuff to the client.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getLanguagesClient2Server">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getLanguagesClient2Server</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Return a list of the languages the server supports, when receiving stuff from the client.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getServerAlgorithms">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getServerAlgorithms</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns a list of algorithms the server supports</dd><dt><a href="phpseclib/Net/SSH2.html#method_getSupportedKEXAlgorithms">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getSupportedKEXAlgorithms</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns a list of KEX algorithms that phpseclib supports</dd><dt><a href="phpseclib/Net/SSH2.html#method_getSupportedHostKeyAlgorithms">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getSupportedHostKeyAlgorithms</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns a list of host key algorithms that phpseclib supports</dd><dt><a href="phpseclib/Net/SSH2.html#method_getSupportedEncryptionAlgorithms">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getSupportedEncryptionAlgorithms</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns a list of symmetric key algorithms that phpseclib supports</dd><dt><a href="phpseclib/Net/SSH2.html#method_getSupportedMACAlgorithms">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getSupportedMACAlgorithms</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns a list of MAC algorithms that phpseclib supports</dd><dt><a href="phpseclib/Net/SSH2.html#method_getSupportedCompressionAlgorithms">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getSupportedCompressionAlgorithms</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns a list of compression algorithms that phpseclib supports</dd><dt><a href="phpseclib/Net/SSH2.html#method_getAlgorithmsNegotiated">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getAlgorithmsNegotiated</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Return list of negotiated algorithms</dd><dt><a href="phpseclib/Net/SSH2.html#method_getBannerMessage">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getBannerMessage</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns the banner message.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getServerPublicHostKey">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getServerPublicHostKey</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns the server public host key.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getExitStatus">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getExitStatus</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns the exit status of an SSH command or false.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getWindowColumns">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getWindowColumns</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns the number of columns for the terminal window size.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getWindowRows">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getWindowRows</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns the number of rows for the terminal window size.</dd><dt><a href="phpseclib/Net/SSH2.html#method_getAuthMethodsToContinue">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::getAuthMethodsToContinue</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Return the list of authentication methods that may productively continue authentication.</dd><dt><a href="phpseclib/System/SSH/Agent/Identity.html#method_getPublicKey">
<abbr title="phpseclib\System\SSH\Agent\Identity">Identity</abbr>::getPublicKey</a>() — <em>Method in class <a href="phpseclib/System/SSH/Agent/Identity.html"><abbr title="phpseclib\System\SSH\Agent\Identity">Identity</abbr></a></em></dt>
<dd>Get Public Key</dd> </dl><h2 id="letterH">H</h2>
<dl id="indexH"><dt><a href="phpseclib/Crypt/Hash.html"><abbr title="phpseclib\Crypt\Hash">Hash</abbr></a> — <em>Class in namespace <a href="phpseclib/Crypt.html">phpseclib\Crypt</a></em></dt>
<dd>Pure-PHP implementations of keyed-hash message authentication codes (HMACs) and various cryptographic hashing functions.</dd><dt>$<a href="phpseclib/Crypt/Hash.html#property_hashParam">
<abbr title="phpseclib\Crypt\Hash">Hash</abbr>#hashParam</a> — <em>Property in class <a href="phpseclib/Crypt/Hash.html"><abbr title="phpseclib\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Hash Parameter</dd><dt>$<a href="phpseclib/Crypt/Hash.html#property_hash">
<abbr title="phpseclib\Crypt\Hash">Hash</abbr>#hash</a> — <em>Property in class <a href="phpseclib/Crypt/Hash.html"><abbr title="phpseclib\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Hash Algorithm</dd><dt><a href="phpseclib/Crypt/Hash.html#method_hash">
<abbr title="phpseclib\Crypt\Hash">Hash</abbr>::hash</a>() — <em>Method in class <a href="phpseclib/Crypt/Hash.html"><abbr title="phpseclib\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Compute the HMAC.</dd><dt>$<a href="phpseclib/Crypt/RSA.html#property_hashName">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>#hashName</a> — <em>Property in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Hash name</dd><dt>$<a href="phpseclib/Crypt/RSA.html#property_hash">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>#hash</a> — <em>Property in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Hash function</dd><dt>$<a href="phpseclib/Crypt/RSA.html#property_hLen">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>#hLen</a> — <em>Property in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Length of hash function output</dd><dt>$<a href="phpseclib/File/ANSI.html#property_history">
<abbr title="phpseclib\File\ANSI">ANSI</abbr>#history</a> — <em>Property in class <a href="phpseclib/File/ANSI.html"><abbr title="phpseclib\File\ANSI">ANSI</abbr></a></em></dt>
<dd>History</dd><dt>$<a href="phpseclib/File/ANSI.html#property_history_attrs">
<abbr title="phpseclib\File\ANSI">ANSI</abbr>#history_attrs</a> — <em>Property in class <a href="phpseclib/File/ANSI.html"><abbr title="phpseclib\File\ANSI">ANSI</abbr></a></em></dt>
<dd>History Attributes</dd><dt>$<a href="phpseclib/File/X509.html#property_HoldInstructionCode">
<abbr title="phpseclib\File\X509">X509</abbr>#HoldInstructionCode</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/Math/BigInteger.html#property_hex">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>#hex</a> — <em>Property in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Mode independent value used for serialization.</dd><dt>$<a href="phpseclib/Net/SSH1.html#property_host_key_public_exponent">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>#host_key_public_exponent</a> — <em>Property in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>The Host Key Public Exponent</dd><dt>$<a href="phpseclib/Net/SSH1.html#property_host_key_public_modulus">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>#host_key_public_modulus</a> — <em>Property in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>The Host Key Public Modulus</dd><dt>$<a href="phpseclib/Net/SSH1.html#property_host">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>#host</a> — <em>Property in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Hostname</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_hmac_create">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#hmac_create</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Client to Server HMAC Object</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_hmac_check">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#hmac_check</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Server to Client HMAC Object</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_hmac_size">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#hmac_size</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Size of server to client HMAC</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_host">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#host</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Hostname</dd> </dl><h2 id="letterI">I</h2>
<dl id="indexI"><dt>$<a href="phpseclib/Crypt/Base.html#property_iv">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#iv</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>The Initialization Vector</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_inline_crypt">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#inline_crypt</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>The name of the performance-optimized callback function</dd><dt><a href="phpseclib/Crypt/Base.html#method_isValidEngine">
<abbr title="phpseclib\Crypt\Base">Base</abbr>::isValidEngine</a>() — <em>Method in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Test for engine validity</dd><dt><a href="phpseclib/Crypt/Blowfish.html#method_isValidEngine">
<abbr title="phpseclib\Crypt\Blowfish">Blowfish</abbr>::isValidEngine</a>() — <em>Method in class <a href="phpseclib/Crypt/Blowfish.html"><abbr title="phpseclib\Crypt\Blowfish">Blowfish</abbr></a></em></dt>
<dd>Test for engine validity</dd><dt>$<a href="phpseclib/Crypt/DES.html#property_ipmap">
<abbr title="phpseclib\Crypt\DES">DES</abbr>#ipmap</a> — <em>Property in class <a href="phpseclib/Crypt/DES.html"><abbr title="phpseclib\Crypt\DES">DES</abbr></a></em></dt>
<dd>IP mapping helper table.</dd><dt>$<a href="phpseclib/Crypt/DES.html#property_invipmap">
<abbr title="phpseclib\Crypt\DES">DES</abbr>#invipmap</a> — <em>Property in class <a href="phpseclib/Crypt/DES.html"><abbr title="phpseclib\Crypt\DES">DES</abbr></a></em></dt>
<dd>Inverse IP mapping helper table.</dd><dt><a href="phpseclib/Crypt/DES.html#method_isValidEngine">
<abbr title="phpseclib\Crypt\DES">DES</abbr>::isValidEngine</a>() — <em>Method in class <a href="phpseclib/Crypt/DES.html"><abbr title="phpseclib\Crypt\DES">DES</abbr></a></em></dt>
<dd>Test for engine validity</dd><dt>$<a href="phpseclib/Crypt/Hash.html#property_ipad">
<abbr title="phpseclib\Crypt\Hash">Hash</abbr>#ipad</a> — <em>Property in class <a href="phpseclib/Crypt/Hash.html"><abbr title="phpseclib\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Inner XOR (Internal HMAC)</dd><dt>$<a href="phpseclib/Crypt/RC2.html#property_invpitable">
<abbr title="phpseclib\Crypt\RC2">RC2</abbr>#invpitable</a> — <em>Property in class <a href="phpseclib/Crypt/RC2.html"><abbr title="phpseclib\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>Inverse key expansion randomization table.</dd><dt><a href="phpseclib/Crypt/RC2.html#method_isValidEngine">
<abbr title="phpseclib\Crypt\RC2">RC2</abbr>::isValidEngine</a>() — <em>Method in class <a href="phpseclib/Crypt/RC2.html"><abbr title="phpseclib\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>Test for engine validity</dd><dt><a href="phpseclib/Crypt/RC4.html#method_isValidEngine">
<abbr title="phpseclib\Crypt\RC4">RC4</abbr>::isValidEngine</a>() — <em>Method in class <a href="phpseclib/Crypt/RC4.html"><abbr title="phpseclib\Crypt\RC4">RC4</abbr></a></em></dt>
<dd>Test for engine validity</dd><dt><a href="phpseclib/Crypt/Rijndael.html#method_isValidEngine">
<abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr>::isValidEngine</a>() — <em>Method in class <a href="phpseclib/Crypt/Rijndael.html"><abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>Test for engine validity</dd><dt><a href="phpseclib/Crypt/TripleDES.html#method_isValidEngine">
<abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr>::isValidEngine</a>() — <em>Method in class <a href="phpseclib/Crypt/TripleDES.html"><abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>Test for engine validity</dd><dt>$<a href="phpseclib/File/X509.html#property_IssuerAltName">
<abbr title="phpseclib\File\X509">X509</abbr>#IssuerAltName</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_IssuingDistributionPoint">
<abbr title="phpseclib\File\X509">X509</abbr>#IssuingDistributionPoint</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_InvalidityDate">
<abbr title="phpseclib\File\X509">X509</abbr>#InvalidityDate</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/Math/BigInteger.html#property_is_negative">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>#is_negative</a> — <em>Property in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Holds the BigInteger's magnitude.</dd><dt><a href="phpseclib/Math/BigInteger.html#method_isPrime">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::isPrime</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Checks a numer to see if it's prime</dd><dt><a href="phpseclib/Net/SFTP.html#method_is_dir">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::is_dir</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Tells whether the filename is a directory</dd><dt><a href="phpseclib/Net/SFTP.html#method_is_file">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::is_file</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Tells whether the filename is a regular file</dd><dt><a href="phpseclib/Net/SFTP.html#method_is_link">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::is_link</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Tells whether the filename is a symbolic link</dd><dt><a href="phpseclib/Net/SFTP.html#method_is_readable">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::is_readable</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Tells whether a file exists and is readable</dd><dt><a href="phpseclib/Net/SFTP.html#method_is_writable">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::is_writable</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Tells whether the filename is writable</dd><dt><a href="phpseclib/Net/SFTP.html#method_is_writeable">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::is_writeable</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Tells whether the filename is writeable</dd><dt>$<a href="phpseclib/Net/SFTP/Stream.html#property_instances">
<abbr title="phpseclib\Net\SFTP\Stream">Stream</abbr>#instances</a> — <em>Property in class <a href="phpseclib/Net/SFTP/Stream.html"><abbr title="phpseclib\Net\SFTP\Stream">Stream</abbr></a></em></dt>
<dd>SFTP instances</dd><dt>$<a href="phpseclib/Net/SSH1.html#property_identifier">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>#identifier</a> — <em>Property in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>The SSH identifier</dd><dt>$<a href="phpseclib/Net/SSH1.html#property_interactiveBuffer">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>#interactiveBuffer</a> — <em>Property in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Interactive Buffer</dd><dt><a href="phpseclib/Net/SSH1.html#method_interactiveWrite">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>::interactiveWrite</a>() — <em>Method in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Inputs a command into an interactive shell.</dd><dt><a href="phpseclib/Net/SSH1.html#method_interactiveRead">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>::interactiveRead</a>() — <em>Method in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Returns the output of an interactive shell when no more output is available.</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_identifier">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#identifier</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>The SSH identifier</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_interactiveBuffer">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#interactiveBuffer</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Interactive Buffer</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_in_request_pty_exec">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#in_request_pty_exec</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Flag set while exec() is running when using enablePTY()</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_in_subsystem">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#in_subsystem</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Flag set after startSubsystem() is called</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_is_timeout">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#is_timeout</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Did read() timeout or return normally?</dd><dt><a href="phpseclib/Net/SSH2.html#method_isTimeout">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::isTimeout</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Is timeout?</dd><dt><a href="phpseclib/Net/SSH2.html#method_isConnected">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::isConnected</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Is the connection still active?</dd><dt><a href="phpseclib/Net/SSH2.html#method_isAuthenticated">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::isAuthenticated</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Have you successfully been logged in?</dd><dt><a href="phpseclib/Net/SSH2.html#method_isQuietModeEnabled">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::isQuietModeEnabled</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns whether Quiet Mode is enabled or not</dd><dt><a href="phpseclib/Net/SSH2.html#method_isPTYEnabled">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::isPTYEnabled</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Returns whether request-pty is enabled or not</dd><dt><a href="phpseclib/System/SSH/Agent/Identity.html"><abbr title="phpseclib\System\SSH\Agent\Identity">Identity</abbr></a> — <em>Class in namespace <a href="phpseclib/System/SSH/Agent.html">phpseclib\System\SSH\Agent</a></em></dt>
<dd>Pure-PHP ssh-agent client identity object</dd> </dl><h2 id="letterK">K</h2>
<dl id="indexK"><dt>$<a href="phpseclib/Crypt/Base.html#property_key">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#key</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>The Key</dd><dt>$<a href="phpseclib/Crypt/Blowfish.html#property_kl">
<abbr title="phpseclib\Crypt\Blowfish">Blowfish</abbr>#kl</a> — <em>Property in class <a href="phpseclib/Crypt/Blowfish.html"><abbr title="phpseclib\Crypt\Blowfish">Blowfish</abbr></a></em></dt>
<dd>Holds the last used key</dd><dt>$<a href="phpseclib/Crypt/Blowfish.html#property_key_length">
<abbr title="phpseclib\Crypt\Blowfish">Blowfish</abbr>#key_length</a> — <em>Property in class <a href="phpseclib/Crypt/Blowfish.html"><abbr title="phpseclib\Crypt\Blowfish">Blowfish</abbr></a></em></dt>
<dd>The Key Length (in bytes)</dd><dt>$<a href="phpseclib/Crypt/DES.html#property_key_length">
<abbr title="phpseclib\Crypt\DES">DES</abbr>#key_length</a> — <em>Property in class <a href="phpseclib/Crypt/DES.html"><abbr title="phpseclib\Crypt\DES">DES</abbr></a></em></dt>
<dd>Key Length (in bytes)</dd><dt>$<a href="phpseclib/Crypt/DES.html#property_key_length_max">
<abbr title="phpseclib\Crypt\DES">DES</abbr>#key_length_max</a> — <em>Property in class <a href="phpseclib/Crypt/DES.html"><abbr title="phpseclib\Crypt\DES">DES</abbr></a></em></dt>
<dd>max possible size of $key</dd><dt>$<a href="phpseclib/Crypt/DES.html#property_keys">
<abbr title="phpseclib\Crypt\DES">DES</abbr>#keys</a> — <em>Property in class <a href="phpseclib/Crypt/DES.html"><abbr title="phpseclib\Crypt\DES">DES</abbr></a></em></dt>
<dd>The Key Schedule</dd><dt>$<a href="phpseclib/Crypt/Hash.html#property_key">
<abbr title="phpseclib\Crypt\Hash">Hash</abbr>#key</a> — <em>Property in class <a href="phpseclib/Crypt/Hash.html"><abbr title="phpseclib\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Key</dd><dt>$<a href="phpseclib/Crypt/RC2.html#property_key">
<abbr title="phpseclib\Crypt\RC2">RC2</abbr>#key</a> — <em>Property in class <a href="phpseclib/Crypt/RC2.html"><abbr title="phpseclib\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>The Key</dd><dt>$<a href="phpseclib/Crypt/RC2.html#property_key_length">
<abbr title="phpseclib\Crypt\RC2">RC2</abbr>#key_length</a> — <em>Property in class <a href="phpseclib/Crypt/RC2.html"><abbr title="phpseclib\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>Key Length (in bytes)</dd><dt>$<a href="phpseclib/Crypt/RC2.html#property_keys">
<abbr title="phpseclib\Crypt\RC2">RC2</abbr>#keys</a> — <em>Property in class <a href="phpseclib/Crypt/RC2.html"><abbr title="phpseclib\Crypt\RC2">RC2</abbr></a></em></dt>
<dd>The Key Schedule</dd><dt>$<a href="phpseclib/Crypt/RC4.html#property_key_length">
<abbr title="phpseclib\Crypt\RC4">RC4</abbr>#key_length</a> — <em>Property in class <a href="phpseclib/Crypt/RC4.html"><abbr title="phpseclib\Crypt\RC4">RC4</abbr></a></em></dt>
<dd>Key Length (in bytes)</dd><dt>$<a href="phpseclib/Crypt/RC4.html#property_key">
<abbr title="phpseclib\Crypt\RC4">RC4</abbr>#key</a> — <em>Property in class <a href="phpseclib/Crypt/RC4.html"><abbr title="phpseclib\Crypt\RC4">RC4</abbr></a></em></dt>
<dd>The Key</dd><dt>$<a href="phpseclib/Crypt/RSA.html#property_k">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>#k</a> — <em>Property in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Modulus length</dd><dt>$<a href="phpseclib/Crypt/Rijndael.html#property_key_length">
<abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr>#key_length</a> — <em>Property in class <a href="phpseclib/Crypt/Rijndael.html"><abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>The Key Length (in bytes)</dd><dt>$<a href="phpseclib/Crypt/Rijndael.html#property_kl">
<abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr>#kl</a> — <em>Property in class <a href="phpseclib/Crypt/Rijndael.html"><abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>Holds the last used key- and block_size information</dd><dt>$<a href="phpseclib/Crypt/TripleDES.html#property_key_length">
<abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr>#key_length</a> — <em>Property in class <a href="phpseclib/Crypt/TripleDES.html"><abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>Key Length (in bytes)</dd><dt>$<a href="phpseclib/Crypt/TripleDES.html#property_key_length_max">
<abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr>#key_length_max</a> — <em>Property in class <a href="phpseclib/Crypt/TripleDES.html"><abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>max possible size of $key</dd><dt>$<a href="phpseclib/Crypt/Twofish.html#property_K">
<abbr title="phpseclib\Crypt\Twofish">Twofish</abbr>#K</a> — <em>Property in class <a href="phpseclib/Crypt/Twofish.html"><abbr title="phpseclib\Crypt\Twofish">Twofish</abbr></a></em></dt>
<dd>The Key Schedule Array</dd><dt>$<a href="phpseclib/Crypt/Twofish.html#property_kl">
<abbr title="phpseclib\Crypt\Twofish">Twofish</abbr>#kl</a> — <em>Property in class <a href="phpseclib/Crypt/Twofish.html"><abbr title="phpseclib\Crypt\Twofish">Twofish</abbr></a></em></dt>
<dd>Holds the last used key</dd><dt>$<a href="phpseclib/Crypt/Twofish.html#property_key_length">
<abbr title="phpseclib\Crypt\Twofish">Twofish</abbr>#key_length</a> — <em>Property in class <a href="phpseclib/Crypt/Twofish.html"><abbr title="phpseclib\Crypt\Twofish">Twofish</abbr></a></em></dt>
<dd>The Key Length (in bytes)</dd><dt>$<a href="phpseclib/File/X509.html#property_KeyUsage">
<abbr title="phpseclib\File\X509">X509</abbr>#KeyUsage</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_KeyIdentifier">
<abbr title="phpseclib\File\X509">X509</abbr>#KeyIdentifier</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/Net/SSH2.html#property_kex_algorithms">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#kex_algorithms</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Key Exchange Algorithms</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_kex_algorithm">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#kex_algorithm</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Key Exchange Algorithm</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_kex_dh_group_size_min">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#kex_dh_group_size_min</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Minimum Diffie-Hellman Group Bit Size in RFC 4419 Key Exchange Methods</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_kex_dh_group_size_preferred">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#kex_dh_group_size_preferred</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Preferred Diffie-Hellman Group Bit Size in RFC 4419 Key Exchange Methods</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_kex_dh_group_size_max">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#kex_dh_group_size_max</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Maximum Diffie-Hellman Group Bit Size in RFC 4419 Key Exchange Methods</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_keepAlive">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#keepAlive</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Keep Alive Interval</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_keyboard_requests_responses">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#keyboard_requests_responses</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Keyboard Interactive Request / Responses</dd><dt>$<a href="phpseclib/System/SSH/Agent/Identity.html#property_key">
<abbr title="phpseclib\System\SSH\Agent\Identity">Identity</abbr>#key</a> — <em>Property in class <a href="phpseclib/System/SSH/Agent/Identity.html"><abbr title="phpseclib\System\SSH\Agent\Identity">Identity</abbr></a></em></dt>
<dd>Key Object</dd><dt>$<a href="phpseclib/System/SSH/Agent/Identity.html#property_key_blob">
<abbr title="phpseclib\System\SSH\Agent\Identity">Identity</abbr>#key_blob</a> — <em>Property in class <a href="phpseclib/System/SSH/Agent/Identity.html"><abbr title="phpseclib\System\SSH\Agent\Identity">Identity</abbr></a></em></dt>
<dd>Key Blob</dd> </dl><h2 id="letterL">L</h2>
<dl id="indexL"><dt>$<a href="phpseclib/Crypt/Hash.html#property_l">
<abbr title="phpseclib\Crypt\Hash">Hash</abbr>#l</a> — <em>Property in class <a href="phpseclib/Crypt/Hash.html"><abbr title="phpseclib\Crypt\Hash">Hash</abbr></a></em></dt>
<dd>Byte-length of hash output (Internal HMAC)</dd><dt><a href="phpseclib/Crypt/RSA.html#method_loadKey">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>::loadKey</a>() — <em>Method in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Loads a public or private key</dd><dt><a href="phpseclib/File/ANSI.html#method_loadString">
<abbr title="phpseclib\File\ANSI">ANSI</abbr>::loadString</a>() — <em>Method in class <a href="phpseclib/File/ANSI.html"><abbr title="phpseclib\File\ANSI">ANSI</abbr></a></em></dt>
<dd>Load a string</dd><dt><a href="phpseclib/File/ASN1.html#method_loadOIDs">
<abbr title="phpseclib\File\ASN1">ASN1</abbr>::loadOIDs</a>() — <em>Method in class <a href="phpseclib/File/ASN1.html"><abbr title="phpseclib\File\ASN1">ASN1</abbr></a></em></dt>
<dd>Load OIDs</dd><dt><a href="phpseclib/File/ASN1.html#method_loadFilters">
<abbr title="phpseclib\File\ASN1">ASN1</abbr>::loadFilters</a>() — <em>Method in class <a href="phpseclib/File/ASN1.html"><abbr title="phpseclib\File\ASN1">ASN1</abbr></a></em></dt>
<dd>Load filters</dd><dt><a href="phpseclib/File/X509.html#method_loadX509">
<abbr title="phpseclib\File\X509">X509</abbr>::loadX509</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Load X.509 certificate</dd><dt><a href="phpseclib/File/X509.html#method_loadCA">
<abbr title="phpseclib\File\X509">X509</abbr>::loadCA</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Load an X.509 certificate as a certificate authority</dd><dt><a href="phpseclib/File/X509.html#method_loadCSR">
<abbr title="phpseclib\File\X509">X509</abbr>::loadCSR</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Load a Certificate Signing Request</dd><dt><a href="phpseclib/File/X509.html#method_loadSPKAC">
<abbr title="phpseclib\File\X509">X509</abbr>::loadSPKAC</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Load a SPKAC CSR</dd><dt><a href="phpseclib/File/X509.html#method_loadCRL">
<abbr title="phpseclib\File\X509">X509</abbr>::loadCRL</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Load a Certificate Revocation List</dd><dt><a href="phpseclib/File/X509.html#method_listRevoked">
<abbr title="phpseclib\File\X509">X509</abbr>::listRevoked</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>List revoked certificates</dd><dt><a href="phpseclib/Net/SFTP.html#method_login">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::login</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Login</dd><dt><a href="phpseclib/Net/SFTP.html#method_lstat">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::lstat</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Returns general information about a file or symbolic link.</dd><dt>$<a href="phpseclib/Net/SSH1.html#property_log_boundary">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>#log_boundary</a> — <em>Property in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Log Boundary</dd><dt>$<a href="phpseclib/Net/SSH1.html#property_log_long_width">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>#log_long_width</a> — <em>Property in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Log Long Width</dd><dt>$<a href="phpseclib/Net/SSH1.html#property_log_short_width">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>#log_short_width</a> — <em>Property in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Log Short Width</dd><dt><a href="phpseclib/Net/SSH1.html#method_login">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>::login</a>() — <em>Method in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Login</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_languages_server_to_client">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#languages_server_to_client</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Languages: Server to Client</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_languages_client_to_server">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#languages_client_to_server</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Languages: Client to Server</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_log_size">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#log_size</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Current log size</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_last_packet">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#last_packet</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Time of first network activity</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_last_interactive_response">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#last_interactive_response</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>The Last Interactive Response</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_log_boundary">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#log_boundary</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Log Boundary</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_log_long_width">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#log_long_width</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Log Long Width</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_log_short_width">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#log_short_width</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Log Short Width</dd><dt><a href="phpseclib/Net/SSH2.html#method_login">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>::login</a>() — <em>Method in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Login</dd> </dl><h2 id="letterM">M</h2>
<dl id="indexM"><dt>$<a href="phpseclib/Crypt/Base.html#property_mode">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#mode</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>The Encryption Mode</dd><dt>$<a href="phpseclib/Crypt/RSA.html#property_modulus">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>#modulus</a> — <em>Property in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Modulus (ie. n)</dd><dt>$<a href="phpseclib/Crypt/RSA.html#property_mgfHash">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>#mgfHash</a> — <em>Property in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Hash function for the Mask Generation Function</dd><dt>$<a href="phpseclib/Crypt/RSA.html#property_mgfHLen">
<abbr title="phpseclib\Crypt\RSA">RSA</abbr>#mgfHLen</a> — <em>Property in class <a href="phpseclib/Crypt/RSA.html"><abbr title="phpseclib\Crypt\RSA">RSA</abbr></a></em></dt>
<dd>Length of MGF hash function output</dd><dt>$<a href="phpseclib/Crypt/TripleDES.html#property_mode_3cbc">
<abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr>#mode_3cbc</a> — <em>Property in class <a href="phpseclib/Crypt/TripleDES.html"><abbr title="phpseclib\Crypt\TripleDES">TripleDES</abbr></a></em></dt>
<dd>Internal flag whether using self::MODE_3CBC or not</dd><dt>$<a href="phpseclib/Crypt/Twofish.html#property_m0">
<abbr title="phpseclib\Crypt\Twofish">Twofish</abbr>#m0</a> — <em>Property in class <a href="phpseclib/Crypt/Twofish.html"><abbr title="phpseclib\Crypt\Twofish">Twofish</abbr></a></em></dt>
<dd>M-Table</dd><dt>$<a href="phpseclib/Crypt/Twofish.html#property_m1">
<abbr title="phpseclib\Crypt\Twofish">Twofish</abbr>#m1</a> — <em>Property in class <a href="phpseclib/Crypt/Twofish.html"><abbr title="phpseclib\Crypt\Twofish">Twofish</abbr></a></em></dt>
<dd>M-Table</dd><dt>$<a href="phpseclib/Crypt/Twofish.html#property_m2">
<abbr title="phpseclib\Crypt\Twofish">Twofish</abbr>#m2</a> — <em>Property in class <a href="phpseclib/Crypt/Twofish.html"><abbr title="phpseclib\Crypt\Twofish">Twofish</abbr></a></em></dt>
<dd>M-Table</dd><dt>$<a href="phpseclib/Crypt/Twofish.html#property_m3">
<abbr title="phpseclib\Crypt\Twofish">Twofish</abbr>#m3</a> — <em>Property in class <a href="phpseclib/Crypt/Twofish.html"><abbr title="phpseclib\Crypt\Twofish">Twofish</abbr></a></em></dt>
<dd>M-Table</dd><dt>$<a href="phpseclib/File/ANSI.html#property_max_x">
<abbr title="phpseclib\File\ANSI">ANSI</abbr>#max_x</a> — <em>Property in class <a href="phpseclib/File/ANSI.html"><abbr title="phpseclib\File\ANSI">ANSI</abbr></a></em></dt>
<dd>Max Width</dd><dt>$<a href="phpseclib/File/ANSI.html#property_max_y">
<abbr title="phpseclib\File\ANSI">ANSI</abbr>#max_y</a> — <em>Property in class <a href="phpseclib/File/ANSI.html"><abbr title="phpseclib\File\ANSI">ANSI</abbr></a></em></dt>
<dd>Max Height</dd><dt>$<a href="phpseclib/File/ANSI.html#property_max_history">
<abbr title="phpseclib\File\ANSI">ANSI</abbr>#max_history</a> — <em>Property in class <a href="phpseclib/File/ANSI.html"><abbr title="phpseclib\File\ANSI">ANSI</abbr></a></em></dt>
<dd>Max History</dd><dt><a href="phpseclib/File/X509.html#method_makeCA">
<abbr title="phpseclib\File\X509">X509</abbr>::makeCA</a>() — <em>Method in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd>Turns the certificate into a certificate authority</dd><dt>$<a href="phpseclib/Math/BigInteger.html#property_maxDigit">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>#maxDigit</a> — <em>Property in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/Math/BigInteger.html#property_msb">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>#msb</a> — <em>Property in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/Math/BigInteger.html#property_max10">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>#max10</a> — <em>Property in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>$max10 in greatest $max10Len satisfying
$max10 = 10<strong>$max10Len <= 2</strong>$base.</dd><dt>$<a href="phpseclib/Math/BigInteger.html#property_max10Len">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>#max10Len</a> — <em>Property in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>$max10Len in greatest $max10Len satisfying
$max10 = 10<strong>$max10Len <= 2</strong>$base.</dd><dt>$<a href="phpseclib/Math/BigInteger.html#property_maxDigit2">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>#maxDigit2</a> — <em>Property in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd></dd><dt><a href="phpseclib/Math/BigInteger.html#method_multiply">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::multiply</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Multiplies two BigIntegers</dd><dt><a href="phpseclib/Math/BigInteger.html#method_modPow">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::modPow</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Performs modular exponentiation.</dd><dt><a href="phpseclib/Math/BigInteger.html#method_modInverse">
<abbr title="phpseclib\Math\BigInteger">BigInteger</abbr>::modInverse</a>() — <em>Method in class <a href="phpseclib/Math/BigInteger.html"><abbr title="phpseclib\Math\BigInteger">BigInteger</abbr></a></em></dt>
<dd>Calculates modular inverses.</dd><dt>$<a href="phpseclib/Net/SCP.html#property_mode">
<abbr title="phpseclib\Net\SCP">SCP</abbr>#mode</a> — <em>Property in class <a href="phpseclib/Net/SCP.html"><abbr title="phpseclib\Net\SCP">SCP</abbr></a></em></dt>
<dd>Mode</dd><dt>$<a href="phpseclib/Net/SFTP.html#property_max_sftp_packet">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>#max_sftp_packet</a> — <em>Property in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Max SFTP Packet Size</dd><dt><a href="phpseclib/Net/SFTP.html#method_mkdir">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::mkdir</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Creates a directory.</dd><dt>$<a href="phpseclib/Net/SFTP/Stream.html#property_mode">
<abbr title="phpseclib\Net\SFTP\Stream">Stream</abbr>#mode</a> — <em>Property in class <a href="phpseclib/Net/SFTP/Stream.html"><abbr title="phpseclib\Net\SFTP\Stream">Stream</abbr></a></em></dt>
<dd>Mode</dd><dt>$<a href="phpseclib/Net/SSH1.html#property_message_log">
<abbr title="phpseclib\Net\SSH1">SSH1</abbr>#message_log</a> — <em>Property in class <a href="phpseclib/Net/SSH1.html"><abbr title="phpseclib\Net\SSH1">SSH1</abbr></a></em></dt>
<dd>Message Log</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_mac_algorithms_client_to_server">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#mac_algorithms_client_to_server</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>MAC Algorithms: Client to Server</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_mac_algorithms_server_to_client">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#mac_algorithms_server_to_client</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>MAC Algorithms: Server to Client</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_message_numbers">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#message_numbers</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Message Numbers</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_message_number_log">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#message_number_log</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Message Number Log</dd><dt>$<a href="phpseclib/Net/SSH2.html#property_message_log">
<abbr title="phpseclib\Net\SSH2">SSH2</abbr>#message_log</a> — <em>Property in class <a href="phpseclib/Net/SSH2.html"><abbr title="phpseclib\Net\SSH2">SSH2</abbr></a></em></dt>
<dd>Message Log</dd> </dl><h2 id="letterN">N</h2>
<dl id="indexN"><dt>$<a href="phpseclib/Crypt/Rijndael.html#property_Nb">
<abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr>#Nb</a> — <em>Property in class <a href="phpseclib/Crypt/Rijndael.html"><abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>The Block Length divided by 32</dd><dt>$<a href="phpseclib/Crypt/Rijndael.html#property_Nk">
<abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr>#Nk</a> — <em>Property in class <a href="phpseclib/Crypt/Rijndael.html"><abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>The Key Length divided by 32</dd><dt>$<a href="phpseclib/Crypt/Rijndael.html#property_Nr">
<abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr>#Nr</a> — <em>Property in class <a href="phpseclib/Crypt/Rijndael.html"><abbr title="phpseclib\Crypt\Rijndael">Rijndael</abbr></a></em></dt>
<dd>The Number of Rounds</dd><dt>$<a href="phpseclib/File/X509.html#property_NameConstraints">
<abbr title="phpseclib\File\X509">X509</abbr>#NameConstraints</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_netscape_cert_type">
<abbr title="phpseclib\File\X509">X509</abbr>#netscape_cert_type</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_netscape_comment">
<abbr title="phpseclib\File\X509">X509</abbr>#netscape_comment</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_netscape_ca_policy_url">
<abbr title="phpseclib\File\X509">X509</abbr>#netscape_ca_policy_url</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt>$<a href="phpseclib/File/X509.html#property_Name">
<abbr title="phpseclib\File\X509">X509</abbr>#Name</a> — <em>Property in class <a href="phpseclib/File/X509.html"><abbr title="phpseclib\File\X509">X509</abbr></a></em></dt>
<dd></dd><dt><a href="phpseclib/Net/SFTP.html#method_nlist">
<abbr title="phpseclib\Net\SFTP">SFTP</abbr>::nlist</a>() — <em>Method in class <a href="phpseclib/Net/SFTP.html"><abbr title="phpseclib\Net\SFTP">SFTP</abbr></a></em></dt>
<dd>Returns a list of files in the given directory</dd><dt>$<a href="phpseclib/Net/SFTP/Stream.html#property_notification">
<abbr title="phpseclib\Net\SFTP\Stream">Stream</abbr>#notification</a> — <em>Property in class <a href="phpseclib/Net/SFTP/Stream.html"><abbr title="phpseclib\Net\SFTP\Stream">Stream</abbr></a></em></dt>
<dd>Notification callback function</dd> </dl><h2 id="letterO">O</h2>
<dl id="indexO"><dt>$<a href="phpseclib/Crypt/Base.html#property_openssl_emulate_ctr">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#openssl_emulate_ctr</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>If OpenSSL can be used in ECB but not in CTR we can emulate CTR</dd><dt>$<a href="phpseclib/Crypt/Base.html#property_openssl_options">
<abbr title="phpseclib\Crypt\Base">Base</abbr>#openssl_options</a> — <em>Property in class <a href="phpseclib/Crypt/Base.html"><abbr title="phpseclib\Crypt\Base">Base</abbr></a></em></dt>
<dd>Determines what options are passed to openssl_encrypt/decrypt</dd><dt>$<a href="phpseclib/Crypt/DES.html#property_openssl_mode_names">
<abbr title="phpseclib\Crypt\DES">DES</abbr>#openssl_mode_names</a> — <em>Property in class <a href="phpseclib/Crypt/DES.html"><abbr title="phpseclib\Crypt\DES">DES</abbr></a></em></dt>
<dd>The OpenSSL names of the cipher / modes</dd><dt>$<a href="phpseclib/Crypt/Hash.html#property_opad">
<abbr title="phpseclib\Crypt\Hash">Hash</abbr>#opad</a> — <em>Property in class <a href="phpseclib/Crypt/Hash.html"><abbr title="phpseclib\Crypt\Hash">Hash</abbr></a></em></dt>