import * as pulumi from "@pulumi/pulumi"; /** * Returns the Blowfish encrypted hash of the string at the given cost. * A default cost of 10 will be used if not provided. */ export declare function bcrypt(args: BcryptArgs, opts?: pulumi.InvokeOptions): Promise; export interface BcryptArgs { cost?: number; input: string; } export interface BcryptResult { readonly result: string; } /** * Returns the Blowfish encrypted hash of the string at the given cost. * A default cost of 10 will be used if not provided. */ export declare function bcryptOutput(args: BcryptOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface BcryptOutputArgs { cost?: pulumi.Input; input: pulumi.Input; }