@tsonic/dotnet 10.0.5 → 10.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.CSharp.RuntimeBinder/internal/index.d.ts +6 -0
- package/Microsoft.VisualBasic/internal/index.d.ts +38 -0
- package/Microsoft.VisualBasic.CompilerServices/internal/index.d.ts +58 -0
- package/Microsoft.VisualBasic.FileIO/internal/index.d.ts +8 -0
- package/Microsoft.Win32/internal/index.d.ts +3 -3
- package/Microsoft.Win32.SafeHandles/internal/index.d.ts +34 -0
- package/System/internal/index.d.ts +413 -159
- package/System.Buffers/internal/index.d.ts +24 -6
- package/System.CodeDom.Compiler/internal/index.d.ts +4 -0
- package/System.Collections/internal/index.d.ts +35 -21
- package/System.Collections.Concurrent/internal/index.d.ts +17 -3
- package/System.Collections.Frozen/internal/index.d.ts +12 -0
- package/System.Collections.Generic/internal/index.d.ts +121 -33
- package/System.Collections.Immutable/internal/index.d.ts +44 -0
- package/System.Collections.ObjectModel/internal/index.d.ts +20 -6
- package/System.Collections.Specialized/internal/index.d.ts +30 -6
- package/System.ComponentModel/internal/index.d.ts +269 -21
- package/System.ComponentModel.DataAnnotations/internal/index.d.ts +73 -3
- package/System.ComponentModel.DataAnnotations.Schema/internal/index.d.ts +14 -0
- package/System.ComponentModel.Design/internal/index.d.ts +47 -3
- package/System.ComponentModel.Design.Serialization/internal/index.d.ts +22 -0
- package/System.Data/internal/index.d.ts +110 -18
- package/System.Data.Common/internal/index.d.ts +64 -30
- package/System.Data.SqlTypes/internal/index.d.ts +58 -48
- package/System.Diagnostics/internal/index.d.ts +143 -9
- package/System.Diagnostics.CodeAnalysis/internal/index.d.ts +52 -0
- package/System.Diagnostics.Contracts/internal/index.d.ts +26 -0
- package/System.Diagnostics.Metrics/internal/index.d.ts +31 -3
- package/System.Diagnostics.SymbolStore/internal/index.d.ts +8 -0
- package/System.Diagnostics.Tracing/internal/index.d.ts +40 -6
- package/System.Drawing/internal/index.d.ts +24 -0
- package/System.Dynamic/internal/index.d.ts +37 -5
- package/System.Formats.Asn1/internal/index.d.ts +13 -3
- package/System.Formats.Tar/internal/index.d.ts +20 -6
- package/System.Globalization/internal/index.d.ts +64 -18
- package/System.IO/internal/index.d.ts +74 -18
- package/System.IO.Compression/internal/index.d.ts +25 -9
- package/System.IO.Enumeration/internal/index.d.ts +6 -0
- package/System.IO.IsolatedStorage/internal/index.d.ts +9 -3
- package/System.IO.MemoryMappedFiles/internal/index.d.ts +6 -0
- package/System.IO.Pipelines/internal/index.d.ts +18 -2
- package/System.IO.Pipes/internal/index.d.ts +16 -0
- package/System.Linq/internal/index.d.ts +17 -3
- package/System.Linq.Expressions/internal/index.d.ts +86 -18
- package/System.Linq.Expressions.Interpreter/internal/index.d.ts +2 -0
- package/System.Net/internal/index.d.ts +109 -19
- package/System.Net.Cache/internal/index.d.ts +4 -0
- package/System.Net.Http/internal/index.d.ts +50 -0
- package/System.Net.Http.Headers/internal/index.d.ts +78 -60
- package/System.Net.Http.Json/internal/index.d.ts +2 -0
- package/System.Net.Http.Metrics/internal/index.d.ts +2 -0
- package/System.Net.Mail/internal/index.d.ts +31 -9
- package/System.Net.Mime/internal/index.d.ts +4 -0
- package/System.Net.NetworkInformation/internal/index.d.ts +62 -0
- package/System.Net.Quic/internal/index.d.ts +22 -6
- package/System.Net.Security/internal/index.d.ts +27 -3
- package/System.Net.ServerSentEvents/internal/index.d.ts +4 -0
- package/System.Net.Sockets/internal/index.d.ts +38 -6
- package/System.Net.WebSockets/internal/index.d.ts +23 -3
- package/System.Numerics/internal/index.d.ts +24 -6
- package/System.Reflection/internal/index.d.ts +134 -30
- package/System.Reflection.Emit/internal/index.d.ts +45 -9
- package/System.Reflection.Metadata/internal/index.d.ts +321 -5
- package/System.Reflection.Metadata.Ecma335/internal/index.d.ts +76 -0
- package/System.Reflection.PortableExecutable/internal/index.d.ts +37 -3
- package/System.Resources/internal/index.d.ts +16 -0
- package/System.Runtime/internal/index.d.ts +12 -6
- package/System.Runtime.CompilerServices/internal/index.d.ts +275 -33
- package/System.Runtime.ConstrainedExecution/internal/index.d.ts +6 -0
- package/System.Runtime.ExceptionServices/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices/internal/index.d.ts +174 -14
- package/System.Runtime.InteropServices.ComTypes/internal/index.d.ts +40 -0
- package/System.Runtime.InteropServices.Java/internal/index.d.ts +6 -0
- package/System.Runtime.InteropServices.JavaScript/internal/index.d.ts +55 -3
- package/System.Runtime.InteropServices.Marshalling/internal/index.d.ts +57 -12
- package/System.Runtime.InteropServices.ObjectiveC/internal/index.d.ts +2 -0
- package/System.Runtime.InteropServices.Swift/internal/index.d.ts +8 -0
- package/System.Runtime.Intrinsics/internal/index.d.ts +12 -12
- package/System.Runtime.Intrinsics.Arm/internal/index.d.ts +40 -0
- package/System.Runtime.Intrinsics.Wasm/internal/index.d.ts +2 -0
- package/System.Runtime.Intrinsics.X86/internal/index.d.ts +148 -0
- package/System.Runtime.Loader/internal/index.d.ts +7 -3
- package/System.Runtime.Remoting/internal/index.d.ts +2 -0
- package/System.Runtime.Serialization/internal/index.d.ts +75 -9
- package/System.Runtime.Serialization.DataContracts/internal/index.d.ts +8 -0
- package/System.Runtime.Serialization.Formatters.Binary/internal/index.d.ts +3 -3
- package/System.Runtime.Serialization.Json/internal/index.d.ts +4 -0
- package/System.Runtime.Versioning/internal/index.d.ts +26 -0
- package/System.Security/internal/index.d.ts +28 -6
- package/System.Security.AccessControl/internal/index.d.ts +94 -0
- package/System.Security.Authentication/internal/index.d.ts +4 -0
- package/System.Security.Authentication.ExtendedProtection/internal/index.d.ts +9 -3
- package/System.Security.Claims/internal/index.d.ts +8 -6
- package/System.Security.Cryptography/internal/index.d.ts +298 -42
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +69 -9
- package/System.Security.Permissions/internal/index.d.ts +6 -0
- package/System.Security.Policy/internal/index.d.ts +4 -0
- package/System.Security.Principal/internal/index.d.ts +19 -5
- package/System.Text/internal/index.d.ts +68 -8
- package/System.Text.Encodings.Web/internal/index.d.ts +10 -0
- package/System.Text.Json/internal/index.d.ts +32 -6
- package/System.Text.Json.Nodes/internal/index.d.ts +10 -0
- package/System.Text.Json.Schema/internal/index.d.ts +4 -0
- package/System.Text.Json.Serialization/internal/index.d.ts +54 -0
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +23 -3
- package/System.Text.RegularExpressions/internal/index.d.ts +33 -3
- package/System.Text.Unicode/internal/index.d.ts +4 -0
- package/System.Threading/internal/index.d.ts +108 -24
- package/System.Threading.Channels/internal/index.d.ts +18 -0
- package/System.Threading.Tasks/internal/index.d.ts +34 -6
- package/System.Threading.Tasks.Dataflow/internal/index.d.ts +32 -0
- package/System.Threading.Tasks.Sources/internal/index.d.ts +2 -0
- package/System.Timers/internal/index.d.ts +7 -3
- package/System.Transactions/internal/index.d.ts +37 -15
- package/System.Web/internal/index.d.ts +2 -0
- package/System.Windows.Markup/internal/index.d.ts +2 -0
- package/System.Xml/internal/index.d.ts +106 -18
- package/System.Xml.Linq/internal/index.d.ts +41 -17
- package/System.Xml.Resolvers/internal/index.d.ts +2 -0
- package/System.Xml.Schema/internal/index.d.ts +148 -0
- package/System.Xml.Serialization/internal/index.d.ts +116 -0
- package/System.Xml.XPath/internal/index.d.ts +14 -6
- package/System.Xml.Xsl/internal/index.d.ts +16 -0
- package/System.Xml.Xsl.Runtime/internal/index.d.ts +88 -0
- package/__internal/extensions/index.d.ts +2143 -1955
- package/package.json +2 -2
|
@@ -227,6 +227,8 @@ export interface ICspAsymmetricAlgorithm$instance {
|
|
|
227
227
|
export type ICspAsymmetricAlgorithm = ICspAsymmetricAlgorithm$instance;
|
|
228
228
|
|
|
229
229
|
export interface CngProperty$instance {
|
|
230
|
+
readonly __tsonic_type_System_Security_Cryptography_CngProperty: never;
|
|
231
|
+
|
|
230
232
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
231
233
|
|
|
232
234
|
Name: string;
|
|
@@ -254,6 +256,8 @@ export type CngProperty = CngProperty$instance & __CngProperty$views;
|
|
|
254
256
|
|
|
255
257
|
|
|
256
258
|
export interface DSAParameters$instance {
|
|
259
|
+
readonly __tsonic_type_System_Security_Cryptography_DSAParameters: never;
|
|
260
|
+
|
|
257
261
|
P: byte[] | undefined;
|
|
258
262
|
Q: byte[] | undefined;
|
|
259
263
|
G: byte[] | undefined;
|
|
@@ -273,6 +277,8 @@ export const DSAParameters: {
|
|
|
273
277
|
export type DSAParameters = DSAParameters$instance;
|
|
274
278
|
|
|
275
279
|
export interface ECCurve$instance {
|
|
280
|
+
readonly __tsonic_type_System_Security_Cryptography_ECCurve: never;
|
|
281
|
+
|
|
276
282
|
A: byte[] | undefined;
|
|
277
283
|
B: byte[] | undefined;
|
|
278
284
|
G: ECPoint;
|
|
@@ -303,6 +309,8 @@ export const ECCurve: {
|
|
|
303
309
|
export type ECCurve = ECCurve$instance;
|
|
304
310
|
|
|
305
311
|
export interface ECParameters$instance {
|
|
312
|
+
readonly __tsonic_type_System_Security_Cryptography_ECParameters: never;
|
|
313
|
+
|
|
306
314
|
Q: ECPoint;
|
|
307
315
|
D: byte[] | undefined;
|
|
308
316
|
Curve: ECCurve;
|
|
@@ -318,6 +326,8 @@ export const ECParameters: {
|
|
|
318
326
|
export type ECParameters = ECParameters$instance;
|
|
319
327
|
|
|
320
328
|
export interface ECPoint$instance {
|
|
329
|
+
readonly __tsonic_type_System_Security_Cryptography_ECPoint: never;
|
|
330
|
+
|
|
321
331
|
X: byte[] | undefined;
|
|
322
332
|
Y: byte[] | undefined;
|
|
323
333
|
}
|
|
@@ -331,6 +341,8 @@ export const ECPoint: {
|
|
|
331
341
|
export type ECPoint = ECPoint$instance;
|
|
332
342
|
|
|
333
343
|
export interface HashAlgorithmName$instance {
|
|
344
|
+
readonly __tsonic_type_System_Security_Cryptography_HashAlgorithmName: never;
|
|
345
|
+
|
|
334
346
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
335
347
|
|
|
336
348
|
readonly Name: string | undefined;
|
|
@@ -367,6 +379,8 @@ export type HashAlgorithmName = HashAlgorithmName$instance & __HashAlgorithmName
|
|
|
367
379
|
|
|
368
380
|
|
|
369
381
|
export interface PemFields$instance {
|
|
382
|
+
readonly __tsonic_type_System_Security_Cryptography_PemFields: never;
|
|
383
|
+
|
|
370
384
|
readonly Base64Data: Range;
|
|
371
385
|
readonly DecodedDataLength: int;
|
|
372
386
|
readonly Label: Range;
|
|
@@ -382,6 +396,8 @@ export const PemFields: {
|
|
|
382
396
|
export type PemFields = PemFields$instance;
|
|
383
397
|
|
|
384
398
|
export interface RSAParameters$instance {
|
|
399
|
+
readonly __tsonic_type_System_Security_Cryptography_RSAParameters: never;
|
|
400
|
+
|
|
385
401
|
D: byte[] | undefined;
|
|
386
402
|
DP: byte[] | undefined;
|
|
387
403
|
DQ: byte[] | undefined;
|
|
@@ -401,6 +417,8 @@ export const RSAParameters: {
|
|
|
401
417
|
export type RSAParameters = RSAParameters$instance;
|
|
402
418
|
|
|
403
419
|
export interface Aes$instance extends SymmetricAlgorithm$instance {
|
|
420
|
+
readonly __tsonic_type_System_Security_Cryptography_Aes: never;
|
|
421
|
+
|
|
404
422
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
405
423
|
|
|
406
424
|
DecryptKeyWrapPadded(ciphertext: byte[]): byte[];
|
|
@@ -429,7 +447,9 @@ export interface __Aes$views {
|
|
|
429
447
|
export type Aes = Aes$instance & __Aes$views;
|
|
430
448
|
|
|
431
449
|
|
|
432
|
-
export interface AesCcm$instance {
|
|
450
|
+
export interface AesCcm$instance extends System_Internal.IDisposable$instance {
|
|
451
|
+
readonly __tsonic_type_System_Security_Cryptography_AesCcm: never;
|
|
452
|
+
|
|
433
453
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
434
454
|
|
|
435
455
|
Decrypt(nonce: byte[], ciphertext: byte[], tag: byte[], plaintext: byte[], associatedData?: byte[]): void;
|
|
@@ -453,12 +473,12 @@ export interface __AesCcm$views {
|
|
|
453
473
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
454
474
|
}
|
|
455
475
|
|
|
456
|
-
export interface AesCcm$instance extends System_Internal.IDisposable$instance {}
|
|
457
|
-
|
|
458
476
|
export type AesCcm = AesCcm$instance & __AesCcm$views;
|
|
459
477
|
|
|
460
478
|
|
|
461
479
|
export interface AesCng$instance extends Aes$instance {
|
|
480
|
+
readonly __tsonic_type_System_Security_Cryptography_AesCng: never;
|
|
481
|
+
|
|
462
482
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
463
483
|
|
|
464
484
|
CreateDecryptor(rgbKey: byte[], rgbIV: byte[]): ICryptoTransform;
|
|
@@ -489,6 +509,8 @@ export type AesCng = AesCng$instance & __AesCng$views;
|
|
|
489
509
|
|
|
490
510
|
|
|
491
511
|
export interface AesCryptoServiceProvider$instance extends Aes$instance {
|
|
512
|
+
readonly __tsonic_type_System_Security_Cryptography_AesCryptoServiceProvider: never;
|
|
513
|
+
|
|
492
514
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
493
515
|
|
|
494
516
|
BlockSize: int;
|
|
@@ -525,7 +547,9 @@ export interface __AesCryptoServiceProvider$views {
|
|
|
525
547
|
export type AesCryptoServiceProvider = AesCryptoServiceProvider$instance & __AesCryptoServiceProvider$views;
|
|
526
548
|
|
|
527
549
|
|
|
528
|
-
export interface AesGcm$instance {
|
|
550
|
+
export interface AesGcm$instance extends System_Internal.IDisposable$instance {
|
|
551
|
+
readonly __tsonic_type_System_Security_Cryptography_AesGcm: never;
|
|
552
|
+
|
|
529
553
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
530
554
|
|
|
531
555
|
readonly TagSizeInBytes: Nullable_1<System_Internal.Int32>;
|
|
@@ -552,12 +576,12 @@ export interface __AesGcm$views {
|
|
|
552
576
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
553
577
|
}
|
|
554
578
|
|
|
555
|
-
export interface AesGcm$instance extends System_Internal.IDisposable$instance {}
|
|
556
|
-
|
|
557
579
|
export type AesGcm = AesGcm$instance & __AesGcm$views;
|
|
558
580
|
|
|
559
581
|
|
|
560
582
|
export interface AesManaged$instance extends Aes$instance {
|
|
583
|
+
readonly __tsonic_type_System_Security_Cryptography_AesManaged: never;
|
|
584
|
+
|
|
561
585
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
562
586
|
|
|
563
587
|
BlockSize: int;
|
|
@@ -595,6 +619,8 @@ export type AesManaged = AesManaged$instance & __AesManaged$views;
|
|
|
595
619
|
|
|
596
620
|
|
|
597
621
|
export interface AsnEncodedData$instance {
|
|
622
|
+
readonly __tsonic_type_System_Security_Cryptography_AsnEncodedData: never;
|
|
623
|
+
|
|
598
624
|
get Oid(): Oid | undefined;
|
|
599
625
|
set Oid(value: Oid | undefined);
|
|
600
626
|
RawData: byte[];
|
|
@@ -617,6 +643,8 @@ export const AsnEncodedData: {
|
|
|
617
643
|
export type AsnEncodedData = AsnEncodedData$instance;
|
|
618
644
|
|
|
619
645
|
export interface AsnEncodedDataCollection$instance {
|
|
646
|
+
readonly __tsonic_type_System_Security_Cryptography_AsnEncodedDataCollection: never;
|
|
647
|
+
|
|
620
648
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
621
649
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
622
650
|
|
|
@@ -646,6 +674,8 @@ export type AsnEncodedDataCollection = AsnEncodedDataCollection$instance & __Asn
|
|
|
646
674
|
|
|
647
675
|
|
|
648
676
|
export interface AsnEncodedDataEnumerator$instance {
|
|
677
|
+
readonly __tsonic_type_System_Security_Cryptography_AsnEncodedDataEnumerator: never;
|
|
678
|
+
|
|
649
679
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
650
680
|
|
|
651
681
|
readonly Current: AsnEncodedData;
|
|
@@ -666,6 +696,8 @@ export type AsnEncodedDataEnumerator = AsnEncodedDataEnumerator$instance & __Asn
|
|
|
666
696
|
|
|
667
697
|
|
|
668
698
|
export interface AsymmetricAlgorithm$instance {
|
|
699
|
+
readonly __tsonic_type_System_Security_Cryptography_AsymmetricAlgorithm: never;
|
|
700
|
+
|
|
669
701
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
670
702
|
|
|
671
703
|
readonly KeyExchangeAlgorithm: string | string | undefined;
|
|
@@ -717,6 +749,8 @@ export type AsymmetricAlgorithm = AsymmetricAlgorithm$instance & __AsymmetricAlg
|
|
|
717
749
|
|
|
718
750
|
|
|
719
751
|
export interface AsymmetricKeyExchangeDeformatter$instance {
|
|
752
|
+
readonly __tsonic_type_System_Security_Cryptography_AsymmetricKeyExchangeDeformatter: never;
|
|
753
|
+
|
|
720
754
|
get Parameters(): string | undefined;
|
|
721
755
|
set Parameters(value: string | undefined);
|
|
722
756
|
DecryptKeyExchange(rgb: byte[]): byte[];
|
|
@@ -731,6 +765,8 @@ export const AsymmetricKeyExchangeDeformatter: (abstract new() => AsymmetricKeyE
|
|
|
731
765
|
export type AsymmetricKeyExchangeDeformatter = AsymmetricKeyExchangeDeformatter$instance;
|
|
732
766
|
|
|
733
767
|
export interface AsymmetricKeyExchangeFormatter$instance {
|
|
768
|
+
readonly __tsonic_type_System_Security_Cryptography_AsymmetricKeyExchangeFormatter: never;
|
|
769
|
+
|
|
734
770
|
readonly Parameters: string | string | undefined;
|
|
735
771
|
CreateKeyExchange(data: byte[]): byte[];
|
|
736
772
|
CreateKeyExchange(data: byte[], symAlgType: Type): byte[];
|
|
@@ -745,6 +781,8 @@ export const AsymmetricKeyExchangeFormatter: (abstract new() => AsymmetricKeyExc
|
|
|
745
781
|
export type AsymmetricKeyExchangeFormatter = AsymmetricKeyExchangeFormatter$instance;
|
|
746
782
|
|
|
747
783
|
export interface AsymmetricSignatureDeformatter$instance {
|
|
784
|
+
readonly __tsonic_type_System_Security_Cryptography_AsymmetricSignatureDeformatter: never;
|
|
785
|
+
|
|
748
786
|
SetHashAlgorithm(strName: string): void;
|
|
749
787
|
SetKey(key: AsymmetricAlgorithm): void;
|
|
750
788
|
VerifySignature(hash: HashAlgorithm, rgbSignature: byte[]): boolean;
|
|
@@ -759,6 +797,8 @@ export const AsymmetricSignatureDeformatter: (abstract new() => AsymmetricSignat
|
|
|
759
797
|
export type AsymmetricSignatureDeformatter = AsymmetricSignatureDeformatter$instance;
|
|
760
798
|
|
|
761
799
|
export interface AsymmetricSignatureFormatter$instance {
|
|
800
|
+
readonly __tsonic_type_System_Security_Cryptography_AsymmetricSignatureFormatter: never;
|
|
801
|
+
|
|
762
802
|
CreateSignature(hash: HashAlgorithm): byte[];
|
|
763
803
|
CreateSignature(rgbHash: byte[]): byte[];
|
|
764
804
|
SetHashAlgorithm(strName: string): void;
|
|
@@ -773,6 +813,8 @@ export const AsymmetricSignatureFormatter: (abstract new() => AsymmetricSignatur
|
|
|
773
813
|
export type AsymmetricSignatureFormatter = AsymmetricSignatureFormatter$instance;
|
|
774
814
|
|
|
775
815
|
export interface AuthenticationTagMismatchException$instance extends CryptographicException$instance {
|
|
816
|
+
readonly __tsonic_type_System_Security_Cryptography_AuthenticationTagMismatchException: never;
|
|
817
|
+
|
|
776
818
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
777
819
|
|
|
778
820
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -793,7 +835,9 @@ export interface __AuthenticationTagMismatchException$views {
|
|
|
793
835
|
export type AuthenticationTagMismatchException = AuthenticationTagMismatchException$instance & __AuthenticationTagMismatchException$views;
|
|
794
836
|
|
|
795
837
|
|
|
796
|
-
export interface ChaCha20Poly1305$instance {
|
|
838
|
+
export interface ChaCha20Poly1305$instance extends System_Internal.IDisposable$instance {
|
|
839
|
+
readonly __tsonic_type_System_Security_Cryptography_ChaCha20Poly1305: never;
|
|
840
|
+
|
|
797
841
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
798
842
|
|
|
799
843
|
Decrypt(nonce: byte[], ciphertext: byte[], tag: byte[], plaintext: byte[], associatedData?: byte[]): void;
|
|
@@ -815,12 +859,12 @@ export interface __ChaCha20Poly1305$views {
|
|
|
815
859
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
816
860
|
}
|
|
817
861
|
|
|
818
|
-
export interface ChaCha20Poly1305$instance extends System_Internal.IDisposable$instance {}
|
|
819
|
-
|
|
820
862
|
export type ChaCha20Poly1305 = ChaCha20Poly1305$instance & __ChaCha20Poly1305$views;
|
|
821
863
|
|
|
822
864
|
|
|
823
865
|
export interface CngAlgorithm$instance {
|
|
866
|
+
readonly __tsonic_type_System_Security_Cryptography_CngAlgorithm: never;
|
|
867
|
+
|
|
824
868
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
825
869
|
|
|
826
870
|
readonly Algorithm: string;
|
|
@@ -864,6 +908,8 @@ export type CngAlgorithm = CngAlgorithm$instance & __CngAlgorithm$views;
|
|
|
864
908
|
|
|
865
909
|
|
|
866
910
|
export interface CngAlgorithmGroup$instance {
|
|
911
|
+
readonly __tsonic_type_System_Security_Cryptography_CngAlgorithmGroup: never;
|
|
912
|
+
|
|
867
913
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
868
914
|
|
|
869
915
|
readonly AlgorithmGroup: string;
|
|
@@ -897,7 +943,9 @@ export interface __CngAlgorithmGroup$views {
|
|
|
897
943
|
export type CngAlgorithmGroup = CngAlgorithmGroup$instance & __CngAlgorithmGroup$views;
|
|
898
944
|
|
|
899
945
|
|
|
900
|
-
export interface CngKey$instance {
|
|
946
|
+
export interface CngKey$instance extends System_Internal.IDisposable$instance {
|
|
947
|
+
readonly __tsonic_type_System_Security_Cryptography_CngKey: never;
|
|
948
|
+
|
|
901
949
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
902
950
|
|
|
903
951
|
readonly Algorithm: CngAlgorithm;
|
|
@@ -943,12 +991,12 @@ export interface __CngKey$views {
|
|
|
943
991
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
944
992
|
}
|
|
945
993
|
|
|
946
|
-
export interface CngKey$instance extends System_Internal.IDisposable$instance {}
|
|
947
|
-
|
|
948
994
|
export type CngKey = CngKey$instance & __CngKey$views;
|
|
949
995
|
|
|
950
996
|
|
|
951
997
|
export interface CngKeyBlobFormat$instance {
|
|
998
|
+
readonly __tsonic_type_System_Security_Cryptography_CngKeyBlobFormat: never;
|
|
999
|
+
|
|
952
1000
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
953
1001
|
|
|
954
1002
|
readonly Format: string;
|
|
@@ -989,6 +1037,8 @@ export type CngKeyBlobFormat = CngKeyBlobFormat$instance & __CngKeyBlobFormat$vi
|
|
|
989
1037
|
|
|
990
1038
|
|
|
991
1039
|
export interface CngKeyCreationParameters$instance {
|
|
1040
|
+
readonly __tsonic_type_System_Security_Cryptography_CngKeyCreationParameters: never;
|
|
1041
|
+
|
|
992
1042
|
ExportPolicy: Nullable_1<CngExportPolicies>;
|
|
993
1043
|
KeyCreationOptions: CngKeyCreationOptions;
|
|
994
1044
|
KeyUsage: Nullable_1<CngKeyUsages>;
|
|
@@ -1008,6 +1058,8 @@ export const CngKeyCreationParameters: {
|
|
|
1008
1058
|
export type CngKeyCreationParameters = CngKeyCreationParameters$instance;
|
|
1009
1059
|
|
|
1010
1060
|
export interface CngPropertyCollection$instance extends Collection_1<CngProperty> {
|
|
1061
|
+
readonly __tsonic_type_System_Security_Cryptography_CngPropertyCollection: never;
|
|
1062
|
+
|
|
1011
1063
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
1012
1064
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
1013
1065
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -1054,6 +1106,8 @@ export type CngPropertyCollection = CngPropertyCollection$instance & __CngProper
|
|
|
1054
1106
|
|
|
1055
1107
|
|
|
1056
1108
|
export interface CngProvider$instance {
|
|
1109
|
+
readonly __tsonic_type_System_Security_Cryptography_CngProvider: never;
|
|
1110
|
+
|
|
1057
1111
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1058
1112
|
|
|
1059
1113
|
readonly Provider: string;
|
|
@@ -1083,6 +1137,8 @@ export type CngProvider = CngProvider$instance & __CngProvider$views;
|
|
|
1083
1137
|
|
|
1084
1138
|
|
|
1085
1139
|
export interface CngUIPolicy$instance {
|
|
1140
|
+
readonly __tsonic_type_System_Security_Cryptography_CngUIPolicy: never;
|
|
1141
|
+
|
|
1086
1142
|
readonly CreationTitle: string | undefined;
|
|
1087
1143
|
readonly Description: string | undefined;
|
|
1088
1144
|
readonly FriendlyName: string | undefined;
|
|
@@ -1103,6 +1159,8 @@ export const CngUIPolicy: {
|
|
|
1103
1159
|
export type CngUIPolicy = CngUIPolicy$instance;
|
|
1104
1160
|
|
|
1105
1161
|
export interface CompositeMLDsa$instance {
|
|
1162
|
+
readonly __tsonic_type_System_Security_Cryptography_CompositeMLDsa: never;
|
|
1163
|
+
|
|
1106
1164
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1107
1165
|
|
|
1108
1166
|
readonly Algorithm: CompositeMLDsaAlgorithm;
|
|
@@ -1173,6 +1231,8 @@ export type CompositeMLDsa = CompositeMLDsa$instance & __CompositeMLDsa$views;
|
|
|
1173
1231
|
|
|
1174
1232
|
|
|
1175
1233
|
export interface CompositeMLDsaAlgorithm$instance {
|
|
1234
|
+
readonly __tsonic_type_System_Security_Cryptography_CompositeMLDsaAlgorithm: never;
|
|
1235
|
+
|
|
1176
1236
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
1177
1237
|
|
|
1178
1238
|
readonly MaxSignatureSizeInBytes: int;
|
|
@@ -1217,6 +1277,8 @@ export type CompositeMLDsaAlgorithm = CompositeMLDsaAlgorithm$instance & __Compo
|
|
|
1217
1277
|
|
|
1218
1278
|
|
|
1219
1279
|
export interface CompositeMLDsaCng$instance extends CompositeMLDsa$instance {
|
|
1280
|
+
readonly __tsonic_type_System_Security_Cryptography_CompositeMLDsaCng: never;
|
|
1281
|
+
|
|
1220
1282
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1221
1283
|
|
|
1222
1284
|
Dispose(): void;
|
|
@@ -1243,6 +1305,8 @@ export type CompositeMLDsaCng = CompositeMLDsaCng$instance & __CompositeMLDsaCng
|
|
|
1243
1305
|
|
|
1244
1306
|
|
|
1245
1307
|
export interface CryptoConfig$instance {
|
|
1308
|
+
readonly __tsonic_type_System_Security_Cryptography_CryptoConfig: never;
|
|
1309
|
+
|
|
1246
1310
|
}
|
|
1247
1311
|
|
|
1248
1312
|
|
|
@@ -1261,6 +1325,8 @@ export const CryptoConfig: {
|
|
|
1261
1325
|
export type CryptoConfig = CryptoConfig$instance;
|
|
1262
1326
|
|
|
1263
1327
|
export interface CryptographicException$instance extends SystemException {
|
|
1328
|
+
readonly __tsonic_type_System_Security_Cryptography_CryptographicException: never;
|
|
1329
|
+
|
|
1264
1330
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1265
1331
|
|
|
1266
1332
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1284,6 +1350,8 @@ export type CryptographicException = CryptographicException$instance & __Cryptog
|
|
|
1284
1350
|
|
|
1285
1351
|
|
|
1286
1352
|
export interface CryptographicUnexpectedOperationException$instance extends CryptographicException$instance {
|
|
1353
|
+
readonly __tsonic_type_System_Security_Cryptography_CryptographicUnexpectedOperationException: never;
|
|
1354
|
+
|
|
1287
1355
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1288
1356
|
|
|
1289
1357
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
@@ -1306,6 +1374,8 @@ export type CryptographicUnexpectedOperationException = CryptographicUnexpectedO
|
|
|
1306
1374
|
|
|
1307
1375
|
|
|
1308
1376
|
export interface CryptoStream$instance extends Stream {
|
|
1377
|
+
readonly __tsonic_type_System_Security_Cryptography_CryptoStream: never;
|
|
1378
|
+
|
|
1309
1379
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
1310
1380
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1311
1381
|
|
|
@@ -1370,6 +1440,8 @@ export type CryptoStream = CryptoStream$instance & __CryptoStream$views;
|
|
|
1370
1440
|
|
|
1371
1441
|
|
|
1372
1442
|
export interface CspKeyContainerInfo$instance {
|
|
1443
|
+
readonly __tsonic_type_System_Security_Cryptography_CspKeyContainerInfo: never;
|
|
1444
|
+
|
|
1373
1445
|
readonly Accessible: boolean;
|
|
1374
1446
|
readonly Exportable: boolean;
|
|
1375
1447
|
readonly HardwareDevice: boolean;
|
|
@@ -1393,6 +1465,8 @@ export const CspKeyContainerInfo: {
|
|
|
1393
1465
|
export type CspKeyContainerInfo = CspKeyContainerInfo$instance;
|
|
1394
1466
|
|
|
1395
1467
|
export interface CspParameters$instance {
|
|
1468
|
+
readonly __tsonic_type_System_Security_Cryptography_CspParameters: never;
|
|
1469
|
+
|
|
1396
1470
|
ProviderType: int;
|
|
1397
1471
|
ProviderName: string | undefined;
|
|
1398
1472
|
KeyContainerName: string | undefined;
|
|
@@ -1415,6 +1489,8 @@ export const CspParameters: {
|
|
|
1415
1489
|
export type CspParameters = CspParameters$instance;
|
|
1416
1490
|
|
|
1417
1491
|
export interface DeriveBytes$instance {
|
|
1492
|
+
readonly __tsonic_type_System_Security_Cryptography_DeriveBytes: never;
|
|
1493
|
+
|
|
1418
1494
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1419
1495
|
|
|
1420
1496
|
Dispose(): void;
|
|
@@ -1436,6 +1512,8 @@ export type DeriveBytes = DeriveBytes$instance & __DeriveBytes$views;
|
|
|
1436
1512
|
|
|
1437
1513
|
|
|
1438
1514
|
export interface DES$instance extends SymmetricAlgorithm$instance {
|
|
1515
|
+
readonly __tsonic_type_System_Security_Cryptography_DES: never;
|
|
1516
|
+
|
|
1439
1517
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1440
1518
|
|
|
1441
1519
|
Key: byte[];
|
|
@@ -1458,6 +1536,8 @@ export type DES = DES$instance & __DES$views;
|
|
|
1458
1536
|
|
|
1459
1537
|
|
|
1460
1538
|
export interface DESCryptoServiceProvider$instance extends DES$instance {
|
|
1539
|
+
readonly __tsonic_type_System_Security_Cryptography_DESCryptoServiceProvider: never;
|
|
1540
|
+
|
|
1461
1541
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1462
1542
|
|
|
1463
1543
|
BlockSize: int;
|
|
@@ -1495,6 +1575,8 @@ export type DESCryptoServiceProvider = DESCryptoServiceProvider$instance & __DES
|
|
|
1495
1575
|
|
|
1496
1576
|
|
|
1497
1577
|
export interface DSA$instance extends AsymmetricAlgorithm$instance {
|
|
1578
|
+
readonly __tsonic_type_System_Security_Cryptography_DSA: never;
|
|
1579
|
+
|
|
1498
1580
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1499
1581
|
|
|
1500
1582
|
CreateSignature(rgbHash: byte[]): byte[];
|
|
@@ -1575,6 +1657,8 @@ export type DSA = DSA$instance & __DSA$views;
|
|
|
1575
1657
|
|
|
1576
1658
|
|
|
1577
1659
|
export interface DSACng$instance extends DSA$instance {
|
|
1660
|
+
readonly __tsonic_type_System_Security_Cryptography_DSACng: never;
|
|
1661
|
+
|
|
1578
1662
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1579
1663
|
|
|
1580
1664
|
readonly Key: CngKey;
|
|
@@ -1605,7 +1689,9 @@ export interface __DSACng$views {
|
|
|
1605
1689
|
export type DSACng = DSACng$instance & __DSACng$views;
|
|
1606
1690
|
|
|
1607
1691
|
|
|
1608
|
-
export interface DSACryptoServiceProvider$instance extends DSA$instance {
|
|
1692
|
+
export interface DSACryptoServiceProvider$instance extends DSA$instance, ICspAsymmetricAlgorithm$instance {
|
|
1693
|
+
readonly __tsonic_type_System_Security_Cryptography_DSACryptoServiceProvider: never;
|
|
1694
|
+
|
|
1609
1695
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1610
1696
|
readonly __tsonic_iface_System_Security_Cryptography_ICspAsymmetricAlgorithm: never;
|
|
1611
1697
|
|
|
@@ -1679,12 +1765,12 @@ export interface __DSACryptoServiceProvider$views {
|
|
|
1679
1765
|
As_ICspAsymmetricAlgorithm(): ICspAsymmetricAlgorithm$instance;
|
|
1680
1766
|
}
|
|
1681
1767
|
|
|
1682
|
-
export interface DSACryptoServiceProvider$instance extends ICspAsymmetricAlgorithm$instance {}
|
|
1683
|
-
|
|
1684
1768
|
export type DSACryptoServiceProvider = DSACryptoServiceProvider$instance & __DSACryptoServiceProvider$views;
|
|
1685
1769
|
|
|
1686
1770
|
|
|
1687
1771
|
export interface DSAOpenSsl$instance extends DSA$instance {
|
|
1772
|
+
readonly __tsonic_type_System_Security_Cryptography_DSAOpenSsl: never;
|
|
1773
|
+
|
|
1688
1774
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1689
1775
|
|
|
1690
1776
|
KeySize: int;
|
|
@@ -1731,6 +1817,8 @@ export type DSAOpenSsl = DSAOpenSsl$instance & __DSAOpenSsl$views;
|
|
|
1731
1817
|
|
|
1732
1818
|
|
|
1733
1819
|
export interface DSASignatureDeformatter$instance extends AsymmetricSignatureDeformatter {
|
|
1820
|
+
readonly __tsonic_type_System_Security_Cryptography_DSASignatureDeformatter: never;
|
|
1821
|
+
|
|
1734
1822
|
SetHashAlgorithm(strName: string): void;
|
|
1735
1823
|
SetKey(key: AsymmetricAlgorithm): void;
|
|
1736
1824
|
VerifySignature(rgbHash: byte[], rgbSignature: byte[]): boolean;
|
|
@@ -1747,6 +1835,8 @@ export const DSASignatureDeformatter: {
|
|
|
1747
1835
|
export type DSASignatureDeformatter = DSASignatureDeformatter$instance;
|
|
1748
1836
|
|
|
1749
1837
|
export interface DSASignatureFormatter$instance extends AsymmetricSignatureFormatter {
|
|
1838
|
+
readonly __tsonic_type_System_Security_Cryptography_DSASignatureFormatter: never;
|
|
1839
|
+
|
|
1750
1840
|
CreateSignature(rgbHash: byte[]): byte[];
|
|
1751
1841
|
CreateSignature(hash: HashAlgorithm): byte[];
|
|
1752
1842
|
SetHashAlgorithm(strName: string): void;
|
|
@@ -1763,6 +1853,8 @@ export const DSASignatureFormatter: {
|
|
|
1763
1853
|
export type DSASignatureFormatter = DSASignatureFormatter$instance;
|
|
1764
1854
|
|
|
1765
1855
|
export interface ECAlgorithm$instance extends AsymmetricAlgorithm$instance {
|
|
1856
|
+
readonly __tsonic_type_System_Security_Cryptography_ECAlgorithm: never;
|
|
1857
|
+
|
|
1766
1858
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1767
1859
|
|
|
1768
1860
|
Dispose(): void;
|
|
@@ -1810,6 +1902,8 @@ export type ECAlgorithm = ECAlgorithm$instance & __ECAlgorithm$views;
|
|
|
1810
1902
|
|
|
1811
1903
|
|
|
1812
1904
|
export interface ECDiffieHellman$instance extends ECAlgorithm$instance {
|
|
1905
|
+
readonly __tsonic_type_System_Security_Cryptography_ECDiffieHellman: never;
|
|
1906
|
+
|
|
1813
1907
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1814
1908
|
|
|
1815
1909
|
readonly KeyExchangeAlgorithm: string | string | undefined;
|
|
@@ -1845,6 +1939,8 @@ export type ECDiffieHellman = ECDiffieHellman$instance & __ECDiffieHellman$views
|
|
|
1845
1939
|
|
|
1846
1940
|
|
|
1847
1941
|
export interface ECDiffieHellmanCng$instance extends ECDiffieHellman$instance {
|
|
1942
|
+
readonly __tsonic_type_System_Security_Cryptography_ECDiffieHellmanCng: never;
|
|
1943
|
+
|
|
1848
1944
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1849
1945
|
|
|
1850
1946
|
HashAlgorithm: CngAlgorithm;
|
|
@@ -1888,6 +1984,8 @@ export type ECDiffieHellmanCng = ECDiffieHellmanCng$instance & __ECDiffieHellman
|
|
|
1888
1984
|
|
|
1889
1985
|
|
|
1890
1986
|
export interface ECDiffieHellmanCngPublicKey$instance extends ECDiffieHellmanPublicKey$instance {
|
|
1987
|
+
readonly __tsonic_type_System_Security_Cryptography_ECDiffieHellmanCngPublicKey: never;
|
|
1988
|
+
|
|
1891
1989
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1892
1990
|
|
|
1893
1991
|
readonly BlobFormat: CngKeyBlobFormat;
|
|
@@ -1912,6 +2010,8 @@ export type ECDiffieHellmanCngPublicKey = ECDiffieHellmanCngPublicKey$instance &
|
|
|
1912
2010
|
|
|
1913
2011
|
|
|
1914
2012
|
export interface ECDiffieHellmanOpenSsl$instance extends ECDiffieHellman$instance {
|
|
2013
|
+
readonly __tsonic_type_System_Security_Cryptography_ECDiffieHellmanOpenSsl: never;
|
|
2014
|
+
|
|
1915
2015
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1916
2016
|
|
|
1917
2017
|
KeySize: int;
|
|
@@ -1954,6 +2054,8 @@ export type ECDiffieHellmanOpenSsl = ECDiffieHellmanOpenSsl$instance & __ECDiffi
|
|
|
1954
2054
|
|
|
1955
2055
|
|
|
1956
2056
|
export interface ECDiffieHellmanPublicKey$instance {
|
|
2057
|
+
readonly __tsonic_type_System_Security_Cryptography_ECDiffieHellmanPublicKey: never;
|
|
2058
|
+
|
|
1957
2059
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1958
2060
|
|
|
1959
2061
|
Dispose(): void;
|
|
@@ -1979,6 +2081,8 @@ export type ECDiffieHellmanPublicKey = ECDiffieHellmanPublicKey$instance & __ECD
|
|
|
1979
2081
|
|
|
1980
2082
|
|
|
1981
2083
|
export interface ECDsa$instance extends ECAlgorithm$instance {
|
|
2084
|
+
readonly __tsonic_type_System_Security_Cryptography_ECDsa: never;
|
|
2085
|
+
|
|
1982
2086
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1983
2087
|
|
|
1984
2088
|
readonly KeyExchangeAlgorithm: string | undefined;
|
|
@@ -2050,6 +2154,8 @@ export type ECDsa = ECDsa$instance & __ECDsa$views;
|
|
|
2050
2154
|
|
|
2051
2155
|
|
|
2052
2156
|
export interface ECDsaCng$instance extends ECDsa$instance {
|
|
2157
|
+
readonly __tsonic_type_System_Security_Cryptography_ECDsaCng: never;
|
|
2158
|
+
|
|
2053
2159
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2054
2160
|
|
|
2055
2161
|
HashAlgorithm: CngAlgorithm;
|
|
@@ -2107,6 +2213,8 @@ export type ECDsaCng = ECDsaCng$instance & __ECDsaCng$views;
|
|
|
2107
2213
|
|
|
2108
2214
|
|
|
2109
2215
|
export interface ECDsaOpenSsl$instance extends ECDsa$instance {
|
|
2216
|
+
readonly __tsonic_type_System_Security_Cryptography_ECDsaOpenSsl: never;
|
|
2217
|
+
|
|
2110
2218
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2111
2219
|
|
|
2112
2220
|
KeySize: int;
|
|
@@ -2159,6 +2267,8 @@ export type ECDsaOpenSsl = ECDsaOpenSsl$instance & __ECDsaOpenSsl$views;
|
|
|
2159
2267
|
|
|
2160
2268
|
|
|
2161
2269
|
export interface FromBase64Transform$instance {
|
|
2270
|
+
readonly __tsonic_type_System_Security_Cryptography_FromBase64Transform: never;
|
|
2271
|
+
|
|
2162
2272
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2163
2273
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
2164
2274
|
|
|
@@ -2190,6 +2300,8 @@ export type FromBase64Transform = FromBase64Transform$instance & __FromBase64Tra
|
|
|
2190
2300
|
|
|
2191
2301
|
|
|
2192
2302
|
export interface HashAlgorithm$instance {
|
|
2303
|
+
readonly __tsonic_type_System_Security_Cryptography_HashAlgorithm: never;
|
|
2304
|
+
|
|
2193
2305
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2194
2306
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
2195
2307
|
|
|
@@ -2232,6 +2344,8 @@ export type HashAlgorithm = HashAlgorithm$instance & __HashAlgorithm$views;
|
|
|
2232
2344
|
|
|
2233
2345
|
|
|
2234
2346
|
export interface HMAC$instance extends KeyedHashAlgorithm$instance {
|
|
2347
|
+
readonly __tsonic_type_System_Security_Cryptography_HMAC: never;
|
|
2348
|
+
|
|
2235
2349
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2236
2350
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
2237
2351
|
|
|
@@ -2264,6 +2378,8 @@ export type HMAC = HMAC$instance & __HMAC$views;
|
|
|
2264
2378
|
|
|
2265
2379
|
|
|
2266
2380
|
export interface HMACMD5$instance extends HMAC$instance {
|
|
2381
|
+
readonly __tsonic_type_System_Security_Cryptography_HMACMD5: never;
|
|
2382
|
+
|
|
2267
2383
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2268
2384
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
2269
2385
|
|
|
@@ -2309,6 +2425,8 @@ export type HMACMD5 = HMACMD5$instance & __HMACMD5$views;
|
|
|
2309
2425
|
|
|
2310
2426
|
|
|
2311
2427
|
export interface HMACSHA1$instance extends HMAC$instance {
|
|
2428
|
+
readonly __tsonic_type_System_Security_Cryptography_HMACSHA1: never;
|
|
2429
|
+
|
|
2312
2430
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2313
2431
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
2314
2432
|
|
|
@@ -2355,6 +2473,8 @@ export type HMACSHA1 = HMACSHA1$instance & __HMACSHA1$views;
|
|
|
2355
2473
|
|
|
2356
2474
|
|
|
2357
2475
|
export interface HMACSHA256$instance extends HMAC$instance {
|
|
2476
|
+
readonly __tsonic_type_System_Security_Cryptography_HMACSHA256: never;
|
|
2477
|
+
|
|
2358
2478
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2359
2479
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
2360
2480
|
|
|
@@ -2400,6 +2520,8 @@ export type HMACSHA256 = HMACSHA256$instance & __HMACSHA256$views;
|
|
|
2400
2520
|
|
|
2401
2521
|
|
|
2402
2522
|
export interface HMACSHA3_256$instance extends HMAC$instance {
|
|
2523
|
+
readonly __tsonic_type_System_Security_Cryptography_HMACSHA3_256: never;
|
|
2524
|
+
|
|
2403
2525
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2404
2526
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
2405
2527
|
|
|
@@ -2446,6 +2568,8 @@ export type HMACSHA3_256 = HMACSHA3_256$instance & __HMACSHA3_256$views;
|
|
|
2446
2568
|
|
|
2447
2569
|
|
|
2448
2570
|
export interface HMACSHA3_384$instance extends HMAC$instance {
|
|
2571
|
+
readonly __tsonic_type_System_Security_Cryptography_HMACSHA3_384: never;
|
|
2572
|
+
|
|
2449
2573
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2450
2574
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
2451
2575
|
|
|
@@ -2492,6 +2616,8 @@ export type HMACSHA3_384 = HMACSHA3_384$instance & __HMACSHA3_384$views;
|
|
|
2492
2616
|
|
|
2493
2617
|
|
|
2494
2618
|
export interface HMACSHA3_512$instance extends HMAC$instance {
|
|
2619
|
+
readonly __tsonic_type_System_Security_Cryptography_HMACSHA3_512: never;
|
|
2620
|
+
|
|
2495
2621
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2496
2622
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
2497
2623
|
|
|
@@ -2538,6 +2664,8 @@ export type HMACSHA3_512 = HMACSHA3_512$instance & __HMACSHA3_512$views;
|
|
|
2538
2664
|
|
|
2539
2665
|
|
|
2540
2666
|
export interface HMACSHA384$instance extends HMAC$instance {
|
|
2667
|
+
readonly __tsonic_type_System_Security_Cryptography_HMACSHA384: never;
|
|
2668
|
+
|
|
2541
2669
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2542
2670
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
2543
2671
|
|
|
@@ -2584,6 +2712,8 @@ export type HMACSHA384 = HMACSHA384$instance & __HMACSHA384$views;
|
|
|
2584
2712
|
|
|
2585
2713
|
|
|
2586
2714
|
export interface HMACSHA512$instance extends HMAC$instance {
|
|
2715
|
+
readonly __tsonic_type_System_Security_Cryptography_HMACSHA512: never;
|
|
2716
|
+
|
|
2587
2717
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2588
2718
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
2589
2719
|
|
|
@@ -2629,7 +2759,9 @@ export interface __HMACSHA512$views {
|
|
|
2629
2759
|
export type HMACSHA512 = HMACSHA512$instance & __HMACSHA512$views;
|
|
2630
2760
|
|
|
2631
2761
|
|
|
2632
|
-
export interface IncrementalHash$instance {
|
|
2762
|
+
export interface IncrementalHash$instance extends System_Internal.IDisposable$instance {
|
|
2763
|
+
readonly __tsonic_type_System_Security_Cryptography_IncrementalHash: never;
|
|
2764
|
+
|
|
2633
2765
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2634
2766
|
|
|
2635
2767
|
readonly AlgorithmName: HashAlgorithmName;
|
|
@@ -2659,12 +2791,12 @@ export interface __IncrementalHash$views {
|
|
|
2659
2791
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
2660
2792
|
}
|
|
2661
2793
|
|
|
2662
|
-
export interface IncrementalHash$instance extends System_Internal.IDisposable$instance {}
|
|
2663
|
-
|
|
2664
2794
|
export type IncrementalHash = IncrementalHash$instance & __IncrementalHash$views;
|
|
2665
2795
|
|
|
2666
2796
|
|
|
2667
2797
|
export interface KeyedHashAlgorithm$instance extends HashAlgorithm$instance {
|
|
2798
|
+
readonly __tsonic_type_System_Security_Cryptography_KeyedHashAlgorithm: never;
|
|
2799
|
+
|
|
2668
2800
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2669
2801
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
2670
2802
|
|
|
@@ -2689,6 +2821,8 @@ export type KeyedHashAlgorithm = KeyedHashAlgorithm$instance & __KeyedHashAlgori
|
|
|
2689
2821
|
|
|
2690
2822
|
|
|
2691
2823
|
export interface KeySizes$instance {
|
|
2824
|
+
readonly __tsonic_type_System_Security_Cryptography_KeySizes: never;
|
|
2825
|
+
|
|
2692
2826
|
readonly MaxSize: int;
|
|
2693
2827
|
readonly MinSize: int;
|
|
2694
2828
|
readonly SkipSize: int;
|
|
@@ -2702,7 +2836,9 @@ export const KeySizes: {
|
|
|
2702
2836
|
|
|
2703
2837
|
export type KeySizes = KeySizes$instance;
|
|
2704
2838
|
|
|
2705
|
-
export interface Kmac128$instance {
|
|
2839
|
+
export interface Kmac128$instance extends System_Internal.IDisposable$instance {
|
|
2840
|
+
readonly __tsonic_type_System_Security_Cryptography_Kmac128: never;
|
|
2841
|
+
|
|
2706
2842
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2707
2843
|
|
|
2708
2844
|
AppendData(data: byte[]): void;
|
|
@@ -2736,12 +2872,12 @@ export interface __Kmac128$views {
|
|
|
2736
2872
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
2737
2873
|
}
|
|
2738
2874
|
|
|
2739
|
-
export interface Kmac128$instance extends System_Internal.IDisposable$instance {}
|
|
2740
|
-
|
|
2741
2875
|
export type Kmac128 = Kmac128$instance & __Kmac128$views;
|
|
2742
2876
|
|
|
2743
2877
|
|
|
2744
|
-
export interface Kmac256$instance {
|
|
2878
|
+
export interface Kmac256$instance extends System_Internal.IDisposable$instance {
|
|
2879
|
+
readonly __tsonic_type_System_Security_Cryptography_Kmac256: never;
|
|
2880
|
+
|
|
2745
2881
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2746
2882
|
|
|
2747
2883
|
AppendData(data: byte[]): void;
|
|
@@ -2775,12 +2911,12 @@ export interface __Kmac256$views {
|
|
|
2775
2911
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
2776
2912
|
}
|
|
2777
2913
|
|
|
2778
|
-
export interface Kmac256$instance extends System_Internal.IDisposable$instance {}
|
|
2779
|
-
|
|
2780
2914
|
export type Kmac256 = Kmac256$instance & __Kmac256$views;
|
|
2781
2915
|
|
|
2782
2916
|
|
|
2783
|
-
export interface KmacXof128$instance {
|
|
2917
|
+
export interface KmacXof128$instance extends System_Internal.IDisposable$instance {
|
|
2918
|
+
readonly __tsonic_type_System_Security_Cryptography_KmacXof128: never;
|
|
2919
|
+
|
|
2784
2920
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2785
2921
|
|
|
2786
2922
|
AppendData(data: byte[]): void;
|
|
@@ -2814,12 +2950,12 @@ export interface __KmacXof128$views {
|
|
|
2814
2950
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
2815
2951
|
}
|
|
2816
2952
|
|
|
2817
|
-
export interface KmacXof128$instance extends System_Internal.IDisposable$instance {}
|
|
2818
|
-
|
|
2819
2953
|
export type KmacXof128 = KmacXof128$instance & __KmacXof128$views;
|
|
2820
2954
|
|
|
2821
2955
|
|
|
2822
|
-
export interface KmacXof256$instance {
|
|
2956
|
+
export interface KmacXof256$instance extends System_Internal.IDisposable$instance {
|
|
2957
|
+
readonly __tsonic_type_System_Security_Cryptography_KmacXof256: never;
|
|
2958
|
+
|
|
2823
2959
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2824
2960
|
|
|
2825
2961
|
AppendData(data: byte[]): void;
|
|
@@ -2853,12 +2989,12 @@ export interface __KmacXof256$views {
|
|
|
2853
2989
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
2854
2990
|
}
|
|
2855
2991
|
|
|
2856
|
-
export interface KmacXof256$instance extends System_Internal.IDisposable$instance {}
|
|
2857
|
-
|
|
2858
2992
|
export type KmacXof256 = KmacXof256$instance & __KmacXof256$views;
|
|
2859
2993
|
|
|
2860
2994
|
|
|
2861
2995
|
export interface MaskGenerationMethod$instance {
|
|
2996
|
+
readonly __tsonic_type_System_Security_Cryptography_MaskGenerationMethod: never;
|
|
2997
|
+
|
|
2862
2998
|
GenerateMask(rgbSeed: byte[], cbReturn: int): byte[];
|
|
2863
2999
|
}
|
|
2864
3000
|
|
|
@@ -2870,6 +3006,8 @@ export const MaskGenerationMethod: (abstract new() => MaskGenerationMethod) & {
|
|
|
2870
3006
|
export type MaskGenerationMethod = MaskGenerationMethod$instance;
|
|
2871
3007
|
|
|
2872
3008
|
export interface MD5$instance extends HashAlgorithm$instance {
|
|
3009
|
+
readonly __tsonic_type_System_Security_Cryptography_MD5: never;
|
|
3010
|
+
|
|
2873
3011
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2874
3012
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
2875
3013
|
|
|
@@ -2903,6 +3041,8 @@ export type MD5 = MD5$instance & __MD5$views;
|
|
|
2903
3041
|
|
|
2904
3042
|
|
|
2905
3043
|
export interface MD5CryptoServiceProvider$instance extends MD5$instance {
|
|
3044
|
+
readonly __tsonic_type_System_Security_Cryptography_MD5CryptoServiceProvider: never;
|
|
3045
|
+
|
|
2906
3046
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2907
3047
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
2908
3048
|
|
|
@@ -2934,6 +3074,8 @@ export type MD5CryptoServiceProvider = MD5CryptoServiceProvider$instance & __MD5
|
|
|
2934
3074
|
|
|
2935
3075
|
|
|
2936
3076
|
export interface MLDsa$instance {
|
|
3077
|
+
readonly __tsonic_type_System_Security_Cryptography_MLDsa: never;
|
|
3078
|
+
|
|
2937
3079
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
2938
3080
|
|
|
2939
3081
|
readonly Algorithm: MLDsaAlgorithm;
|
|
@@ -3019,6 +3161,8 @@ export type MLDsa = MLDsa$instance & __MLDsa$views;
|
|
|
3019
3161
|
|
|
3020
3162
|
|
|
3021
3163
|
export interface MLDsaAlgorithm$instance {
|
|
3164
|
+
readonly __tsonic_type_System_Security_Cryptography_MLDsaAlgorithm: never;
|
|
3165
|
+
|
|
3022
3166
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3023
3167
|
|
|
3024
3168
|
readonly MuSizeInBytes: int;
|
|
@@ -3052,6 +3196,8 @@ export type MLDsaAlgorithm = MLDsaAlgorithm$instance & __MLDsaAlgorithm$views;
|
|
|
3052
3196
|
|
|
3053
3197
|
|
|
3054
3198
|
export interface MLDsaCng$instance extends MLDsa$instance {
|
|
3199
|
+
readonly __tsonic_type_System_Security_Cryptography_MLDsaCng: never;
|
|
3200
|
+
|
|
3055
3201
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3056
3202
|
|
|
3057
3203
|
Dispose(): void;
|
|
@@ -3083,6 +3229,8 @@ export type MLDsaCng = MLDsaCng$instance & __MLDsaCng$views;
|
|
|
3083
3229
|
|
|
3084
3230
|
|
|
3085
3231
|
export interface MLDsaOpenSsl$instance extends MLDsa$instance {
|
|
3232
|
+
readonly __tsonic_type_System_Security_Cryptography_MLDsaOpenSsl: never;
|
|
3233
|
+
|
|
3086
3234
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3087
3235
|
|
|
3088
3236
|
Dispose(disposing: boolean): void;
|
|
@@ -3114,6 +3262,8 @@ export type MLDsaOpenSsl = MLDsaOpenSsl$instance & __MLDsaOpenSsl$views;
|
|
|
3114
3262
|
|
|
3115
3263
|
|
|
3116
3264
|
export interface MLKem$instance {
|
|
3265
|
+
readonly __tsonic_type_System_Security_Cryptography_MLKem: never;
|
|
3266
|
+
|
|
3117
3267
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3118
3268
|
|
|
3119
3269
|
readonly Algorithm: MLKemAlgorithm;
|
|
@@ -3186,6 +3336,8 @@ export type MLKem = MLKem$instance & __MLKem$views;
|
|
|
3186
3336
|
|
|
3187
3337
|
|
|
3188
3338
|
export interface MLKemAlgorithm$instance {
|
|
3339
|
+
readonly __tsonic_type_System_Security_Cryptography_MLKemAlgorithm: never;
|
|
3340
|
+
|
|
3189
3341
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3190
3342
|
|
|
3191
3343
|
readonly CiphertextSizeInBytes: int;
|
|
@@ -3219,6 +3371,8 @@ export type MLKemAlgorithm = MLKemAlgorithm$instance & __MLKemAlgorithm$views;
|
|
|
3219
3371
|
|
|
3220
3372
|
|
|
3221
3373
|
export interface MLKemCng$instance extends MLKem$instance {
|
|
3374
|
+
readonly __tsonic_type_System_Security_Cryptography_MLKemCng: never;
|
|
3375
|
+
|
|
3222
3376
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3223
3377
|
|
|
3224
3378
|
DecapsulateCore(ciphertext: ReadOnlySpan_1<System_Internal.Byte>, sharedSecret: Span_1<System_Internal.Byte>): void;
|
|
@@ -3246,6 +3400,8 @@ export type MLKemCng = MLKemCng$instance & __MLKemCng$views;
|
|
|
3246
3400
|
|
|
3247
3401
|
|
|
3248
3402
|
export interface MLKemOpenSsl$instance extends MLKem$instance {
|
|
3403
|
+
readonly __tsonic_type_System_Security_Cryptography_MLKemOpenSsl: never;
|
|
3404
|
+
|
|
3249
3405
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3250
3406
|
|
|
3251
3407
|
DecapsulateCore(ciphertext: ReadOnlySpan_1<System_Internal.Byte>, sharedSecret: Span_1<System_Internal.Byte>): void;
|
|
@@ -3273,6 +3429,8 @@ export type MLKemOpenSsl = MLKemOpenSsl$instance & __MLKemOpenSsl$views;
|
|
|
3273
3429
|
|
|
3274
3430
|
|
|
3275
3431
|
export interface Oid$instance {
|
|
3432
|
+
readonly __tsonic_type_System_Security_Cryptography_Oid: never;
|
|
3433
|
+
|
|
3276
3434
|
get FriendlyName(): string | undefined;
|
|
3277
3435
|
set FriendlyName(value: string | undefined);
|
|
3278
3436
|
get Value(): string | undefined;
|
|
@@ -3293,6 +3451,8 @@ export const Oid: {
|
|
|
3293
3451
|
export type Oid = Oid$instance;
|
|
3294
3452
|
|
|
3295
3453
|
export interface OidCollection$instance {
|
|
3454
|
+
readonly __tsonic_type_System_Security_Cryptography_OidCollection: never;
|
|
3455
|
+
|
|
3296
3456
|
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
3297
3457
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
3298
3458
|
|
|
@@ -3321,6 +3481,8 @@ export type OidCollection = OidCollection$instance & __OidCollection$views;
|
|
|
3321
3481
|
|
|
3322
3482
|
|
|
3323
3483
|
export interface OidEnumerator$instance {
|
|
3484
|
+
readonly __tsonic_type_System_Security_Cryptography_OidEnumerator: never;
|
|
3485
|
+
|
|
3324
3486
|
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
3325
3487
|
|
|
3326
3488
|
readonly Current: Oid;
|
|
@@ -3341,6 +3503,8 @@ export type OidEnumerator = OidEnumerator$instance & __OidEnumerator$views;
|
|
|
3341
3503
|
|
|
3342
3504
|
|
|
3343
3505
|
export interface PasswordDeriveBytes$instance extends DeriveBytes$instance {
|
|
3506
|
+
readonly __tsonic_type_System_Security_Cryptography_PasswordDeriveBytes: never;
|
|
3507
|
+
|
|
3344
3508
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3345
3509
|
|
|
3346
3510
|
HashName: string;
|
|
@@ -3375,6 +3539,8 @@ export type PasswordDeriveBytes = PasswordDeriveBytes$instance & __PasswordDeriv
|
|
|
3375
3539
|
|
|
3376
3540
|
|
|
3377
3541
|
export interface PbeParameters$instance {
|
|
3542
|
+
readonly __tsonic_type_System_Security_Cryptography_PbeParameters: never;
|
|
3543
|
+
|
|
3378
3544
|
readonly EncryptionAlgorithm: PbeEncryptionAlgorithm;
|
|
3379
3545
|
readonly HashAlgorithm: HashAlgorithmName;
|
|
3380
3546
|
readonly IterationCount: int;
|
|
@@ -3389,6 +3555,8 @@ export const PbeParameters: {
|
|
|
3389
3555
|
export type PbeParameters = PbeParameters$instance;
|
|
3390
3556
|
|
|
3391
3557
|
export interface PKCS1MaskGenerationMethod$instance extends MaskGenerationMethod {
|
|
3558
|
+
readonly __tsonic_type_System_Security_Cryptography_PKCS1MaskGenerationMethod: never;
|
|
3559
|
+
|
|
3392
3560
|
HashName: string;
|
|
3393
3561
|
GenerateMask(rgbSeed: byte[], cbReturn: int): byte[];
|
|
3394
3562
|
}
|
|
@@ -3402,6 +3570,8 @@ export const PKCS1MaskGenerationMethod: {
|
|
|
3402
3570
|
export type PKCS1MaskGenerationMethod = PKCS1MaskGenerationMethod$instance;
|
|
3403
3571
|
|
|
3404
3572
|
export interface RandomNumberGenerator$instance {
|
|
3573
|
+
readonly __tsonic_type_System_Security_Cryptography_RandomNumberGenerator: never;
|
|
3574
|
+
|
|
3405
3575
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3406
3576
|
|
|
3407
3577
|
Dispose(): void;
|
|
@@ -3438,6 +3608,8 @@ export type RandomNumberGenerator = RandomNumberGenerator$instance & __RandomNum
|
|
|
3438
3608
|
|
|
3439
3609
|
|
|
3440
3610
|
export interface RC2$instance extends SymmetricAlgorithm$instance {
|
|
3611
|
+
readonly __tsonic_type_System_Security_Cryptography_RC2: never;
|
|
3612
|
+
|
|
3441
3613
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3442
3614
|
|
|
3443
3615
|
EffectiveKeySize: int;
|
|
@@ -3459,6 +3631,8 @@ export type RC2 = RC2$instance & __RC2$views;
|
|
|
3459
3631
|
|
|
3460
3632
|
|
|
3461
3633
|
export interface RC2CryptoServiceProvider$instance extends RC2$instance {
|
|
3634
|
+
readonly __tsonic_type_System_Security_Cryptography_RC2CryptoServiceProvider: never;
|
|
3635
|
+
|
|
3462
3636
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3463
3637
|
|
|
3464
3638
|
BlockSize: int;
|
|
@@ -3498,6 +3672,8 @@ export type RC2CryptoServiceProvider = RC2CryptoServiceProvider$instance & __RC2
|
|
|
3498
3672
|
|
|
3499
3673
|
|
|
3500
3674
|
export interface Rfc2898DeriveBytes$instance extends DeriveBytes$instance {
|
|
3675
|
+
readonly __tsonic_type_System_Security_Cryptography_Rfc2898DeriveBytes: never;
|
|
3676
|
+
|
|
3501
3677
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3502
3678
|
|
|
3503
3679
|
readonly HashAlgorithm: HashAlgorithmName;
|
|
@@ -3537,6 +3713,8 @@ export type Rfc2898DeriveBytes = Rfc2898DeriveBytes$instance & __Rfc2898DeriveBy
|
|
|
3537
3713
|
|
|
3538
3714
|
|
|
3539
3715
|
export interface Rijndael$instance extends SymmetricAlgorithm$instance {
|
|
3716
|
+
readonly __tsonic_type_System_Security_Cryptography_Rijndael: never;
|
|
3717
|
+
|
|
3540
3718
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3541
3719
|
|
|
3542
3720
|
Dispose(): void;
|
|
@@ -3556,6 +3734,8 @@ export type Rijndael = Rijndael$instance & __Rijndael$views;
|
|
|
3556
3734
|
|
|
3557
3735
|
|
|
3558
3736
|
export interface RijndaelManaged$instance extends Rijndael$instance {
|
|
3737
|
+
readonly __tsonic_type_System_Security_Cryptography_RijndaelManaged: never;
|
|
3738
|
+
|
|
3559
3739
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3560
3740
|
|
|
3561
3741
|
BlockSize: int;
|
|
@@ -3590,6 +3770,8 @@ export type RijndaelManaged = RijndaelManaged$instance & __RijndaelManaged$views
|
|
|
3590
3770
|
|
|
3591
3771
|
|
|
3592
3772
|
export interface RNGCryptoServiceProvider$instance extends RandomNumberGenerator$instance {
|
|
3773
|
+
readonly __tsonic_type_System_Security_Cryptography_RNGCryptoServiceProvider: never;
|
|
3774
|
+
|
|
3593
3775
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3594
3776
|
|
|
3595
3777
|
Dispose(disposing: boolean): void;
|
|
@@ -3620,6 +3802,8 @@ export type RNGCryptoServiceProvider = RNGCryptoServiceProvider$instance & __RNG
|
|
|
3620
3802
|
|
|
3621
3803
|
|
|
3622
3804
|
export interface RSA$instance extends AsymmetricAlgorithm$instance {
|
|
3805
|
+
readonly __tsonic_type_System_Security_Cryptography_RSA: never;
|
|
3806
|
+
|
|
3623
3807
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3624
3808
|
|
|
3625
3809
|
readonly KeyExchangeAlgorithm: string | undefined;
|
|
@@ -3706,6 +3890,8 @@ export type RSA = RSA$instance & __RSA$views;
|
|
|
3706
3890
|
|
|
3707
3891
|
|
|
3708
3892
|
export interface RSACng$instance extends RSA$instance {
|
|
3893
|
+
readonly __tsonic_type_System_Security_Cryptography_RSACng: never;
|
|
3894
|
+
|
|
3709
3895
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3710
3896
|
|
|
3711
3897
|
readonly Key: CngKey;
|
|
@@ -3730,7 +3916,9 @@ export interface __RSACng$views {
|
|
|
3730
3916
|
export type RSACng = RSACng$instance & __RSACng$views;
|
|
3731
3917
|
|
|
3732
3918
|
|
|
3733
|
-
export interface RSACryptoServiceProvider$instance extends RSA$instance {
|
|
3919
|
+
export interface RSACryptoServiceProvider$instance extends RSA$instance, ICspAsymmetricAlgorithm$instance {
|
|
3920
|
+
readonly __tsonic_type_System_Security_Cryptography_RSACryptoServiceProvider: never;
|
|
3921
|
+
|
|
3734
3922
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3735
3923
|
readonly __tsonic_iface_System_Security_Cryptography_ICspAsymmetricAlgorithm: never;
|
|
3736
3924
|
|
|
@@ -3800,12 +3988,12 @@ export interface __RSACryptoServiceProvider$views {
|
|
|
3800
3988
|
As_ICspAsymmetricAlgorithm(): ICspAsymmetricAlgorithm$instance;
|
|
3801
3989
|
}
|
|
3802
3990
|
|
|
3803
|
-
export interface RSACryptoServiceProvider$instance extends ICspAsymmetricAlgorithm$instance {}
|
|
3804
|
-
|
|
3805
3991
|
export type RSACryptoServiceProvider = RSACryptoServiceProvider$instance & __RSACryptoServiceProvider$views;
|
|
3806
3992
|
|
|
3807
3993
|
|
|
3808
3994
|
export interface RSAEncryptionPadding$instance {
|
|
3995
|
+
readonly __tsonic_type_System_Security_Cryptography_RSAEncryptionPadding: never;
|
|
3996
|
+
|
|
3809
3997
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
3810
3998
|
|
|
3811
3999
|
readonly Mode: RSAEncryptionPaddingMode;
|
|
@@ -3841,6 +4029,8 @@ export type RSAEncryptionPadding = RSAEncryptionPadding$instance & __RSAEncrypti
|
|
|
3841
4029
|
|
|
3842
4030
|
|
|
3843
4031
|
export interface RSAOAEPKeyExchangeDeformatter$instance extends AsymmetricKeyExchangeDeformatter {
|
|
4032
|
+
readonly __tsonic_type_System_Security_Cryptography_RSAOAEPKeyExchangeDeformatter: never;
|
|
4033
|
+
|
|
3844
4034
|
get Parameters(): string | undefined;
|
|
3845
4035
|
set Parameters(value: string | undefined);
|
|
3846
4036
|
DecryptKeyExchange(rgbData: byte[]): byte[];
|
|
@@ -3857,6 +4047,8 @@ export const RSAOAEPKeyExchangeDeformatter: {
|
|
|
3857
4047
|
export type RSAOAEPKeyExchangeDeformatter = RSAOAEPKeyExchangeDeformatter$instance;
|
|
3858
4048
|
|
|
3859
4049
|
export interface RSAOAEPKeyExchangeFormatter$instance extends AsymmetricKeyExchangeFormatter {
|
|
4050
|
+
readonly __tsonic_type_System_Security_Cryptography_RSAOAEPKeyExchangeFormatter: never;
|
|
4051
|
+
|
|
3860
4052
|
get Parameter(): byte[] | undefined;
|
|
3861
4053
|
set Parameter(value: byte[] | undefined);
|
|
3862
4054
|
readonly Parameters: string | undefined;
|
|
@@ -3877,6 +4069,8 @@ export const RSAOAEPKeyExchangeFormatter: {
|
|
|
3877
4069
|
export type RSAOAEPKeyExchangeFormatter = RSAOAEPKeyExchangeFormatter$instance;
|
|
3878
4070
|
|
|
3879
4071
|
export interface RSAOpenSsl$instance extends RSA$instance {
|
|
4072
|
+
readonly __tsonic_type_System_Security_Cryptography_RSAOpenSsl: never;
|
|
4073
|
+
|
|
3880
4074
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
3881
4075
|
|
|
3882
4076
|
KeySize: int;
|
|
@@ -3947,6 +4141,8 @@ export type RSAOpenSsl = RSAOpenSsl$instance & __RSAOpenSsl$views;
|
|
|
3947
4141
|
|
|
3948
4142
|
|
|
3949
4143
|
export interface RSAPKCS1KeyExchangeDeformatter$instance extends AsymmetricKeyExchangeDeformatter {
|
|
4144
|
+
readonly __tsonic_type_System_Security_Cryptography_RSAPKCS1KeyExchangeDeformatter: never;
|
|
4145
|
+
|
|
3950
4146
|
get Parameters(): string | undefined;
|
|
3951
4147
|
set Parameters(value: string | undefined);
|
|
3952
4148
|
get RNG(): RandomNumberGenerator | undefined;
|
|
@@ -3965,6 +4161,8 @@ export const RSAPKCS1KeyExchangeDeformatter: {
|
|
|
3965
4161
|
export type RSAPKCS1KeyExchangeDeformatter = RSAPKCS1KeyExchangeDeformatter$instance;
|
|
3966
4162
|
|
|
3967
4163
|
export interface RSAPKCS1KeyExchangeFormatter$instance extends AsymmetricKeyExchangeFormatter {
|
|
4164
|
+
readonly __tsonic_type_System_Security_Cryptography_RSAPKCS1KeyExchangeFormatter: never;
|
|
4165
|
+
|
|
3968
4166
|
readonly Parameters: string | string | undefined;
|
|
3969
4167
|
get Rng(): RandomNumberGenerator | undefined;
|
|
3970
4168
|
set Rng(value: RandomNumberGenerator | undefined);
|
|
@@ -3983,6 +4181,8 @@ export const RSAPKCS1KeyExchangeFormatter: {
|
|
|
3983
4181
|
export type RSAPKCS1KeyExchangeFormatter = RSAPKCS1KeyExchangeFormatter$instance;
|
|
3984
4182
|
|
|
3985
4183
|
export interface RSAPKCS1SignatureDeformatter$instance extends AsymmetricSignatureDeformatter {
|
|
4184
|
+
readonly __tsonic_type_System_Security_Cryptography_RSAPKCS1SignatureDeformatter: never;
|
|
4185
|
+
|
|
3986
4186
|
SetHashAlgorithm(strName: string): void;
|
|
3987
4187
|
SetKey(key: AsymmetricAlgorithm): void;
|
|
3988
4188
|
VerifySignature(rgbHash: byte[], rgbSignature: byte[]): boolean;
|
|
@@ -3999,6 +4199,8 @@ export const RSAPKCS1SignatureDeformatter: {
|
|
|
3999
4199
|
export type RSAPKCS1SignatureDeformatter = RSAPKCS1SignatureDeformatter$instance;
|
|
4000
4200
|
|
|
4001
4201
|
export interface RSAPKCS1SignatureFormatter$instance extends AsymmetricSignatureFormatter {
|
|
4202
|
+
readonly __tsonic_type_System_Security_Cryptography_RSAPKCS1SignatureFormatter: never;
|
|
4203
|
+
|
|
4002
4204
|
CreateSignature(rgbHash: byte[]): byte[];
|
|
4003
4205
|
CreateSignature(hash: HashAlgorithm): byte[];
|
|
4004
4206
|
SetHashAlgorithm(strName: string): void;
|
|
@@ -4015,6 +4217,8 @@ export const RSAPKCS1SignatureFormatter: {
|
|
|
4015
4217
|
export type RSAPKCS1SignatureFormatter = RSAPKCS1SignatureFormatter$instance;
|
|
4016
4218
|
|
|
4017
4219
|
export interface RSASignaturePadding$instance {
|
|
4220
|
+
readonly __tsonic_type_System_Security_Cryptography_RSASignaturePadding: never;
|
|
4221
|
+
|
|
4018
4222
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4019
4223
|
|
|
4020
4224
|
readonly Mode: RSASignaturePaddingMode;
|
|
@@ -4042,6 +4246,8 @@ export type RSASignaturePadding = RSASignaturePadding$instance & __RSASignatureP
|
|
|
4042
4246
|
|
|
4043
4247
|
|
|
4044
4248
|
export interface SafeEvpPKeyHandle$instance extends SafeHandle {
|
|
4249
|
+
readonly __tsonic_type_System_Security_Cryptography_SafeEvpPKeyHandle: never;
|
|
4250
|
+
|
|
4045
4251
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4046
4252
|
|
|
4047
4253
|
readonly IsInvalid: boolean;
|
|
@@ -4070,6 +4276,8 @@ export type SafeEvpPKeyHandle = SafeEvpPKeyHandle$instance & __SafeEvpPKeyHandle
|
|
|
4070
4276
|
|
|
4071
4277
|
|
|
4072
4278
|
export interface SHA1$instance extends HashAlgorithm$instance {
|
|
4279
|
+
readonly __tsonic_type_System_Security_Cryptography_SHA1: never;
|
|
4280
|
+
|
|
4073
4281
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4074
4282
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4075
4283
|
|
|
@@ -4103,6 +4311,8 @@ export type SHA1 = SHA1$instance & __SHA1$views;
|
|
|
4103
4311
|
|
|
4104
4312
|
|
|
4105
4313
|
export interface SHA1CryptoServiceProvider$instance extends SHA1$instance {
|
|
4314
|
+
readonly __tsonic_type_System_Security_Cryptography_SHA1CryptoServiceProvider: never;
|
|
4315
|
+
|
|
4106
4316
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4107
4317
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4108
4318
|
|
|
@@ -4134,6 +4344,8 @@ export type SHA1CryptoServiceProvider = SHA1CryptoServiceProvider$instance & __S
|
|
|
4134
4344
|
|
|
4135
4345
|
|
|
4136
4346
|
export interface SHA1Managed$instance extends SHA1$instance {
|
|
4347
|
+
readonly __tsonic_type_System_Security_Cryptography_SHA1Managed: never;
|
|
4348
|
+
|
|
4137
4349
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4138
4350
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4139
4351
|
|
|
@@ -4165,6 +4377,8 @@ export type SHA1Managed = SHA1Managed$instance & __SHA1Managed$views;
|
|
|
4165
4377
|
|
|
4166
4378
|
|
|
4167
4379
|
export interface SHA256$instance extends HashAlgorithm$instance {
|
|
4380
|
+
readonly __tsonic_type_System_Security_Cryptography_SHA256: never;
|
|
4381
|
+
|
|
4168
4382
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4169
4383
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4170
4384
|
|
|
@@ -4198,6 +4412,8 @@ export type SHA256 = SHA256$instance & __SHA256$views;
|
|
|
4198
4412
|
|
|
4199
4413
|
|
|
4200
4414
|
export interface SHA256CryptoServiceProvider$instance extends SHA256$instance {
|
|
4415
|
+
readonly __tsonic_type_System_Security_Cryptography_SHA256CryptoServiceProvider: never;
|
|
4416
|
+
|
|
4201
4417
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4202
4418
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4203
4419
|
|
|
@@ -4229,6 +4445,8 @@ export type SHA256CryptoServiceProvider = SHA256CryptoServiceProvider$instance &
|
|
|
4229
4445
|
|
|
4230
4446
|
|
|
4231
4447
|
export interface SHA256Managed$instance extends SHA256$instance {
|
|
4448
|
+
readonly __tsonic_type_System_Security_Cryptography_SHA256Managed: never;
|
|
4449
|
+
|
|
4232
4450
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4233
4451
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4234
4452
|
|
|
@@ -4260,6 +4478,8 @@ export type SHA256Managed = SHA256Managed$instance & __SHA256Managed$views;
|
|
|
4260
4478
|
|
|
4261
4479
|
|
|
4262
4480
|
export interface SHA3_256$instance extends HashAlgorithm$instance {
|
|
4481
|
+
readonly __tsonic_type_System_Security_Cryptography_SHA3_256: never;
|
|
4482
|
+
|
|
4263
4483
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4264
4484
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4265
4485
|
|
|
@@ -4294,6 +4514,8 @@ export type SHA3_256 = SHA3_256$instance & __SHA3_256$views;
|
|
|
4294
4514
|
|
|
4295
4515
|
|
|
4296
4516
|
export interface SHA3_384$instance extends HashAlgorithm$instance {
|
|
4517
|
+
readonly __tsonic_type_System_Security_Cryptography_SHA3_384: never;
|
|
4518
|
+
|
|
4297
4519
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4298
4520
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4299
4521
|
|
|
@@ -4328,6 +4550,8 @@ export type SHA3_384 = SHA3_384$instance & __SHA3_384$views;
|
|
|
4328
4550
|
|
|
4329
4551
|
|
|
4330
4552
|
export interface SHA3_512$instance extends HashAlgorithm$instance {
|
|
4553
|
+
readonly __tsonic_type_System_Security_Cryptography_SHA3_512: never;
|
|
4554
|
+
|
|
4331
4555
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4332
4556
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4333
4557
|
|
|
@@ -4362,6 +4586,8 @@ export type SHA3_512 = SHA3_512$instance & __SHA3_512$views;
|
|
|
4362
4586
|
|
|
4363
4587
|
|
|
4364
4588
|
export interface SHA384$instance extends HashAlgorithm$instance {
|
|
4589
|
+
readonly __tsonic_type_System_Security_Cryptography_SHA384: never;
|
|
4590
|
+
|
|
4365
4591
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4366
4592
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4367
4593
|
|
|
@@ -4395,6 +4621,8 @@ export type SHA384 = SHA384$instance & __SHA384$views;
|
|
|
4395
4621
|
|
|
4396
4622
|
|
|
4397
4623
|
export interface SHA384CryptoServiceProvider$instance extends SHA384$instance {
|
|
4624
|
+
readonly __tsonic_type_System_Security_Cryptography_SHA384CryptoServiceProvider: never;
|
|
4625
|
+
|
|
4398
4626
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4399
4627
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4400
4628
|
|
|
@@ -4426,6 +4654,8 @@ export type SHA384CryptoServiceProvider = SHA384CryptoServiceProvider$instance &
|
|
|
4426
4654
|
|
|
4427
4655
|
|
|
4428
4656
|
export interface SHA384Managed$instance extends SHA384$instance {
|
|
4657
|
+
readonly __tsonic_type_System_Security_Cryptography_SHA384Managed: never;
|
|
4658
|
+
|
|
4429
4659
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4430
4660
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4431
4661
|
|
|
@@ -4457,6 +4687,8 @@ export type SHA384Managed = SHA384Managed$instance & __SHA384Managed$views;
|
|
|
4457
4687
|
|
|
4458
4688
|
|
|
4459
4689
|
export interface SHA512$instance extends HashAlgorithm$instance {
|
|
4690
|
+
readonly __tsonic_type_System_Security_Cryptography_SHA512: never;
|
|
4691
|
+
|
|
4460
4692
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4461
4693
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4462
4694
|
|
|
@@ -4490,6 +4722,8 @@ export type SHA512 = SHA512$instance & __SHA512$views;
|
|
|
4490
4722
|
|
|
4491
4723
|
|
|
4492
4724
|
export interface SHA512CryptoServiceProvider$instance extends SHA512$instance {
|
|
4725
|
+
readonly __tsonic_type_System_Security_Cryptography_SHA512CryptoServiceProvider: never;
|
|
4726
|
+
|
|
4493
4727
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4494
4728
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4495
4729
|
|
|
@@ -4521,6 +4755,8 @@ export type SHA512CryptoServiceProvider = SHA512CryptoServiceProvider$instance &
|
|
|
4521
4755
|
|
|
4522
4756
|
|
|
4523
4757
|
export interface SHA512Managed$instance extends SHA512$instance {
|
|
4758
|
+
readonly __tsonic_type_System_Security_Cryptography_SHA512Managed: never;
|
|
4759
|
+
|
|
4524
4760
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4525
4761
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4526
4762
|
|
|
@@ -4551,7 +4787,9 @@ export interface __SHA512Managed$views {
|
|
|
4551
4787
|
export type SHA512Managed = SHA512Managed$instance & __SHA512Managed$views;
|
|
4552
4788
|
|
|
4553
4789
|
|
|
4554
|
-
export interface Shake128$instance {
|
|
4790
|
+
export interface Shake128$instance extends System_Internal.IDisposable$instance {
|
|
4791
|
+
readonly __tsonic_type_System_Security_Cryptography_Shake128: never;
|
|
4792
|
+
|
|
4555
4793
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4556
4794
|
|
|
4557
4795
|
AppendData(data: byte[]): void;
|
|
@@ -4585,12 +4823,12 @@ export interface __Shake128$views {
|
|
|
4585
4823
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
4586
4824
|
}
|
|
4587
4825
|
|
|
4588
|
-
export interface Shake128$instance extends System_Internal.IDisposable$instance {}
|
|
4589
|
-
|
|
4590
4826
|
export type Shake128 = Shake128$instance & __Shake128$views;
|
|
4591
4827
|
|
|
4592
4828
|
|
|
4593
|
-
export interface Shake256$instance {
|
|
4829
|
+
export interface Shake256$instance extends System_Internal.IDisposable$instance {
|
|
4830
|
+
readonly __tsonic_type_System_Security_Cryptography_Shake256: never;
|
|
4831
|
+
|
|
4594
4832
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4595
4833
|
|
|
4596
4834
|
AppendData(data: byte[]): void;
|
|
@@ -4624,12 +4862,12 @@ export interface __Shake256$views {
|
|
|
4624
4862
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
4625
4863
|
}
|
|
4626
4864
|
|
|
4627
|
-
export interface Shake256$instance extends System_Internal.IDisposable$instance {}
|
|
4628
|
-
|
|
4629
4865
|
export type Shake256 = Shake256$instance & __Shake256$views;
|
|
4630
4866
|
|
|
4631
4867
|
|
|
4632
4868
|
export interface SignatureDescription$instance {
|
|
4869
|
+
readonly __tsonic_type_System_Security_Cryptography_SignatureDescription: never;
|
|
4870
|
+
|
|
4633
4871
|
get DeformatterAlgorithm(): string | undefined;
|
|
4634
4872
|
set DeformatterAlgorithm(value: string | undefined);
|
|
4635
4873
|
get DigestAlgorithm(): string | undefined;
|
|
@@ -4653,6 +4891,8 @@ export const SignatureDescription: {
|
|
|
4653
4891
|
export type SignatureDescription = SignatureDescription$instance;
|
|
4654
4892
|
|
|
4655
4893
|
export interface SlhDsa$instance {
|
|
4894
|
+
readonly __tsonic_type_System_Security_Cryptography_SlhDsa: never;
|
|
4895
|
+
|
|
4656
4896
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4657
4897
|
|
|
4658
4898
|
readonly Algorithm: SlhDsaAlgorithm;
|
|
@@ -4726,6 +4966,8 @@ export type SlhDsa = SlhDsa$instance & __SlhDsa$views;
|
|
|
4726
4966
|
|
|
4727
4967
|
|
|
4728
4968
|
export interface SlhDsaAlgorithm$instance {
|
|
4969
|
+
readonly __tsonic_type_System_Security_Cryptography_SlhDsaAlgorithm: never;
|
|
4970
|
+
|
|
4729
4971
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
4730
4972
|
|
|
4731
4973
|
readonly Name: string;
|
|
@@ -4766,6 +5008,8 @@ export type SlhDsaAlgorithm = SlhDsaAlgorithm$instance & __SlhDsaAlgorithm$views
|
|
|
4766
5008
|
|
|
4767
5009
|
|
|
4768
5010
|
export interface SlhDsaCng$instance extends SlhDsa$instance {
|
|
5011
|
+
readonly __tsonic_type_System_Security_Cryptography_SlhDsaCng: never;
|
|
5012
|
+
|
|
4769
5013
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4770
5014
|
|
|
4771
5015
|
Dispose(): void;
|
|
@@ -4795,6 +5039,8 @@ export type SlhDsaCng = SlhDsaCng$instance & __SlhDsaCng$views;
|
|
|
4795
5039
|
|
|
4796
5040
|
|
|
4797
5041
|
export interface SlhDsaOpenSsl$instance extends SlhDsa$instance {
|
|
5042
|
+
readonly __tsonic_type_System_Security_Cryptography_SlhDsaOpenSsl: never;
|
|
5043
|
+
|
|
4798
5044
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4799
5045
|
|
|
4800
5046
|
Dispose(disposing: boolean): void;
|
|
@@ -4821,7 +5067,9 @@ export interface __SlhDsaOpenSsl$views {
|
|
|
4821
5067
|
export type SlhDsaOpenSsl = SlhDsaOpenSsl$instance & __SlhDsaOpenSsl$views;
|
|
4822
5068
|
|
|
4823
5069
|
|
|
4824
|
-
export interface SP800108HmacCounterKdf$instance {
|
|
5070
|
+
export interface SP800108HmacCounterKdf$instance extends System_Internal.IDisposable$instance {
|
|
5071
|
+
readonly __tsonic_type_System_Security_Cryptography_SP800108HmacCounterKdf: never;
|
|
5072
|
+
|
|
4825
5073
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4826
5074
|
|
|
4827
5075
|
DeriveKey(label: byte[], context: byte[], derivedKeyLengthInBytes: int): byte[];
|
|
@@ -4850,12 +5098,12 @@ export interface __SP800108HmacCounterKdf$views {
|
|
|
4850
5098
|
As_IDisposable(): System_Internal.IDisposable$instance;
|
|
4851
5099
|
}
|
|
4852
5100
|
|
|
4853
|
-
export interface SP800108HmacCounterKdf$instance extends System_Internal.IDisposable$instance {}
|
|
4854
|
-
|
|
4855
5101
|
export type SP800108HmacCounterKdf = SP800108HmacCounterKdf$instance & __SP800108HmacCounterKdf$views;
|
|
4856
5102
|
|
|
4857
5103
|
|
|
4858
5104
|
export interface SymmetricAlgorithm$instance {
|
|
5105
|
+
readonly __tsonic_type_System_Security_Cryptography_SymmetricAlgorithm: never;
|
|
5106
|
+
|
|
4859
5107
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4860
5108
|
|
|
4861
5109
|
BlockSize: int;
|
|
@@ -4929,6 +5177,8 @@ export type SymmetricAlgorithm = SymmetricAlgorithm$instance & __SymmetricAlgori
|
|
|
4929
5177
|
|
|
4930
5178
|
|
|
4931
5179
|
export interface ToBase64Transform$instance {
|
|
5180
|
+
readonly __tsonic_type_System_Security_Cryptography_ToBase64Transform: never;
|
|
5181
|
+
|
|
4932
5182
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4933
5183
|
readonly __tsonic_iface_System_Security_Cryptography_ICryptoTransform: never;
|
|
4934
5184
|
|
|
@@ -4959,6 +5209,8 @@ export type ToBase64Transform = ToBase64Transform$instance & __ToBase64Transform
|
|
|
4959
5209
|
|
|
4960
5210
|
|
|
4961
5211
|
export interface TripleDES$instance extends SymmetricAlgorithm$instance {
|
|
5212
|
+
readonly __tsonic_type_System_Security_Cryptography_TripleDES: never;
|
|
5213
|
+
|
|
4962
5214
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4963
5215
|
|
|
4964
5216
|
Key: byte[];
|
|
@@ -4980,6 +5232,8 @@ export type TripleDES = TripleDES$instance & __TripleDES$views;
|
|
|
4980
5232
|
|
|
4981
5233
|
|
|
4982
5234
|
export interface TripleDESCng$instance extends TripleDES$instance {
|
|
5235
|
+
readonly __tsonic_type_System_Security_Cryptography_TripleDESCng: never;
|
|
5236
|
+
|
|
4983
5237
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
4984
5238
|
|
|
4985
5239
|
CreateDecryptor(rgbKey: byte[], rgbIV: byte[]): ICryptoTransform;
|
|
@@ -5009,6 +5263,8 @@ export type TripleDESCng = TripleDESCng$instance & __TripleDESCng$views;
|
|
|
5009
5263
|
|
|
5010
5264
|
|
|
5011
5265
|
export interface TripleDESCryptoServiceProvider$instance extends TripleDES$instance {
|
|
5266
|
+
readonly __tsonic_type_System_Security_Cryptography_TripleDESCryptoServiceProvider: never;
|
|
5267
|
+
|
|
5012
5268
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
5013
5269
|
|
|
5014
5270
|
BlockSize: int;
|