Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sha256.ts « node « env « src « microsoft-authentication « extensions - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 691f7eedaf9398cc117ff8d10b4582bdf346f97e (plain)
1
2
3
4
5
6
7
8
9
10
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

'use strict';

export async function sha256(s: string | Uint8Array): Promise<string> {
	return (require('crypto')).createHash('sha256').update(s).digest('base64');
}