@tsonic/microsoft-extensions 10.0.3 → 10.0.7
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.Extensions.Caching.Distributed/internal/index.d.ts +27 -19
- package/Microsoft.Extensions.Caching.Hybrid/internal/index.d.ts +29 -21
- package/Microsoft.Extensions.Caching.Memory/internal/index.d.ts +54 -31
- package/Microsoft.Extensions.Configuration/internal/index.d.ts +141 -70
- package/Microsoft.Extensions.Configuration.CommandLine/internal/index.d.ts +17 -11
- package/Microsoft.Extensions.Configuration.EnvironmentVariables/internal/index.d.ts +13 -7
- package/Microsoft.Extensions.Configuration.Ini/internal/index.d.ts +25 -8
- package/Microsoft.Extensions.Configuration.Json/internal/index.d.ts +24 -7
- package/Microsoft.Extensions.Configuration.KeyPerFile/internal/index.d.ts +16 -9
- package/Microsoft.Extensions.Configuration.Memory/internal/index.d.ts +21 -13
- package/Microsoft.Extensions.Configuration.UserSecrets/internal/index.d.ts +6 -2
- package/Microsoft.Extensions.Configuration.Xml/internal/index.d.ts +29 -10
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +171 -114
- package/Microsoft.Extensions.DependencyInjection.Extensions/internal/index.d.ts +18 -18
- package/Microsoft.Extensions.Diagnostics.HealthChecks/internal/index.d.ts +51 -31
- package/Microsoft.Extensions.Diagnostics.Metrics/internal/index.d.ts +31 -19
- package/Microsoft.Extensions.Diagnostics.Metrics.Configuration/internal/index.d.ts +3 -1
- package/Microsoft.Extensions.FileProviders/internal/index.d.ts +65 -38
- package/Microsoft.Extensions.FileProviders.Composite/internal/index.d.ts +16 -12
- package/Microsoft.Extensions.FileProviders.Embedded/internal/index.d.ts +9 -7
- package/Microsoft.Extensions.FileProviders.Internal/internal/index.d.ts +15 -11
- package/Microsoft.Extensions.FileProviders.Physical/internal/index.d.ts +36 -15
- package/Microsoft.Extensions.FileSystemGlobbing/internal/index.d.ts +23 -13
- package/Microsoft.Extensions.FileSystemGlobbing.Abstractions/internal/index.d.ts +16 -6
- package/Microsoft.Extensions.FileSystemGlobbing.Internal/internal/index.d.ts +24 -10
- package/Microsoft.Extensions.FileSystemGlobbing.Internal.PathSegments/internal/index.d.ts +30 -20
- package/Microsoft.Extensions.FileSystemGlobbing.Internal.PatternContexts/internal/index.d.ts +47 -15
- package/Microsoft.Extensions.FileSystemGlobbing.Internal.Patterns/internal/index.d.ts +4 -2
- package/Microsoft.Extensions.Hosting/internal/index.d.ts +84 -39
- package/Microsoft.Extensions.Hosting.Internal/internal/index.d.ts +22 -13
- package/Microsoft.Extensions.Http/internal/index.d.ts +18 -10
- package/Microsoft.Extensions.Http.Logging/internal/index.d.ts +21 -9
- package/Microsoft.Extensions.Internal/internal/index.d.ts +9 -5
- package/Microsoft.Extensions.Localization/internal/index.d.ts +48 -19
- package/Microsoft.Extensions.Logging/internal/index.d.ts +108 -66
- package/Microsoft.Extensions.Logging.Abstractions/internal/index.d.ts +41 -22
- package/Microsoft.Extensions.Logging.Configuration/internal/index.d.ts +10 -2
- package/Microsoft.Extensions.Logging.Console/internal/index.d.ts +34 -10
- package/Microsoft.Extensions.Logging.Debug/internal/index.d.ts +8 -5
- package/Microsoft.Extensions.Logging.EventLog/internal/index.d.ts +13 -7
- package/Microsoft.Extensions.Logging.EventSource/internal/index.d.ts +14 -7
- package/Microsoft.Extensions.Logging.TraceSource/internal/index.d.ts +9 -6
- package/Microsoft.Extensions.ObjectPool/internal/index.d.ts +33 -7
- package/Microsoft.Extensions.Options/internal/index.d.ts +257 -128
- package/Microsoft.Extensions.Primitives/internal/index.d.ts +68 -22
- package/Microsoft.Extensions.Primitives.d.ts +3 -0
- package/Microsoft.Extensions.Validation/internal/index.d.ts +41 -21
- package/Microsoft.Extensions.WebEncoders/internal/index.d.ts +5 -3
- package/Microsoft.Extensions.WebEncoders.Testing/internal/index.d.ts +10 -4
- package/System.Diagnostics/internal/index.d.ts +37 -10
- package/System.Diagnostics.Eventing.Reader/internal/index.d.ts +146 -70
- package/System.Net.Http/internal/index.d.ts +7 -3
- package/System.Security.Cryptography/internal/index.d.ts +16 -5
- package/System.Security.Cryptography.Pkcs/internal/index.d.ts +162 -69
- package/System.Security.Cryptography.Xml/internal/index.d.ts +115 -16
- package/__internal/extensions/index.d.ts +633 -487
- package/package.json +3 -3
|
@@ -10,15 +10,15 @@ import type { ptr } from "@tsonic/core/types.js";
|
|
|
10
10
|
|
|
11
11
|
// Import types from other namespaces
|
|
12
12
|
import type { CryptographicAttributeObject, CryptographicAttributeObjectCollection } from "../../System.Security.Cryptography/internal/index.js";
|
|
13
|
-
import type {
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
import type {
|
|
17
|
-
import
|
|
18
|
-
import
|
|
19
|
-
import
|
|
20
|
-
import
|
|
21
|
-
import type {
|
|
13
|
+
import type { IEnumerable_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
14
|
+
import type { ReadOnlyCollection_1 } from "@tsonic/dotnet/System.Collections.ObjectModel/internal/index.js";
|
|
15
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
16
|
+
import type { ICollection, IEnumerable, IEnumerator } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
17
|
+
import type { X509Certificate2, X509Certificate2Collection, X509ExtensionCollection, X509IncludeOption } from "@tsonic/dotnet/System.Security.Cryptography.X509Certificates/internal/index.js";
|
|
18
|
+
import * as System_Security_Cryptography_Lib from "@tsonic/dotnet/System.Security.Cryptography/internal/index.js";
|
|
19
|
+
import type { AsnEncodedData, AsymmetricAlgorithm, CompositeMLDsa, CspParameters, HashAlgorithmName, MLDsa, Oid, PbeParameters, RSA, RSAEncryptionPadding, RSASignaturePadding, SlhDsa } from "@tsonic/dotnet/System.Security.Cryptography/internal/index.js";
|
|
20
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
21
|
+
import type { Array as ClrArray, Boolean as ClrBoolean, Byte, Char, DateTime, DateTimeOffset, Enum, IComparable, IConvertible, IFormattable, Int32, Int64, ISpanFormattable, Nullable_1, Object as ClrObject, ReadOnlyMemory_1, ReadOnlySpan_1, Span_1, String as ClrString, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
22
22
|
|
|
23
23
|
export enum Pkcs12ConfidentialityMode {
|
|
24
24
|
Unknown = 0,
|
|
@@ -60,6 +60,8 @@ export enum SubjectIdentifierType {
|
|
|
60
60
|
|
|
61
61
|
|
|
62
62
|
export interface AlgorithmIdentifier$instance {
|
|
63
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_AlgorithmIdentifier: never;
|
|
64
|
+
|
|
63
65
|
KeyLength: int;
|
|
64
66
|
Oid: Oid;
|
|
65
67
|
Parameters: byte[];
|
|
@@ -76,6 +78,8 @@ export const AlgorithmIdentifier: {
|
|
|
76
78
|
export type AlgorithmIdentifier = AlgorithmIdentifier$instance;
|
|
77
79
|
|
|
78
80
|
export interface CmsRecipient$instance {
|
|
81
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_CmsRecipient: never;
|
|
82
|
+
|
|
79
83
|
readonly Certificate: X509Certificate2;
|
|
80
84
|
readonly RecipientIdentifierType: SubjectIdentifierType;
|
|
81
85
|
readonly RSAEncryptionPadding: RSAEncryptionPadding | undefined;
|
|
@@ -93,6 +97,11 @@ export const CmsRecipient: {
|
|
|
93
97
|
export type CmsRecipient = CmsRecipient$instance;
|
|
94
98
|
|
|
95
99
|
export interface CmsRecipientCollection$instance {
|
|
100
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_CmsRecipientCollection: never;
|
|
101
|
+
|
|
102
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
103
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
104
|
+
|
|
96
105
|
readonly Count: int;
|
|
97
106
|
readonly IsSynchronized: boolean;
|
|
98
107
|
readonly [index: number]: CmsRecipient;
|
|
@@ -115,6 +124,10 @@ export const CmsRecipientCollection: {
|
|
|
115
124
|
export type CmsRecipientCollection = CmsRecipientCollection$instance;
|
|
116
125
|
|
|
117
126
|
export interface CmsRecipientEnumerator$instance {
|
|
127
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_CmsRecipientEnumerator: never;
|
|
128
|
+
|
|
129
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
130
|
+
|
|
118
131
|
readonly Current: CmsRecipient;
|
|
119
132
|
MoveNext(): boolean;
|
|
120
133
|
Reset(): void;
|
|
@@ -128,6 +141,8 @@ export const CmsRecipientEnumerator: {
|
|
|
128
141
|
export type CmsRecipientEnumerator = CmsRecipientEnumerator$instance;
|
|
129
142
|
|
|
130
143
|
export interface CmsSigner$instance {
|
|
144
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_CmsSigner: never;
|
|
145
|
+
|
|
131
146
|
get Certificate(): X509Certificate2 | undefined;
|
|
132
147
|
set Certificate(value: X509Certificate2 | undefined);
|
|
133
148
|
readonly Certificates: X509Certificate2Collection;
|
|
@@ -160,6 +175,8 @@ export const CmsSigner: {
|
|
|
160
175
|
export type CmsSigner = CmsSigner$instance;
|
|
161
176
|
|
|
162
177
|
export interface ContentInfo$instance {
|
|
178
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_ContentInfo: never;
|
|
179
|
+
|
|
163
180
|
readonly Content: byte[];
|
|
164
181
|
readonly ContentType: Oid;
|
|
165
182
|
}
|
|
@@ -169,13 +186,15 @@ export const ContentInfo: {
|
|
|
169
186
|
new(content: byte[]): ContentInfo;
|
|
170
187
|
new(contentType: Oid, content: byte[]): ContentInfo;
|
|
171
188
|
GetContentType(encodedMessage: byte[]): Oid;
|
|
172
|
-
GetContentType(encodedMessage:
|
|
189
|
+
GetContentType(encodedMessage: ReadOnlySpan_1<System_Internal.Byte>): Oid;
|
|
173
190
|
};
|
|
174
191
|
|
|
175
192
|
|
|
176
193
|
export type ContentInfo = ContentInfo$instance;
|
|
177
194
|
|
|
178
195
|
export interface EnvelopedCms$instance {
|
|
196
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_EnvelopedCms: never;
|
|
197
|
+
|
|
179
198
|
Certificates: X509Certificate2Collection;
|
|
180
199
|
ContentEncryptionAlgorithm: AlgorithmIdentifier;
|
|
181
200
|
ContentInfo: ContentInfo;
|
|
@@ -183,7 +202,7 @@ export interface EnvelopedCms$instance {
|
|
|
183
202
|
UnprotectedAttributes: CryptographicAttributeObjectCollection;
|
|
184
203
|
Version: int;
|
|
185
204
|
Decode(encodedMessage: byte[]): void;
|
|
186
|
-
Decode(encodedMessage:
|
|
205
|
+
Decode(encodedMessage: ReadOnlySpan_1<System_Internal.Byte>): void;
|
|
187
206
|
Decrypt(): void;
|
|
188
207
|
Decrypt(recipientInfo: RecipientInfo): void;
|
|
189
208
|
Decrypt(recipientInfo: RecipientInfo, extraStore: X509Certificate2Collection): void;
|
|
@@ -205,6 +224,8 @@ export const EnvelopedCms: {
|
|
|
205
224
|
export type EnvelopedCms = EnvelopedCms$instance;
|
|
206
225
|
|
|
207
226
|
export interface KeyAgreeRecipientInfo$instance extends RecipientInfo {
|
|
227
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_KeyAgreeRecipientInfo: never;
|
|
228
|
+
|
|
208
229
|
readonly Date: DateTime;
|
|
209
230
|
readonly EncryptedKey: byte[];
|
|
210
231
|
readonly KeyEncryptionAlgorithm: AlgorithmIdentifier;
|
|
@@ -222,6 +243,8 @@ export const KeyAgreeRecipientInfo: {
|
|
|
222
243
|
export type KeyAgreeRecipientInfo = KeyAgreeRecipientInfo$instance;
|
|
223
244
|
|
|
224
245
|
export interface KeyTransRecipientInfo$instance extends RecipientInfo {
|
|
246
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_KeyTransRecipientInfo: never;
|
|
247
|
+
|
|
225
248
|
readonly EncryptedKey: byte[];
|
|
226
249
|
readonly KeyEncryptionAlgorithm: AlgorithmIdentifier;
|
|
227
250
|
readonly RecipientIdentifier: SubjectIdentifier;
|
|
@@ -236,17 +259,19 @@ export const KeyTransRecipientInfo: {
|
|
|
236
259
|
export type KeyTransRecipientInfo = KeyTransRecipientInfo$instance;
|
|
237
260
|
|
|
238
261
|
export interface Pkcs12Builder$instance {
|
|
262
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs12Builder: never;
|
|
263
|
+
|
|
239
264
|
readonly IsSealed: boolean;
|
|
240
265
|
AddSafeContentsEncrypted(safeContents: Pkcs12SafeContents, passwordBytes: byte[], pbeParameters: PbeParameters): void;
|
|
241
|
-
AddSafeContentsEncrypted(safeContents: Pkcs12SafeContents, passwordBytes:
|
|
266
|
+
AddSafeContentsEncrypted(safeContents: Pkcs12SafeContents, passwordBytes: ReadOnlySpan_1<System_Internal.Byte>, pbeParameters: PbeParameters): void;
|
|
242
267
|
AddSafeContentsEncrypted(safeContents: Pkcs12SafeContents, password: string, pbeParameters: PbeParameters): void;
|
|
243
|
-
AddSafeContentsEncrypted(safeContents: Pkcs12SafeContents, password:
|
|
268
|
+
AddSafeContentsEncrypted(safeContents: Pkcs12SafeContents, password: ReadOnlySpan_1<System_Internal.Char>, pbeParameters: PbeParameters): void;
|
|
244
269
|
AddSafeContentsUnencrypted(safeContents: Pkcs12SafeContents): void;
|
|
245
270
|
Encode(): byte[];
|
|
246
271
|
SealWithMac(password: string, hashAlgorithm: HashAlgorithmName, iterationCount: int): void;
|
|
247
|
-
SealWithMac(password:
|
|
272
|
+
SealWithMac(password: ReadOnlySpan_1<System_Internal.Char>, hashAlgorithm: HashAlgorithmName, iterationCount: int): void;
|
|
248
273
|
SealWithoutIntegrity(): void;
|
|
249
|
-
TryEncode(destination:
|
|
274
|
+
TryEncode(destination: Span_1<System_Internal.Byte>, bytesWritten: int): boolean;
|
|
250
275
|
}
|
|
251
276
|
|
|
252
277
|
|
|
@@ -258,7 +283,9 @@ export const Pkcs12Builder: {
|
|
|
258
283
|
export type Pkcs12Builder = Pkcs12Builder$instance;
|
|
259
284
|
|
|
260
285
|
export interface Pkcs12CertBag$instance extends Pkcs12SafeBag {
|
|
261
|
-
readonly
|
|
286
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs12CertBag: never;
|
|
287
|
+
|
|
288
|
+
readonly EncodedCertificate: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
262
289
|
readonly IsX509Certificate: boolean;
|
|
263
290
|
GetCertificate(): X509Certificate2;
|
|
264
291
|
GetCertificateType(): Oid;
|
|
@@ -266,71 +293,79 @@ export interface Pkcs12CertBag$instance extends Pkcs12SafeBag {
|
|
|
266
293
|
|
|
267
294
|
|
|
268
295
|
export const Pkcs12CertBag: {
|
|
269
|
-
new(certificateType: Oid, encodedCertificate:
|
|
296
|
+
new(certificateType: Oid, encodedCertificate: ReadOnlyMemory_1<System_Internal.Byte>): Pkcs12CertBag;
|
|
270
297
|
};
|
|
271
298
|
|
|
272
299
|
|
|
273
300
|
export type Pkcs12CertBag = Pkcs12CertBag$instance;
|
|
274
301
|
|
|
275
302
|
export interface Pkcs12Info$instance {
|
|
276
|
-
|
|
303
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs12Info: never;
|
|
304
|
+
|
|
305
|
+
AuthenticatedSafe: ReadOnlyCollection_1<Pkcs12SafeContents>;
|
|
277
306
|
IntegrityMode: Pkcs12IntegrityMode;
|
|
278
307
|
VerifyMac(password: string): boolean;
|
|
279
|
-
VerifyMac(password:
|
|
308
|
+
VerifyMac(password: ReadOnlySpan_1<System_Internal.Char>): boolean;
|
|
280
309
|
}
|
|
281
310
|
|
|
282
311
|
|
|
283
312
|
export const Pkcs12Info: {
|
|
284
|
-
Decode(encodedBytes:
|
|
313
|
+
Decode(encodedBytes: ReadOnlyMemory_1<System_Internal.Byte>, bytesConsumed: int, skipCopy?: boolean): Pkcs12Info;
|
|
285
314
|
};
|
|
286
315
|
|
|
287
316
|
|
|
288
317
|
export type Pkcs12Info = Pkcs12Info$instance;
|
|
289
318
|
|
|
290
319
|
export interface Pkcs12KeyBag$instance extends Pkcs12SafeBag {
|
|
291
|
-
readonly
|
|
320
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs12KeyBag: never;
|
|
321
|
+
|
|
322
|
+
readonly Pkcs8PrivateKey: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
292
323
|
}
|
|
293
324
|
|
|
294
325
|
|
|
295
326
|
export const Pkcs12KeyBag: {
|
|
296
|
-
new(pkcs8PrivateKey:
|
|
327
|
+
new(pkcs8PrivateKey: ReadOnlyMemory_1<System_Internal.Byte>, skipCopy: boolean): Pkcs12KeyBag;
|
|
297
328
|
};
|
|
298
329
|
|
|
299
330
|
|
|
300
331
|
export type Pkcs12KeyBag = Pkcs12KeyBag$instance;
|
|
301
332
|
|
|
302
333
|
export interface Pkcs12SafeBag$instance {
|
|
334
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs12SafeBag: never;
|
|
335
|
+
|
|
303
336
|
Attributes: CryptographicAttributeObjectCollection;
|
|
304
|
-
readonly EncodedBagValue:
|
|
337
|
+
readonly EncodedBagValue: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
305
338
|
Encode(): byte[];
|
|
306
339
|
GetBagId(): Oid;
|
|
307
|
-
TryEncode(destination:
|
|
340
|
+
TryEncode(destination: Span_1<System_Internal.Byte>, bytesWritten: int): boolean;
|
|
308
341
|
}
|
|
309
342
|
|
|
310
343
|
|
|
311
|
-
export const Pkcs12SafeBag: (abstract new(bagIdValue: string, encodedBagValue:
|
|
344
|
+
export const Pkcs12SafeBag: (abstract new(bagIdValue: string, encodedBagValue: ReadOnlyMemory_1<System_Internal.Byte>, skipCopy: boolean) => Pkcs12SafeBag) & {
|
|
312
345
|
};
|
|
313
346
|
|
|
314
347
|
|
|
315
348
|
export type Pkcs12SafeBag = Pkcs12SafeBag$instance;
|
|
316
349
|
|
|
317
350
|
export interface Pkcs12SafeContents$instance {
|
|
351
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs12SafeContents: never;
|
|
352
|
+
|
|
318
353
|
ConfidentialityMode: Pkcs12ConfidentialityMode;
|
|
319
354
|
readonly IsReadOnly: boolean;
|
|
320
355
|
AddCertificate(certificate: X509Certificate2): Pkcs12CertBag;
|
|
321
356
|
AddKeyUnencrypted(key: AsymmetricAlgorithm): Pkcs12KeyBag;
|
|
322
357
|
AddNestedContents(safeContents: Pkcs12SafeContents): Pkcs12SafeContentsBag;
|
|
323
358
|
AddSafeBag(safeBag: Pkcs12SafeBag): void;
|
|
324
|
-
AddSecret(secretType: Oid, secretValue:
|
|
359
|
+
AddSecret(secretType: Oid, secretValue: ReadOnlyMemory_1<System_Internal.Byte>): Pkcs12SecretBag;
|
|
325
360
|
AddShroudedKey(key: AsymmetricAlgorithm, passwordBytes: byte[], pbeParameters: PbeParameters): Pkcs12ShroudedKeyBag;
|
|
326
|
-
AddShroudedKey(key: AsymmetricAlgorithm, passwordBytes:
|
|
361
|
+
AddShroudedKey(key: AsymmetricAlgorithm, passwordBytes: ReadOnlySpan_1<System_Internal.Byte>, pbeParameters: PbeParameters): Pkcs12ShroudedKeyBag;
|
|
327
362
|
AddShroudedKey(key: AsymmetricAlgorithm, password: string, pbeParameters: PbeParameters): Pkcs12ShroudedKeyBag;
|
|
328
|
-
AddShroudedKey(key: AsymmetricAlgorithm, password:
|
|
363
|
+
AddShroudedKey(key: AsymmetricAlgorithm, password: ReadOnlySpan_1<System_Internal.Char>, pbeParameters: PbeParameters): Pkcs12ShroudedKeyBag;
|
|
329
364
|
Decrypt(passwordBytes: byte[]): void;
|
|
330
|
-
Decrypt(passwordBytes:
|
|
365
|
+
Decrypt(passwordBytes: ReadOnlySpan_1<System_Internal.Byte>): void;
|
|
331
366
|
Decrypt(password: string): void;
|
|
332
|
-
Decrypt(password:
|
|
333
|
-
GetBags():
|
|
367
|
+
Decrypt(password: ReadOnlySpan_1<System_Internal.Char>): void;
|
|
368
|
+
GetBags(): IEnumerable_1<Pkcs12SafeBag>;
|
|
334
369
|
}
|
|
335
370
|
|
|
336
371
|
|
|
@@ -342,6 +377,8 @@ export const Pkcs12SafeContents: {
|
|
|
342
377
|
export type Pkcs12SafeContents = Pkcs12SafeContents$instance;
|
|
343
378
|
|
|
344
379
|
export interface Pkcs12SafeContentsBag$instance extends Pkcs12SafeBag {
|
|
380
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs12SafeContentsBag: never;
|
|
381
|
+
|
|
345
382
|
get SafeContents(): Pkcs12SafeContents | undefined;
|
|
346
383
|
set SafeContents(value: Pkcs12SafeContents | undefined);
|
|
347
384
|
}
|
|
@@ -354,7 +391,9 @@ export const Pkcs12SafeContentsBag: {
|
|
|
354
391
|
export type Pkcs12SafeContentsBag = Pkcs12SafeContentsBag$instance;
|
|
355
392
|
|
|
356
393
|
export interface Pkcs12SecretBag$instance extends Pkcs12SafeBag {
|
|
357
|
-
readonly
|
|
394
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs12SecretBag: never;
|
|
395
|
+
|
|
396
|
+
readonly SecretValue: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
358
397
|
GetSecretType(): Oid;
|
|
359
398
|
}
|
|
360
399
|
|
|
@@ -366,43 +405,49 @@ export const Pkcs12SecretBag: {
|
|
|
366
405
|
export type Pkcs12SecretBag = Pkcs12SecretBag$instance;
|
|
367
406
|
|
|
368
407
|
export interface Pkcs12ShroudedKeyBag$instance extends Pkcs12SafeBag {
|
|
369
|
-
readonly
|
|
408
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs12ShroudedKeyBag: never;
|
|
409
|
+
|
|
410
|
+
readonly EncryptedPkcs8PrivateKey: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
370
411
|
}
|
|
371
412
|
|
|
372
413
|
|
|
373
414
|
export const Pkcs12ShroudedKeyBag: {
|
|
374
|
-
new(encryptedPkcs8PrivateKey:
|
|
415
|
+
new(encryptedPkcs8PrivateKey: ReadOnlyMemory_1<System_Internal.Byte>, skipCopy: boolean): Pkcs12ShroudedKeyBag;
|
|
375
416
|
};
|
|
376
417
|
|
|
377
418
|
|
|
378
419
|
export type Pkcs12ShroudedKeyBag = Pkcs12ShroudedKeyBag$instance;
|
|
379
420
|
|
|
380
421
|
export interface Pkcs8PrivateKeyInfo$instance {
|
|
422
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs8PrivateKeyInfo: never;
|
|
423
|
+
|
|
381
424
|
readonly AlgorithmId: Oid;
|
|
382
|
-
readonly AlgorithmParameters:
|
|
425
|
+
readonly AlgorithmParameters: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>;
|
|
383
426
|
readonly Attributes: CryptographicAttributeObjectCollection;
|
|
384
|
-
readonly PrivateKeyBytes:
|
|
427
|
+
readonly PrivateKeyBytes: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
385
428
|
Encode(): byte[];
|
|
386
|
-
Encrypt(password:
|
|
387
|
-
Encrypt(passwordBytes:
|
|
388
|
-
TryEncode(destination:
|
|
389
|
-
TryEncrypt(password:
|
|
390
|
-
TryEncrypt(passwordBytes:
|
|
429
|
+
Encrypt(password: ReadOnlySpan_1<System_Internal.Char>, pbeParameters: PbeParameters): byte[];
|
|
430
|
+
Encrypt(passwordBytes: ReadOnlySpan_1<System_Internal.Byte>, pbeParameters: PbeParameters): byte[];
|
|
431
|
+
TryEncode(destination: Span_1<System_Internal.Byte>, bytesWritten: int): boolean;
|
|
432
|
+
TryEncrypt(password: ReadOnlySpan_1<System_Internal.Char>, pbeParameters: PbeParameters, destination: Span_1<System_Internal.Byte>, bytesWritten: int): boolean;
|
|
433
|
+
TryEncrypt(passwordBytes: ReadOnlySpan_1<System_Internal.Byte>, pbeParameters: PbeParameters, destination: Span_1<System_Internal.Byte>, bytesWritten: int): boolean;
|
|
391
434
|
}
|
|
392
435
|
|
|
393
436
|
|
|
394
437
|
export const Pkcs8PrivateKeyInfo: {
|
|
395
|
-
new(algorithmId: Oid, algorithmParameters:
|
|
438
|
+
new(algorithmId: Oid, algorithmParameters: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>, privateKey: ReadOnlyMemory_1<System_Internal.Byte>, skipCopies: boolean): Pkcs8PrivateKeyInfo;
|
|
396
439
|
Create(privateKey: AsymmetricAlgorithm): Pkcs8PrivateKeyInfo;
|
|
397
|
-
Decode(source:
|
|
398
|
-
DecryptAndDecode(passwordBytes:
|
|
399
|
-
DecryptAndDecode(password:
|
|
440
|
+
Decode(source: ReadOnlyMemory_1<System_Internal.Byte>, bytesRead: int, skipCopy?: boolean): Pkcs8PrivateKeyInfo;
|
|
441
|
+
DecryptAndDecode(passwordBytes: ReadOnlySpan_1<System_Internal.Byte>, source: ReadOnlyMemory_1<System_Internal.Byte>, bytesRead: int): Pkcs8PrivateKeyInfo;
|
|
442
|
+
DecryptAndDecode(password: ReadOnlySpan_1<System_Internal.Char>, source: ReadOnlyMemory_1<System_Internal.Byte>, bytesRead: int): Pkcs8PrivateKeyInfo;
|
|
400
443
|
};
|
|
401
444
|
|
|
402
445
|
|
|
403
446
|
export type Pkcs8PrivateKeyInfo = Pkcs8PrivateKeyInfo$instance;
|
|
404
447
|
|
|
405
448
|
export interface Pkcs9AttributeObject$instance extends AsnEncodedData {
|
|
449
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs9AttributeObject: never;
|
|
450
|
+
|
|
406
451
|
readonly Oid: Oid | undefined;
|
|
407
452
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
408
453
|
}
|
|
@@ -419,6 +464,8 @@ export const Pkcs9AttributeObject: {
|
|
|
419
464
|
export type Pkcs9AttributeObject = Pkcs9AttributeObject$instance;
|
|
420
465
|
|
|
421
466
|
export interface Pkcs9ContentType$instance extends Pkcs9AttributeObject {
|
|
467
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs9ContentType: never;
|
|
468
|
+
|
|
422
469
|
readonly ContentType: Oid;
|
|
423
470
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
424
471
|
}
|
|
@@ -432,6 +479,8 @@ export const Pkcs9ContentType: {
|
|
|
432
479
|
export type Pkcs9ContentType = Pkcs9ContentType$instance;
|
|
433
480
|
|
|
434
481
|
export interface Pkcs9DocumentDescription$instance extends Pkcs9AttributeObject {
|
|
482
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs9DocumentDescription: never;
|
|
483
|
+
|
|
435
484
|
readonly DocumentDescription: string;
|
|
436
485
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
437
486
|
}
|
|
@@ -447,6 +496,8 @@ export const Pkcs9DocumentDescription: {
|
|
|
447
496
|
export type Pkcs9DocumentDescription = Pkcs9DocumentDescription$instance;
|
|
448
497
|
|
|
449
498
|
export interface Pkcs9DocumentName$instance extends Pkcs9AttributeObject {
|
|
499
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs9DocumentName: never;
|
|
500
|
+
|
|
450
501
|
readonly DocumentName: string;
|
|
451
502
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
452
503
|
}
|
|
@@ -462,7 +513,9 @@ export const Pkcs9DocumentName: {
|
|
|
462
513
|
export type Pkcs9DocumentName = Pkcs9DocumentName$instance;
|
|
463
514
|
|
|
464
515
|
export interface Pkcs9LocalKeyId$instance extends Pkcs9AttributeObject {
|
|
465
|
-
readonly
|
|
516
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs9LocalKeyId: never;
|
|
517
|
+
|
|
518
|
+
readonly KeyId: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
466
519
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
467
520
|
}
|
|
468
521
|
|
|
@@ -470,13 +523,15 @@ export interface Pkcs9LocalKeyId$instance extends Pkcs9AttributeObject {
|
|
|
470
523
|
export const Pkcs9LocalKeyId: {
|
|
471
524
|
new(): Pkcs9LocalKeyId;
|
|
472
525
|
new(keyId: byte[]): Pkcs9LocalKeyId;
|
|
473
|
-
new(keyId:
|
|
526
|
+
new(keyId: ReadOnlySpan_1<System_Internal.Byte>): Pkcs9LocalKeyId;
|
|
474
527
|
};
|
|
475
528
|
|
|
476
529
|
|
|
477
530
|
export type Pkcs9LocalKeyId = Pkcs9LocalKeyId$instance;
|
|
478
531
|
|
|
479
532
|
export interface Pkcs9MessageDigest$instance extends Pkcs9AttributeObject {
|
|
533
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs9MessageDigest: never;
|
|
534
|
+
|
|
480
535
|
readonly MessageDigest: byte[];
|
|
481
536
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
482
537
|
}
|
|
@@ -490,6 +545,8 @@ export const Pkcs9MessageDigest: {
|
|
|
490
545
|
export type Pkcs9MessageDigest = Pkcs9MessageDigest$instance;
|
|
491
546
|
|
|
492
547
|
export interface Pkcs9SigningTime$instance extends Pkcs9AttributeObject {
|
|
548
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Pkcs9SigningTime: never;
|
|
549
|
+
|
|
493
550
|
readonly SigningTime: DateTime;
|
|
494
551
|
CopyFrom(asnEncodedData: AsnEncodedData): void;
|
|
495
552
|
}
|
|
@@ -505,6 +562,8 @@ export const Pkcs9SigningTime: {
|
|
|
505
562
|
export type Pkcs9SigningTime = Pkcs9SigningTime$instance;
|
|
506
563
|
|
|
507
564
|
export interface PublicKeyInfo$instance {
|
|
565
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_PublicKeyInfo: never;
|
|
566
|
+
|
|
508
567
|
readonly Algorithm: AlgorithmIdentifier;
|
|
509
568
|
readonly KeyValue: byte[];
|
|
510
569
|
}
|
|
@@ -517,6 +576,8 @@ export const PublicKeyInfo: {
|
|
|
517
576
|
export type PublicKeyInfo = PublicKeyInfo$instance;
|
|
518
577
|
|
|
519
578
|
export interface RecipientInfo$instance {
|
|
579
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_RecipientInfo: never;
|
|
580
|
+
|
|
520
581
|
readonly EncryptedKey: byte[];
|
|
521
582
|
readonly KeyEncryptionAlgorithm: AlgorithmIdentifier;
|
|
522
583
|
readonly RecipientIdentifier: SubjectIdentifier;
|
|
@@ -532,6 +593,11 @@ export const RecipientInfo: {
|
|
|
532
593
|
export type RecipientInfo = RecipientInfo$instance;
|
|
533
594
|
|
|
534
595
|
export interface RecipientInfoCollection$instance {
|
|
596
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_RecipientInfoCollection: never;
|
|
597
|
+
|
|
598
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
599
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
600
|
+
|
|
535
601
|
readonly Count: int;
|
|
536
602
|
readonly IsSynchronized: boolean;
|
|
537
603
|
readonly [index: number]: RecipientInfo;
|
|
@@ -549,6 +615,10 @@ export const RecipientInfoCollection: {
|
|
|
549
615
|
export type RecipientInfoCollection = RecipientInfoCollection$instance;
|
|
550
616
|
|
|
551
617
|
export interface RecipientInfoEnumerator$instance {
|
|
618
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_RecipientInfoEnumerator: never;
|
|
619
|
+
|
|
620
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
621
|
+
|
|
552
622
|
readonly Current: RecipientInfo;
|
|
553
623
|
MoveNext(): boolean;
|
|
554
624
|
Reset(): void;
|
|
@@ -562,6 +632,8 @@ export const RecipientInfoEnumerator: {
|
|
|
562
632
|
export type RecipientInfoEnumerator = RecipientInfoEnumerator$instance;
|
|
563
633
|
|
|
564
634
|
export interface Rfc3161TimestampRequest$instance {
|
|
635
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Rfc3161TimestampRequest: never;
|
|
636
|
+
|
|
565
637
|
readonly HasExtensions: boolean;
|
|
566
638
|
readonly HashAlgorithmId: Oid;
|
|
567
639
|
readonly RequestedPolicyId: Oid | undefined;
|
|
@@ -569,43 +641,47 @@ export interface Rfc3161TimestampRequest$instance {
|
|
|
569
641
|
readonly Version: int;
|
|
570
642
|
Encode(): byte[];
|
|
571
643
|
GetExtensions(): X509ExtensionCollection;
|
|
572
|
-
GetMessageHash():
|
|
573
|
-
GetNonce():
|
|
574
|
-
ProcessResponse(responseBytes:
|
|
575
|
-
TryEncode(destination:
|
|
644
|
+
GetMessageHash(): ReadOnlyMemory_1<System_Internal.Byte>;
|
|
645
|
+
GetNonce(): Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>;
|
|
646
|
+
ProcessResponse(responseBytes: ReadOnlyMemory_1<System_Internal.Byte>, bytesConsumed: int): Rfc3161TimestampToken;
|
|
647
|
+
TryEncode(destination: Span_1<System_Internal.Byte>, bytesWritten: int): boolean;
|
|
576
648
|
}
|
|
577
649
|
|
|
578
650
|
|
|
579
651
|
export const Rfc3161TimestampRequest: {
|
|
580
|
-
CreateFromData(data:
|
|
581
|
-
CreateFromHash(hash:
|
|
582
|
-
CreateFromHash(hash:
|
|
583
|
-
CreateFromSignerInfo(signerInfo: SignerInfo, hashAlgorithm: HashAlgorithmName, requestedPolicyId?: Oid, nonce?:
|
|
584
|
-
TryDecode(encodedBytes:
|
|
652
|
+
CreateFromData(data: ReadOnlySpan_1<System_Internal.Byte>, hashAlgorithm: HashAlgorithmName, requestedPolicyId?: Oid, nonce?: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>, requestSignerCertificates?: boolean, extensions?: X509ExtensionCollection): Rfc3161TimestampRequest;
|
|
653
|
+
CreateFromHash(hash: ReadOnlyMemory_1<System_Internal.Byte>, hashAlgorithm: HashAlgorithmName, requestedPolicyId?: Oid, nonce?: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>, requestSignerCertificates?: boolean, extensions?: X509ExtensionCollection): Rfc3161TimestampRequest;
|
|
654
|
+
CreateFromHash(hash: ReadOnlyMemory_1<System_Internal.Byte>, hashAlgorithmId: Oid, requestedPolicyId?: Oid, nonce?: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>, requestSignerCertificates?: boolean, extensions?: X509ExtensionCollection): Rfc3161TimestampRequest;
|
|
655
|
+
CreateFromSignerInfo(signerInfo: SignerInfo, hashAlgorithm: HashAlgorithmName, requestedPolicyId?: Oid, nonce?: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>, requestSignerCertificates?: boolean, extensions?: X509ExtensionCollection): Rfc3161TimestampRequest;
|
|
656
|
+
TryDecode(encodedBytes: ReadOnlyMemory_1<System_Internal.Byte>, request: Rfc3161TimestampRequest, bytesConsumed: int): boolean;
|
|
585
657
|
};
|
|
586
658
|
|
|
587
659
|
|
|
588
660
|
export type Rfc3161TimestampRequest = Rfc3161TimestampRequest$instance;
|
|
589
661
|
|
|
590
662
|
export interface Rfc3161TimestampToken$instance {
|
|
663
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Rfc3161TimestampToken: never;
|
|
664
|
+
|
|
591
665
|
TokenInfo: Rfc3161TimestampTokenInfo;
|
|
592
666
|
AsSignedCms(): SignedCms;
|
|
593
|
-
VerifySignatureForData(data:
|
|
594
|
-
VerifySignatureForHash(hash:
|
|
595
|
-
VerifySignatureForHash(hash:
|
|
667
|
+
VerifySignatureForData(data: ReadOnlySpan_1<System_Internal.Byte>, signerCertificate: X509Certificate2, extraCandidates?: X509Certificate2Collection): boolean;
|
|
668
|
+
VerifySignatureForHash(hash: ReadOnlySpan_1<System_Internal.Byte>, hashAlgorithm: HashAlgorithmName, signerCertificate: X509Certificate2, extraCandidates?: X509Certificate2Collection): boolean;
|
|
669
|
+
VerifySignatureForHash(hash: ReadOnlySpan_1<System_Internal.Byte>, hashAlgorithmId: Oid, signerCertificate: X509Certificate2, extraCandidates?: X509Certificate2Collection): boolean;
|
|
596
670
|
VerifySignatureForSignerInfo(signerInfo: SignerInfo, signerCertificate: X509Certificate2, extraCandidates?: X509Certificate2Collection): boolean;
|
|
597
671
|
}
|
|
598
672
|
|
|
599
673
|
|
|
600
674
|
export const Rfc3161TimestampToken: {
|
|
601
|
-
TryDecode(encodedBytes:
|
|
675
|
+
TryDecode(encodedBytes: ReadOnlyMemory_1<System_Internal.Byte>, token: Rfc3161TimestampToken, bytesConsumed: int): boolean;
|
|
602
676
|
};
|
|
603
677
|
|
|
604
678
|
|
|
605
679
|
export type Rfc3161TimestampToken = Rfc3161TimestampToken$instance;
|
|
606
680
|
|
|
607
681
|
export interface Rfc3161TimestampTokenInfo$instance {
|
|
608
|
-
readonly
|
|
682
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_Rfc3161TimestampTokenInfo: never;
|
|
683
|
+
|
|
684
|
+
readonly AccuracyInMicroseconds: Nullable_1<System_Internal.Int64>;
|
|
609
685
|
readonly HasExtensions: boolean;
|
|
610
686
|
readonly HashAlgorithmId: Oid;
|
|
611
687
|
readonly IsOrdering: boolean;
|
|
@@ -614,23 +690,25 @@ export interface Rfc3161TimestampTokenInfo$instance {
|
|
|
614
690
|
readonly Version: int;
|
|
615
691
|
Encode(): byte[];
|
|
616
692
|
GetExtensions(): X509ExtensionCollection;
|
|
617
|
-
GetMessageHash():
|
|
618
|
-
GetNonce():
|
|
619
|
-
GetSerialNumber():
|
|
620
|
-
GetTimestampAuthorityName():
|
|
621
|
-
TryEncode(destination:
|
|
693
|
+
GetMessageHash(): ReadOnlyMemory_1<System_Internal.Byte>;
|
|
694
|
+
GetNonce(): Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>;
|
|
695
|
+
GetSerialNumber(): ReadOnlyMemory_1<System_Internal.Byte>;
|
|
696
|
+
GetTimestampAuthorityName(): Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>;
|
|
697
|
+
TryEncode(destination: Span_1<System_Internal.Byte>, bytesWritten: int): boolean;
|
|
622
698
|
}
|
|
623
699
|
|
|
624
700
|
|
|
625
701
|
export const Rfc3161TimestampTokenInfo: {
|
|
626
|
-
new(policyId: Oid, hashAlgorithmId: Oid, messageHash:
|
|
627
|
-
TryDecode(encodedBytes:
|
|
702
|
+
new(policyId: Oid, hashAlgorithmId: Oid, messageHash: ReadOnlyMemory_1<System_Internal.Byte>, serialNumber: ReadOnlyMemory_1<System_Internal.Byte>, timestamp: DateTimeOffset, accuracyInMicroseconds: Nullable_1<System_Internal.Int64>, isOrdering: boolean, nonce: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>, timestampAuthorityName: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>, extensions: X509ExtensionCollection): Rfc3161TimestampTokenInfo;
|
|
703
|
+
TryDecode(encodedBytes: ReadOnlyMemory_1<System_Internal.Byte>, timestampTokenInfo: Rfc3161TimestampTokenInfo, bytesConsumed: int): boolean;
|
|
628
704
|
};
|
|
629
705
|
|
|
630
706
|
|
|
631
707
|
export type Rfc3161TimestampTokenInfo = Rfc3161TimestampTokenInfo$instance;
|
|
632
708
|
|
|
633
709
|
export interface SignedCms$instance {
|
|
710
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_SignedCms: never;
|
|
711
|
+
|
|
634
712
|
readonly Certificates: X509Certificate2Collection;
|
|
635
713
|
ContentInfo: ContentInfo;
|
|
636
714
|
Detached: boolean;
|
|
@@ -644,7 +722,7 @@ export interface SignedCms$instance {
|
|
|
644
722
|
ComputeSignature(signer: CmsSigner): void;
|
|
645
723
|
ComputeSignature(signer: CmsSigner, silent: boolean): void;
|
|
646
724
|
Decode(encodedMessage: byte[]): void;
|
|
647
|
-
Decode(encodedMessage:
|
|
725
|
+
Decode(encodedMessage: ReadOnlySpan_1<System_Internal.Byte>): void;
|
|
648
726
|
Encode(): byte[];
|
|
649
727
|
RemoveCertificate(certificate: X509Certificate2): void;
|
|
650
728
|
RemoveSignature(index: int): void;
|
|
@@ -665,6 +743,8 @@ export const SignedCms: {
|
|
|
665
743
|
export type SignedCms = SignedCms$instance;
|
|
666
744
|
|
|
667
745
|
export interface SignerInfo$instance {
|
|
746
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_SignerInfo: never;
|
|
747
|
+
|
|
668
748
|
readonly Certificate: X509Certificate2 | undefined;
|
|
669
749
|
readonly CounterSignerInfos: SignerInfoCollection;
|
|
670
750
|
readonly DigestAlgorithm: Oid;
|
|
@@ -693,6 +773,11 @@ export const SignerInfo: {
|
|
|
693
773
|
export type SignerInfo = SignerInfo$instance;
|
|
694
774
|
|
|
695
775
|
export interface SignerInfoCollection$instance {
|
|
776
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_SignerInfoCollection: never;
|
|
777
|
+
|
|
778
|
+
readonly __tsonic_iface_System_Collections_ICollection: never;
|
|
779
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
780
|
+
|
|
696
781
|
readonly Count: int;
|
|
697
782
|
readonly IsSynchronized: boolean;
|
|
698
783
|
readonly [index: number]: SignerInfo;
|
|
@@ -710,6 +795,10 @@ export const SignerInfoCollection: {
|
|
|
710
795
|
export type SignerInfoCollection = SignerInfoCollection$instance;
|
|
711
796
|
|
|
712
797
|
export interface SignerInfoEnumerator$instance {
|
|
798
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_SignerInfoEnumerator: never;
|
|
799
|
+
|
|
800
|
+
readonly __tsonic_iface_System_Collections_IEnumerator: never;
|
|
801
|
+
|
|
713
802
|
readonly Current: SignerInfo;
|
|
714
803
|
MoveNext(): boolean;
|
|
715
804
|
Reset(): void;
|
|
@@ -723,6 +812,8 @@ export const SignerInfoEnumerator: {
|
|
|
723
812
|
export type SignerInfoEnumerator = SignerInfoEnumerator$instance;
|
|
724
813
|
|
|
725
814
|
export interface SubjectIdentifier$instance {
|
|
815
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_SubjectIdentifier: never;
|
|
816
|
+
|
|
726
817
|
readonly Type: SubjectIdentifierType;
|
|
727
818
|
readonly Value: unknown | undefined;
|
|
728
819
|
MatchesCertificate(certificate: X509Certificate2): boolean;
|
|
@@ -736,6 +827,8 @@ export const SubjectIdentifier: {
|
|
|
736
827
|
export type SubjectIdentifier = SubjectIdentifier$instance;
|
|
737
828
|
|
|
738
829
|
export interface SubjectIdentifierOrKey$instance {
|
|
830
|
+
readonly __tsonic_type_System_Security_Cryptography_Pkcs_SubjectIdentifierOrKey: never;
|
|
831
|
+
|
|
739
832
|
readonly Type: SubjectIdentifierOrKeyType;
|
|
740
833
|
readonly Value: unknown;
|
|
741
834
|
}
|