Browse Source

Rename nodeCryptoFunctionService (#4070)

pull/4074/head
Daniel James Smith 3 years ago committed by GitHub
parent
commit
6049e588e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/whitelist-capital-letters.txt
  2. 2
      apps/cli/src/bw.ts
  3. 2
      apps/desktop/native-messaging-test-runner/package.json
  4. 2
      apps/desktop/native-messaging-test-runner/src/nativeMessageService.ts
  5. 2
      libs/node/spec/services/node-crypto-function.service.spec.ts
  6. 0
      libs/node/src/services/node-crypto-function.service.ts

2
.github/whitelist-capital-letters.txt

@ -163,7 +163,6 @@ @@ -163,7 +163,6 @@
./libs/common/src/services/webCryptoFunction.service.ts
./libs/common/src/interfaces/IEncrypted.ts
./libs/node/spec/cli/consoleLog.service.spec.ts
./libs/node/spec/services/nodeCryptoFunction.service.spec.ts
./libs/node/src/cli/models/response/baseResponse.ts
./libs/node/src/cli/models/response/stringResponse.ts
./libs/node/src/cli/models/response/fileResponse.ts
@ -173,7 +172,6 @@ @@ -173,7 +172,6 @@
./libs/node/src/cli/services/consoleLog.service.ts
./libs/node/src/cli/services/cliPlatformUtils.service.ts
./libs/node/src/services/nodeApi.service.ts
./libs/node/src/services/nodeCryptoFunction.service.ts
./libs/node/src/services/lowdbStorage.service.ts
./libs/electron/spec/services/electronLog.service.spec.ts
./libs/electron/src/baseMenu.ts

2
apps/cli/src/bw.ts

@ -51,8 +51,8 @@ import { VaultTimeoutService } from "@bitwarden/common/services/vaultTimeout/vau @@ -51,8 +51,8 @@ import { VaultTimeoutService } from "@bitwarden/common/services/vaultTimeout/vau
import { VaultTimeoutSettingsService } from "@bitwarden/common/services/vaultTimeout/vaultTimeoutSettings.service";
import { CliPlatformUtilsService } from "@bitwarden/node/cli/services/cliPlatformUtils.service";
import { ConsoleLogService } from "@bitwarden/node/cli/services/consoleLog.service";
import { NodeCryptoFunctionService } from "@bitwarden/node/services/node-crypto-function.service";
import { NodeApiService } from "@bitwarden/node/services/nodeApi.service";
import { NodeCryptoFunctionService } from "@bitwarden/node/services/nodeCryptoFunction.service";
import { Program } from "./program";
import { SendProgram } from "./send.program";

2
apps/desktop/native-messaging-test-runner/package.json

@ -30,6 +30,6 @@ @@ -30,6 +30,6 @@
},
"_moduleAliases": {
"@bitwarden/common": "dist/libs/common/src",
"@bitwarden/node/services/nodeCryptoFunction.service": "dist/libs/node/src/services/nodeCryptoFunction.service"
"@bitwarden/node/services/node-crypto-function.service": "dist/libs/node/src/services/node-crypto-function.service"
}
}

2
apps/desktop/native-messaging-test-runner/src/nativeMessageService.ts

@ -7,7 +7,7 @@ import { EncString } from "@bitwarden/common/models/domain/enc-string"; @@ -7,7 +7,7 @@ import { EncString } from "@bitwarden/common/models/domain/enc-string";
import { SymmetricCryptoKey } from "@bitwarden/common/models/domain/symmetric-crypto-key";
import { ConsoleLogService } from "@bitwarden/common/services/consoleLog.service";
import { EncryptServiceImplementation } from "@bitwarden/common/services/cryptography/encrypt.service.implementation";
import { NodeCryptoFunctionService } from "@bitwarden/node/services/nodeCryptoFunction.service";
import { NodeCryptoFunctionService } from "@bitwarden/node/services/node-crypto-function.service";
import { DecryptedCommandData } from "../../src/models/nativeMessaging/decryptedCommandData";
import { EncryptedMessage } from "../../src/models/nativeMessaging/encryptedMessage";

2
libs/node/spec/services/nodeCryptoFunction.service.spec.ts → libs/node/spec/services/node-crypto-function.service.spec.ts

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
import { Utils } from "@bitwarden/common/misc/utils";
import { SymmetricCryptoKey } from "@bitwarden/common/models/domain/symmetric-crypto-key";
import { NodeCryptoFunctionService } from "@bitwarden/node/services/nodeCryptoFunction.service";
import { NodeCryptoFunctionService } from "@bitwarden/node/services/node-crypto-function.service";
const RsaPublicKey =
"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAl0Vawl/toXzkEvB82FEtqHP" +

0
libs/node/src/services/nodeCryptoFunction.service.ts → libs/node/src/services/node-crypto-function.service.ts

Loading…
Cancel
Save