From 145c7fb2ea2134815c50c78d30c88905f20fc0b0 Mon Sep 17 00:00:00 2001 From: sydneymorton Date: Mon, 22 Mar 2021 14:25:16 -0500 Subject: [PATCH] Rename VCCrypto project --- VCCrypto/{VcCryptoTestApp => VCCryptoTestApp}/AppDelegate.swift | 0 .../Assets.xcassets/AppIcon.appiconset/Contents.json | 0 .../Assets.xcassets/Contents.json | 0 .../Base.lproj/LaunchScreen.storyboard | 0 VCCrypto/{VcCryptoTestApp => VCCryptoTestApp}/ContentView.swift | 0 VCCrypto/{VcCryptoTestApp => VCCryptoTestApp}/Info.plist | 0 .../Preview Content/Preview Assets.xcassets/Contents.json | 0 VCCrypto/{VcCryptoTestApp => VCCryptoTestApp}/SceneDelegate.swift | 0 VCCrypto/{VcCryptoTests => VCCryptoTests}/HmacSha512Tests.swift | 0 VCCrypto/{VcCryptoTests => VCCryptoTests}/Info.plist | 0 .../KeychainSecretStoreTests.swift | 0 VCCrypto/{VcCryptoTests => VCCryptoTests}/Mocks/SecretMock.swift | 0 .../{VcCryptoTests => VCCryptoTests}/Mocks/SecretStoreMock.swift | 0 .../{VcCryptoTests => VCCryptoTests}/Mocks/Utf8TestData.swift | 0 .../Random32BytesSecretTests.swift | 0 .../Secp256k1PublicKeyTests.swift | 0 VCCrypto/{VcCryptoTests => VCCryptoTests}/Secp256k1Tests.swift | 0 VCCrypto/{VcCryptoTests => VCCryptoTests}/Sha256Tests.swift | 0 VCCrypto/{VcCryptoTests => VCCryptoTests}/Sha512Tests.swift | 0 .../xcshareddata/xcschemes/VCCrypto.xcscheme | 0 .../xcshareddata/xcschemes/VcCryptoTestApp.xcscheme | 0 21 files changed, 0 insertions(+), 0 deletions(-) rename VCCrypto/{VcCryptoTestApp => VCCryptoTestApp}/AppDelegate.swift (100%) rename VCCrypto/{VcCryptoTestApp => VCCryptoTestApp}/Assets.xcassets/AppIcon.appiconset/Contents.json (100%) rename VCCrypto/{VcCryptoTestApp => VCCryptoTestApp}/Assets.xcassets/Contents.json (100%) rename VCCrypto/{VcCryptoTestApp => VCCryptoTestApp}/Base.lproj/LaunchScreen.storyboard (100%) rename VCCrypto/{VcCryptoTestApp => VCCryptoTestApp}/ContentView.swift (100%) rename VCCrypto/{VcCryptoTestApp => VCCryptoTestApp}/Info.plist (100%) rename VCCrypto/{VcCryptoTestApp => VCCryptoTestApp}/Preview Content/Preview Assets.xcassets/Contents.json (100%) rename VCCrypto/{VcCryptoTestApp => VCCryptoTestApp}/SceneDelegate.swift (100%) rename VCCrypto/{VcCryptoTests => VCCryptoTests}/HmacSha512Tests.swift (100%) rename VCCrypto/{VcCryptoTests => VCCryptoTests}/Info.plist (100%) rename VCCrypto/{VcCryptoTests => VCCryptoTests}/KeychainSecretStoreTests.swift (100%) rename VCCrypto/{VcCryptoTests => VCCryptoTests}/Mocks/SecretMock.swift (100%) rename VCCrypto/{VcCryptoTests => VCCryptoTests}/Mocks/SecretStoreMock.swift (100%) rename VCCrypto/{VcCryptoTests => VCCryptoTests}/Mocks/Utf8TestData.swift (100%) rename VCCrypto/{VcCryptoTests => VCCryptoTests}/Random32BytesSecretTests.swift (100%) rename VCCrypto/{VcCryptoTests => VCCryptoTests}/Secp256k1PublicKeyTests.swift (100%) rename VCCrypto/{VcCryptoTests => VCCryptoTests}/Secp256k1Tests.swift (100%) rename VCCrypto/{VcCryptoTests => VCCryptoTests}/Sha256Tests.swift (100%) rename VCCrypto/{VcCryptoTests => VCCryptoTests}/Sha512Tests.swift (100%) rename VCCrypto/{VCCrypto.xcodeproj => VcCrypto.xcodeproj}/xcshareddata/xcschemes/VCCrypto.xcscheme (100%) rename {VcCrypto => VCCrypto}/VcCrypto.xcodeproj/xcshareddata/xcschemes/VcCryptoTestApp.xcscheme (100%) diff --git a/VCCrypto/VcCryptoTestApp/AppDelegate.swift b/VCCrypto/VCCryptoTestApp/AppDelegate.swift similarity index 100% rename from VCCrypto/VcCryptoTestApp/AppDelegate.swift rename to VCCrypto/VCCryptoTestApp/AppDelegate.swift diff --git a/VCCrypto/VcCryptoTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json b/VCCrypto/VCCryptoTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json similarity index 100% rename from VCCrypto/VcCryptoTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json rename to VCCrypto/VCCryptoTestApp/Assets.xcassets/AppIcon.appiconset/Contents.json diff --git a/VCCrypto/VcCryptoTestApp/Assets.xcassets/Contents.json b/VCCrypto/VCCryptoTestApp/Assets.xcassets/Contents.json similarity index 100% rename from VCCrypto/VcCryptoTestApp/Assets.xcassets/Contents.json rename to VCCrypto/VCCryptoTestApp/Assets.xcassets/Contents.json diff --git a/VCCrypto/VcCryptoTestApp/Base.lproj/LaunchScreen.storyboard b/VCCrypto/VCCryptoTestApp/Base.lproj/LaunchScreen.storyboard similarity index 100% rename from VCCrypto/VcCryptoTestApp/Base.lproj/LaunchScreen.storyboard rename to VCCrypto/VCCryptoTestApp/Base.lproj/LaunchScreen.storyboard diff --git a/VCCrypto/VcCryptoTestApp/ContentView.swift b/VCCrypto/VCCryptoTestApp/ContentView.swift similarity index 100% rename from VCCrypto/VcCryptoTestApp/ContentView.swift rename to VCCrypto/VCCryptoTestApp/ContentView.swift diff --git a/VCCrypto/VcCryptoTestApp/Info.plist b/VCCrypto/VCCryptoTestApp/Info.plist similarity index 100% rename from VCCrypto/VcCryptoTestApp/Info.plist rename to VCCrypto/VCCryptoTestApp/Info.plist diff --git a/VCCrypto/VcCryptoTestApp/Preview Content/Preview Assets.xcassets/Contents.json b/VCCrypto/VCCryptoTestApp/Preview Content/Preview Assets.xcassets/Contents.json similarity index 100% rename from VCCrypto/VcCryptoTestApp/Preview Content/Preview Assets.xcassets/Contents.json rename to VCCrypto/VCCryptoTestApp/Preview Content/Preview Assets.xcassets/Contents.json diff --git a/VCCrypto/VcCryptoTestApp/SceneDelegate.swift b/VCCrypto/VCCryptoTestApp/SceneDelegate.swift similarity index 100% rename from VCCrypto/VcCryptoTestApp/SceneDelegate.swift rename to VCCrypto/VCCryptoTestApp/SceneDelegate.swift diff --git a/VCCrypto/VcCryptoTests/HmacSha512Tests.swift b/VCCrypto/VCCryptoTests/HmacSha512Tests.swift similarity index 100% rename from VCCrypto/VcCryptoTests/HmacSha512Tests.swift rename to VCCrypto/VCCryptoTests/HmacSha512Tests.swift diff --git a/VCCrypto/VcCryptoTests/Info.plist b/VCCrypto/VCCryptoTests/Info.plist similarity index 100% rename from VCCrypto/VcCryptoTests/Info.plist rename to VCCrypto/VCCryptoTests/Info.plist diff --git a/VCCrypto/VcCryptoTests/KeychainSecretStoreTests.swift b/VCCrypto/VCCryptoTests/KeychainSecretStoreTests.swift similarity index 100% rename from VCCrypto/VcCryptoTests/KeychainSecretStoreTests.swift rename to VCCrypto/VCCryptoTests/KeychainSecretStoreTests.swift diff --git a/VCCrypto/VcCryptoTests/Mocks/SecretMock.swift b/VCCrypto/VCCryptoTests/Mocks/SecretMock.swift similarity index 100% rename from VCCrypto/VcCryptoTests/Mocks/SecretMock.swift rename to VCCrypto/VCCryptoTests/Mocks/SecretMock.swift diff --git a/VCCrypto/VcCryptoTests/Mocks/SecretStoreMock.swift b/VCCrypto/VCCryptoTests/Mocks/SecretStoreMock.swift similarity index 100% rename from VCCrypto/VcCryptoTests/Mocks/SecretStoreMock.swift rename to VCCrypto/VCCryptoTests/Mocks/SecretStoreMock.swift diff --git a/VCCrypto/VcCryptoTests/Mocks/Utf8TestData.swift b/VCCrypto/VCCryptoTests/Mocks/Utf8TestData.swift similarity index 100% rename from VCCrypto/VcCryptoTests/Mocks/Utf8TestData.swift rename to VCCrypto/VCCryptoTests/Mocks/Utf8TestData.swift diff --git a/VCCrypto/VcCryptoTests/Random32BytesSecretTests.swift b/VCCrypto/VCCryptoTests/Random32BytesSecretTests.swift similarity index 100% rename from VCCrypto/VcCryptoTests/Random32BytesSecretTests.swift rename to VCCrypto/VCCryptoTests/Random32BytesSecretTests.swift diff --git a/VCCrypto/VcCryptoTests/Secp256k1PublicKeyTests.swift b/VCCrypto/VCCryptoTests/Secp256k1PublicKeyTests.swift similarity index 100% rename from VCCrypto/VcCryptoTests/Secp256k1PublicKeyTests.swift rename to VCCrypto/VCCryptoTests/Secp256k1PublicKeyTests.swift diff --git a/VCCrypto/VcCryptoTests/Secp256k1Tests.swift b/VCCrypto/VCCryptoTests/Secp256k1Tests.swift similarity index 100% rename from VCCrypto/VcCryptoTests/Secp256k1Tests.swift rename to VCCrypto/VCCryptoTests/Secp256k1Tests.swift diff --git a/VCCrypto/VcCryptoTests/Sha256Tests.swift b/VCCrypto/VCCryptoTests/Sha256Tests.swift similarity index 100% rename from VCCrypto/VcCryptoTests/Sha256Tests.swift rename to VCCrypto/VCCryptoTests/Sha256Tests.swift diff --git a/VCCrypto/VcCryptoTests/Sha512Tests.swift b/VCCrypto/VCCryptoTests/Sha512Tests.swift similarity index 100% rename from VCCrypto/VcCryptoTests/Sha512Tests.swift rename to VCCrypto/VCCryptoTests/Sha512Tests.swift diff --git a/VCCrypto/VCCrypto.xcodeproj/xcshareddata/xcschemes/VCCrypto.xcscheme b/VCCrypto/VcCrypto.xcodeproj/xcshareddata/xcschemes/VCCrypto.xcscheme similarity index 100% rename from VCCrypto/VCCrypto.xcodeproj/xcshareddata/xcschemes/VCCrypto.xcscheme rename to VCCrypto/VcCrypto.xcodeproj/xcshareddata/xcschemes/VCCrypto.xcscheme diff --git a/VcCrypto/VcCrypto.xcodeproj/xcshareddata/xcschemes/VcCryptoTestApp.xcscheme b/VCCrypto/VcCrypto.xcodeproj/xcshareddata/xcschemes/VcCryptoTestApp.xcscheme similarity index 100% rename from VcCrypto/VcCrypto.xcodeproj/xcshareddata/xcschemes/VcCryptoTestApp.xcscheme rename to VCCrypto/VcCrypto.xcodeproj/xcshareddata/xcschemes/VcCryptoTestApp.xcscheme