You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 1.0.0, some SubtleCrypto methods have untyped parameters, thus making them hard to use:
E.g. importKey():
Before 1.0.0, it was possible to figure out and pass KeyAlgorithm(name: 'AES-GCM') as the algorithm argument. This class is however gone in 1.0.0.
Other missing definition examples are AesGcmParams, which was useful for SubtleCrypto.encrypt()/ SubtleCrypto.decrypt().
Current implementation of AlgorithmIdentifier is a simple typedef:
typedefAlgorithmIdentifier=JSAny;
The text was updated successfully, but these errors were encountered:
We could instead choose to only not emit dictionaries that are explicitly used by experimental/nonstandard APIs, and that may cover this, but it also may mean we're including some dictionary types that are subject to change often.
In 1.0.0, some
SubtleCrypto
methods have untyped parameters, thus making them hard to use:E.g.
importKey()
:Before 1.0.0, it was possible to figure out and pass
KeyAlgorithm(name: 'AES-GCM')
as thealgorithm
argument. This class is however gone in 1.0.0.Other missing definition examples are
AesGcmParams
, which was useful forSubtleCrypto.encrypt()
/SubtleCrypto.decrypt()
.Current implementation of
AlgorithmIdentifier
is a simple typedef:The text was updated successfully, but these errors were encountered: