import * as pulumi from "@pulumi/pulumi"; /** * Returns a base64-encoded representation of raw SHA-512 sum of the given string. * This is not equivalent of base64encode(sha512(string)) since sha512() returns hexadecimal representation. */ export declare function base64sha512(args: Base64sha512Args, opts?: pulumi.InvokeOptions): Promise; export interface Base64sha512Args { input: string; } export interface Base64sha512Result { readonly result: string; } /** * Returns a base64-encoded representation of raw SHA-512 sum of the given string. * This is not equivalent of base64encode(sha512(string)) since sha512() returns hexadecimal representation. */ export declare function base64sha512Output(args: Base64sha512OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface Base64sha512OutputArgs { input: pulumi.Input; }