Skip to content

Commit

Permalink
include more files
Browse files Browse the repository at this point in the history
  • Loading branch information
TarikGul committed Jan 2, 2025
1 parent ebffbf7 commit d922f81
Show file tree
Hide file tree
Showing 23 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion packages/wasm-crypto-asmjs/src/cjs/cjs/data.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto-wasm authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto-wasm authors & contributors
// SPDX-License-Identifier: Apache-2.0

const data = require('../data.js');
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto-asmjs/src/cjs/data.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto-asmjs authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto-asmjs authors & contributors
// SPDX-License-Identifier: Apache-2.0

const asmJsInit = null;
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto-asmjs/src/deno/data.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto-asmjs authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto-asmjs authors & contributors
// SPDX-License-Identifier: Apache-2.0

export const asmJsInit = null;
2 changes: 1 addition & 1 deletion packages/wasm-crypto-wasm/src/cjs/bytes.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto-wasm authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto-wasm authors & contributors
// SPDX-License-Identifier: Apache-2.0

exports.lenIn = 0;
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto-wasm/src/cjs/cjs/bytes.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto-wasm authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto-wasm authors & contributors
// SPDX-License-Identifier: Apache-2.0

const bytes = require('../bytes.js');
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto-wasm/src/deno/bytes.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto-wasm authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto-wasm authors & contributors
// SPDX-License-Identifier: Apache-2.0

export const bytes = '';
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

// Use `wee_alloc` as the global allocator.
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/src/rs/bip39.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

use bip39::{Mnemonic, MnemonicType, Language, Seed};
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/src/rs/ed25519.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

use std::convert::TryFrom;
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/src/rs/hashing.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

use blake2_rfc::blake2b::blake2b;
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/src/rs/secp256k1.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

use secp256k1::{ecdsa::{RecoverableSignature, RecoveryId}, Message, PublicKey, SecretKey, SECP256K1};
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/src/rs/sr25519.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

// Copyright 2019 Paritytech via https://github.com/paritytech/schnorrkel-js/
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/src/rs/vrf.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

// Copyright 2019 Paritytech via https://github.com/paritytech/schnorrkel-js/
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/test/all/bip39.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

/* global it */
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/test/all/ed25519.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

/* global it */
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/test/all/hashing.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

/* global it */
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/test/all/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

/* global describe */
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/test/all/secp256k1.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

/* global it */
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/test/all/sr25519.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

/* global it */
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/test/all/vrf.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

/* global it */
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/test/asm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

import '@polkadot/wasm-crypto/initOnlyAsm';
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/test/loader-build.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

import path from 'node:path';
Expand Down
2 changes: 1 addition & 1 deletion packages/wasm-crypto/test/wasm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2024 @polkadot/wasm-crypto authors & contributors
// Copyright 2019-2025 @polkadot/wasm-crypto authors & contributors
// SPDX-License-Identifier: Apache-2.0

import * as wasm from '@polkadot/wasm-crypto';
Expand Down

0 comments on commit d922f81

Please sign in to comment.