-
Notifications
You must be signed in to change notification settings - Fork 0
@ralphschuler.webgl shader factory.<internal>.SubtleCrypto
@ralphschuler/webgl-shader-factory.<internal>.SubtleCrypto
This Web Crypto API interface provides a number of low-level cryptographic functions. It is accessed via the Crypto.subtle properties available in a window context (via Window.crypto). Available only in secure contexts.
- decrypt
- deriveBits
- deriveKey
- digest
- encrypt
- exportKey
- generateKey
- importKey
- sign
- unwrapKey
- verify
- wrapKey
▸ decrypt(algorithm
, key
, data
): Promise
<ArrayBuffer
>
Name | Type |
---|---|
algorithm |
AesCbcParams | AesCtrParams | AesGcmParams | AlgorithmIdentifier | RsaOaepParams
|
key |
CryptoKey |
data |
BufferSource |
Promise
<ArrayBuffer
>
node_modules/typescript/lib/lib.dom.d.ts:21836
▸ deriveBits(algorithm
, baseKey
, length
): Promise
<ArrayBuffer
>
Name | Type |
---|---|
algorithm |
EcdhKeyDeriveParams | AlgorithmIdentifier | HkdfParams | Pbkdf2Params
|
baseKey |
CryptoKey |
length |
number |
Promise
<ArrayBuffer
>
node_modules/typescript/lib/lib.dom.d.ts:21838
▸ deriveKey(algorithm
, baseKey
, derivedKeyType
, extractable
, keyUsages
): Promise
<CryptoKey
>
Name | Type |
---|---|
algorithm |
EcdhKeyDeriveParams | AlgorithmIdentifier | HkdfParams | Pbkdf2Params
|
baseKey |
CryptoKey |
derivedKeyType |
AesDerivedKeyParams | AlgorithmIdentifier | HkdfParams | HmacImportParams | Pbkdf2Params
|
extractable |
boolean |
keyUsages |
KeyUsage [] |
Promise
<CryptoKey
>
node_modules/typescript/lib/lib.dom.d.ts:21840
▸ digest(algorithm
, data
): Promise
<ArrayBuffer
>
Name | Type |
---|---|
algorithm |
AlgorithmIdentifier |
data |
BufferSource |
Promise
<ArrayBuffer
>
node_modules/typescript/lib/lib.dom.d.ts:21842
▸ encrypt(algorithm
, key
, data
): Promise
<ArrayBuffer
>
Name | Type |
---|---|
algorithm |
AesCbcParams | AesCtrParams | AesGcmParams | AlgorithmIdentifier | RsaOaepParams
|
key |
CryptoKey |
data |
BufferSource |
Promise
<ArrayBuffer
>
node_modules/typescript/lib/lib.dom.d.ts:21844
▸ exportKey(format
, key
): Promise
<JsonWebKey
>
Name | Type |
---|---|
format |
"jwk" |
key |
CryptoKey |
Promise
<JsonWebKey
>
node_modules/typescript/lib/lib.dom.d.ts:21846
▸ exportKey(format
, key
): Promise
<ArrayBuffer
>
Name | Type |
---|---|
format |
"raw" | "pkcs8" | "spki"
|
key |
CryptoKey |
Promise
<ArrayBuffer
>
node_modules/typescript/lib/lib.dom.d.ts:21847
▸ exportKey(format
, key
): Promise
<ArrayBuffer
| JsonWebKey
>
Name | Type |
---|---|
format |
KeyFormat |
key |
CryptoKey |
Promise
<ArrayBuffer
| JsonWebKey
>
node_modules/typescript/lib/lib.dom.d.ts:21848
▸ generateKey(algorithm
, extractable
, keyUsages
): Promise
<CryptoKeyPair
>
Name | Type |
---|---|
algorithm |
"Ed25519" |
extractable |
boolean |
keyUsages |
readonly ("sign" | "verify" )[] |
Promise
<CryptoKeyPair
>
node_modules/typescript/lib/lib.dom.d.ts:21850
▸ generateKey(algorithm
, extractable
, keyUsages
): Promise
<CryptoKeyPair
>
Name | Type |
---|---|
algorithm |
EcKeyGenParams | RsaHashedKeyGenParams
|
extractable |
boolean |
keyUsages |
readonly KeyUsage [] |
Promise
<CryptoKeyPair
>
node_modules/typescript/lib/lib.dom.d.ts:21851
▸ generateKey(algorithm
, extractable
, keyUsages
): Promise
<CryptoKey
>
Name | Type |
---|---|
algorithm |
AesKeyGenParams | HmacKeyGenParams | Pbkdf2Params
|
extractable |
boolean |
keyUsages |
readonly KeyUsage [] |
Promise
<CryptoKey
>
node_modules/typescript/lib/lib.dom.d.ts:21852
▸ generateKey(algorithm
, extractable
, keyUsages
): Promise
<CryptoKeyPair
| CryptoKey
>
Name | Type |
---|---|
algorithm |
AlgorithmIdentifier |
extractable |
boolean |
keyUsages |
KeyUsage [] |
Promise
<CryptoKeyPair
| CryptoKey
>
node_modules/typescript/lib/lib.dom.d.ts:21853
▸ importKey(format
, keyData
, algorithm
, extractable
, keyUsages
): Promise
<CryptoKey
>
Name | Type |
---|---|
format |
"jwk" |
keyData |
JsonWebKey |
algorithm |
AesKeyAlgorithm | EcKeyImportParams | AlgorithmIdentifier | HmacImportParams | RsaHashedImportParams
|
extractable |
boolean |
keyUsages |
readonly KeyUsage [] |
Promise
<CryptoKey
>
node_modules/typescript/lib/lib.dom.d.ts:21855
▸ importKey(format
, keyData
, algorithm
, extractable
, keyUsages
): Promise
<CryptoKey
>
Name | Type |
---|---|
format |
"raw" | "pkcs8" | "spki"
|
keyData |
BufferSource |
algorithm |
AesKeyAlgorithm | EcKeyImportParams | AlgorithmIdentifier | HmacImportParams | RsaHashedImportParams
|
extractable |
boolean |
keyUsages |
KeyUsage [] |
Promise
<CryptoKey
>
node_modules/typescript/lib/lib.dom.d.ts:21856
▸ sign(algorithm
, key
, data
): Promise
<ArrayBuffer
>
Name | Type |
---|---|
algorithm |
EcdsaParams | AlgorithmIdentifier | RsaPssParams
|
key |
CryptoKey |
data |
BufferSource |
Promise
<ArrayBuffer
>
node_modules/typescript/lib/lib.dom.d.ts:21858
▸ unwrapKey(format
, wrappedKey
, unwrappingKey
, unwrapAlgorithm
, unwrappedKeyAlgorithm
, extractable
, keyUsages
): Promise
<CryptoKey
>
Name | Type |
---|---|
format |
KeyFormat |
wrappedKey |
BufferSource |
unwrappingKey |
CryptoKey |
unwrapAlgorithm |
AesCbcParams | AesCtrParams | AesGcmParams | AlgorithmIdentifier | RsaOaepParams
|
unwrappedKeyAlgorithm |
AesKeyAlgorithm | EcKeyImportParams | AlgorithmIdentifier | HmacImportParams | RsaHashedImportParams
|
extractable |
boolean |
keyUsages |
KeyUsage [] |
Promise
<CryptoKey
>
node_modules/typescript/lib/lib.dom.d.ts:21860
▸ verify(algorithm
, key
, signature
, data
): Promise
<boolean
>
Name | Type |
---|---|
algorithm |
EcdsaParams | AlgorithmIdentifier | RsaPssParams
|
key |
CryptoKey |
signature |
BufferSource |
data |
BufferSource |
Promise
<boolean
>
node_modules/typescript/lib/lib.dom.d.ts:21862
▸ wrapKey(format
, key
, wrappingKey
, wrapAlgorithm
): Promise
<ArrayBuffer
>
Name | Type |
---|---|
format |
KeyFormat |
key |
CryptoKey |
wrappingKey |
CryptoKey |
wrapAlgorithm |
AesCbcParams | AesCtrParams | AesGcmParams | AlgorithmIdentifier | RsaOaepParams
|
Promise
<ArrayBuffer
>
node_modules/typescript/lib/lib.dom.d.ts:21864
- @ralphschuler/ai-function-caller
- index
- types/AIFunction
- types/Message
- @ralphschuler/assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- assert
- error
- index
- util
- @ralphschuler/better-map
- @ralphschuler/better-set
- @ralphschuler/binary-serializer
- @ralphschuler/bit-mask
- @ralphschuler/complex-compare
- @ralphschuler/i811n
- @ralphschuler/logger
- Color
- ColorMap
- Logger
- animations/BallonAnimation
- animations/BaseAnimation
- animations/BombAnimation
- animations/BouncingBallAnimation
- animations/ClockAnimation
- animations/DotsAnimation
- animations/HorizontalBarAnimation
- animations/PongAnimation
- animations/ProgressAnimation
- animations/ProgressBarAnimation
- animations/SpinnerAnimation
- animations/VerticalBarAnimation
- enums/LogLevel
- index
- interfaces/IColor
- interfaces/IMessage
- types/ColorName
- types/Colors
- @ralphschuler/lsystem
- @ralphschuler/mixin-class-factory
- @ralphschuler/neuronal-network
- @ralphschuler/parser-combinator
- index
- inputTypes
- parser
- unicode
- @ralphschuler/prom-metrics-decorator
- @ralphschuler/prom-metrics-parser
- @ralphschuler/random
- PseudoRandomItemSelector
- PseudoRandomNumberGenerator
- Seed
- index
- strategies
- strategy
- strategy
- strategy
- strategy
- strategy
- strategy
- types
- type
- type
- type
- @ralphschuler/safe-array
- @ralphschuler/slot-mashine
- @ralphschuler/state-store
- StateStore
- index
- type
- type
- type
- type
- type
- type
- type
- type
- util
- @ralphschuler/stats-tracker
- @ralphschuler/ts-error
- error
- index
- type
- util
- util
- util
- util
- @ralphschuler/webgl-sand-engine
- index
- pixel-renderer
- @ralphschuler/webgl-shader-factory
- "node:stream/consumers"
- "node:stream/promises"
- ChatCompletionSnapshot
- Choice
- Message
- ToolCall
- EventEmitter
- FormData
- OpenAI
- OpenAI
- Audio
- Speech
- Transcriptions
- Translations
- Beta
- Assistants
- Assistant
- AssistantCreateParams
- AssistantUpdateParams
- Files
- Chat
- Threads
- Messages
- Files
- MessageContentImageFile
- MessageContentText
- Text
- FileCitation
- FilePath
- Runs
- RequiredActionFunctionToolCall
- Run
- RequiredAction
- RunCreateParams
- RunSubmitToolOutputsParams
- Steps
- CodeToolCall
- CodeInterpreter
- Image
- FunctionToolCall
- MessageCreationStepDetails
- RunStep
- ThreadCreateAndRunParams
- Thread
- ThreadCreateParams
- Chat
- Completions
- ChatCompletion
- ChatCompletionAssistantMessageParam
- ChatCompletionChunk
- Choice
- Delta
- ToolCall
- ChatCompletionContentPartImage
- ChatCompletionCreateParams
- ChatCompletionMessage
- ChatCompletionMessageToolCall
- ChatCompletionNamedToolChoice
- Completions
- CompletionChoice
- CompletionCreateParams
- Edits
- Edit
- Embeddings
- CreateEmbeddingResponse
- Files
- FineTunes
- FineTune
- FineTuneCreateParams
- FineTuneListEventsParams
- FineTuning
- Jobs
- FineTuningJob
- JobCreateParams
- Images
- Models
- Moderations
- Moderation
- internal
- finished
- pipeline
- "node:stream/consumers"
- "node:stream/promises"
- EventEmitter
- internal
- finished
- pipeline
- Counter
- Gauge
- Histogram
- Summary