import type * as paymentcryptographydata from "@distilled.cloud/aws/payment-cryptography-data"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Key } from "./Key.ts"; export interface GenerateAs2805KekValidationRequest extends Omit { } /** * Runtime binding for `payment-cryptography:GenerateAs2805KekValidation` — * generates AS2805 Key Encryption Key (KEK) validation data (random key * send/receive components) under a KEK {@link Key}, used during AS2805 node * key establishment in Australian payment networks. Provide * `GenerateAs2805KekValidationHttp` on the Function to satisfy this service. * ### AS2805 Key Establishment * **Example:** Generate KEK validation data * ```typescript * // init * const generateKekValidation = * yield* PaymentCryptography.GenerateAs2805KekValidation(kek); * * // runtime * const validation = yield* generateKekValidation({ * KekValidationType: "KEKS", * RandomKeySendVariantMask: mask, * }); * ``` * * @binding */ export interface GenerateAs2805KekValidation extends Binding.Service(key: K) => Effect.Effect<(request: GenerateAs2805KekValidationRequest) => Effect.Effect>> { } export declare const GenerateAs2805KekValidation: GenerateAs2805KekValidation; //# sourceMappingURL=GenerateAs2805KekValidation.d.ts.map