import * as pulumi from "@pulumi/pulumi"; /** * Decrypts an RSA-encrypted ciphertext. * The cipher text must be base64-encoded and the key must be in PEM format. */ export declare function rsadecrypt(args: RsadecryptArgs, opts?: pulumi.InvokeOptions): Promise; export interface RsadecryptArgs { cipherText: string; key: string; } export interface RsadecryptResult { readonly result: string; } /** * Decrypts an RSA-encrypted ciphertext. * The cipher text must be base64-encoded and the key must be in PEM format. */ export declare function rsadecryptOutput(args: RsadecryptOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface RsadecryptOutputArgs { cipherText: pulumi.Input; key: pulumi.Input; }