swc/bundler/tests/.cache/untrusted/134015516d9f972086858ac38d5477d52d538a84.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

50 lines
1.2 KiB
TypeScript

// Loaded from https://raw.githubusercontent.com/nats-io/nkeys.js/v1.0.0-7/src/helper.ts
/*
* Copyright 2020 The NATS Authors
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @ignore
*/
interface SignPair {
publicKey: Uint8Array;
secretKey: Uint8Array;
}
/**
* @ignore
*/
export interface Ed25519Helper {
fromSeed(seed: Uint8Array): SignPair;
sign(data: Uint8Array, key: Uint8Array): Uint8Array;
verify(data: Uint8Array, sig: Uint8Array, pub: Uint8Array): boolean;
randomBytes(len: number): Uint8Array;
}
/**
* @ignore
*/
let helper: Ed25519Helper;
/**
* @ignore
*/
export function setEd25519Helper(lib: Ed25519Helper) {
helper = lib;
}
/**
* @ignore
*/
export function getEd25519Helper() {
return helper;
}