swc/bundler/tests/.cache/untrusted/7693634a47fad3366efb7d786765be69a8c7cabd.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

89 lines
2.4 KiB
TypeScript

// Loaded from https://raw.githubusercontent.com/nats-io/nkeys.js/v1.0.0-7/src/kp.ts
/*
* Copyright 2018-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.
*/
import { Codec } from "./codec.ts";
import { KeyPair, NKeysError, NKeysErrorCode, Prefix } from "./nkeys.ts";
import { getEd25519Helper } from "./helper.ts";
/**
* @ignore
*/
export class KP implements KeyPair {
seed?: Uint8Array;
constructor(seed: Uint8Array) {
this.seed = seed;
}
getRawSeed(): Uint8Array {
if (!this.seed) {
throw new NKeysError(NKeysErrorCode.ClearedPair);
}
let sd = Codec.decodeSeed(this.seed);
return sd.buf;
}
getSeed(): Uint8Array {
if (!this.seed) {
throw new NKeysError(NKeysErrorCode.ClearedPair);
}
return this.seed;
}
getPublicKey(): string {
if (!this.seed) {
throw new NKeysError(NKeysErrorCode.ClearedPair);
}
const sd = Codec.decodeSeed(this.seed);
const kp = getEd25519Helper().fromSeed(this.getRawSeed());
const buf = Codec.encode(sd.prefix, kp.publicKey);
return new TextDecoder().decode(buf);
}
getPrivateKey(): Uint8Array {
if (!this.seed) {
throw new NKeysError(NKeysErrorCode.ClearedPair);
}
const kp = getEd25519Helper().fromSeed(this.getRawSeed());
return Codec.encode(Prefix.Private, kp.secretKey);
}
sign(input: Uint8Array): Uint8Array {
if (!this.seed) {
throw new NKeysError(NKeysErrorCode.ClearedPair);
}
const kp = getEd25519Helper().fromSeed(this.getRawSeed());
return getEd25519Helper().sign(input, kp.secretKey);
}
verify(input: Uint8Array, sig: Uint8Array): boolean {
if (!this.seed) {
throw new NKeysError(NKeysErrorCode.ClearedPair);
}
const kp = getEd25519Helper().fromSeed(this.getRawSeed());
return getEd25519Helper().verify(input, sig, kp.publicKey);
}
clear(): void {
if (!this.seed) {
return;
}
this.seed.fill(0);
this.seed = undefined;
}
}