@cmts-dev/carmentis-sdk-core 1.0.0 → 1.1.0
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.
|
@@ -7342,6 +7342,11 @@ export declare type JsonData = string | number | boolean | null | JsonData[] | {
|
|
|
7342
7342
|
|
|
7343
7343
|
export declare const JsonSchema: val.GenericSchema<JsonData>;
|
|
7344
7344
|
|
|
7345
|
+
export declare class JwkSignatureEncoder {
|
|
7346
|
+
static exportPublicSignatureKey(publicKey: PublicSignatureKey): Promise<CryptoKey>;
|
|
7347
|
+
static exportPrivateSignatureKey(privateKey: PrivateSignatureKey): Promise<CryptoKey>;
|
|
7348
|
+
}
|
|
7349
|
+
|
|
7345
7350
|
export declare abstract class KeyDerivationFunction {
|
|
7346
7351
|
abstract getKeyDerivationFunctionSchemeId(): KeyDerivationFunctionSchemeId;
|
|
7347
7352
|
abstract deriveKey(inputKeyingMaterial: Uint8Array, salt: Uint8Array, info: Uint8Array, keyLength: number): Uint8Array;
|