Преглед на файлове

Rename directory to please SwiftPM

Marcin Krzyzanowski преди 3 години
родител
ревизия
5e9b0a004d
променени са 24 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 3 3
      CryptoSwift.xcodeproj/project.pbxproj
  2. 0 0
      Sources/CryptoSwift/CS_BigInt/Addition.swift
  3. 0 0
      Sources/CryptoSwift/CS_BigInt/BigInt.swift
  4. 0 0
      Sources/CryptoSwift/CS_BigInt/BigUInt.swift
  5. 0 0
      Sources/CryptoSwift/CS_BigInt/Bitwise Ops.swift
  6. 0 0
      Sources/CryptoSwift/CS_BigInt/CS.swift
  7. 0 0
      Sources/CryptoSwift/CS_BigInt/Codable.swift
  8. 0 0
      Sources/CryptoSwift/CS_BigInt/Comparable.swift
  9. 0 0
      Sources/CryptoSwift/CS_BigInt/Data Conversion.swift
  10. 0 0
      Sources/CryptoSwift/CS_BigInt/Division.swift
  11. 0 0
      Sources/CryptoSwift/CS_BigInt/Exponentiation.swift
  12. 0 0
      Sources/CryptoSwift/CS_BigInt/Floating Point Conversion.swift
  13. 0 0
      Sources/CryptoSwift/CS_BigInt/GCD.swift
  14. 0 0
      Sources/CryptoSwift/CS_BigInt/Hashable.swift
  15. 0 0
      Sources/CryptoSwift/CS_BigInt/Integer Conversion.swift
  16. 0 0
      Sources/CryptoSwift/CS_BigInt/Multiplication.swift
  17. 0 0
      Sources/CryptoSwift/CS_BigInt/Prime Test.swift
  18. 0 0
      Sources/CryptoSwift/CS_BigInt/Random.swift
  19. 0 0
      Sources/CryptoSwift/CS_BigInt/Shifts.swift
  20. 0 0
      Sources/CryptoSwift/CS_BigInt/Square Root.swift
  21. 0 0
      Sources/CryptoSwift/CS_BigInt/Strideable.swift
  22. 0 0
      Sources/CryptoSwift/CS_BigInt/String Conversion.swift
  23. 0 0
      Sources/CryptoSwift/CS_BigInt/Subtraction.swift
  24. 0 0
      Sources/CryptoSwift/CS_BigInt/Words and Bits.swift

+ 3 - 3
CryptoSwift.xcodeproj/project.pbxproj

@@ -429,7 +429,7 @@
 			name = Frameworks;
 			sourceTree = "<group>";
 		};
-		6AC893DF26DB94F700F7E787 /* CS.BigInt */ = {
+		6AC893DF26DB94F700F7E787 /* CS_BigInt */ = {
 			isa = PBXGroup;
 			children = (
 				6AC893E026DB950C00F7E787 /* Addition.swift */,
@@ -456,7 +456,7 @@
 				6AC893E926DB950D00F7E787 /* Words and Bits.swift */,
 				7571938D2816BFE3001C3AC0 /* CS.swift */,
 			);
-			path = CS.BigInt;
+			path = CS_BigInt;
 			sourceTree = "<group>";
 		};
 		75211F93207249D8004E41F8 /* CryptoSwift-TestHostApp */ = {
@@ -598,7 +598,7 @@
 				75EC52391EE8B6CA0048EB3B /* Array+Extension.swift */,
 				75EC523A1EE8B6CA0048EB3B /* Authenticator.swift */,
 				75EC523B1EE8B6CA0048EB3B /* BatchedCollection.swift */,
-				6AC893DF26DB94F700F7E787 /* CS.BigInt */,
+				6AC893DF26DB94F700F7E787 /* CS_BigInt */,
 				75EC523C1EE8B6CA0048EB3B /* Bit.swift */,
 				75EC523D1EE8B6CA0048EB3B /* BlockCipher.swift */,
 				75EC523E1EE8B6CA0048EB3B /* BlockMode */,

+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Addition.swift → Sources/CryptoSwift/CS_BigInt/Addition.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/BigInt.swift → Sources/CryptoSwift/CS_BigInt/BigInt.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/BigUInt.swift → Sources/CryptoSwift/CS_BigInt/BigUInt.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Bitwise Ops.swift → Sources/CryptoSwift/CS_BigInt/Bitwise Ops.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/CS.swift → Sources/CryptoSwift/CS_BigInt/CS.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Codable.swift → Sources/CryptoSwift/CS_BigInt/Codable.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Comparable.swift → Sources/CryptoSwift/CS_BigInt/Comparable.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Data Conversion.swift → Sources/CryptoSwift/CS_BigInt/Data Conversion.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Division.swift → Sources/CryptoSwift/CS_BigInt/Division.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Exponentiation.swift → Sources/CryptoSwift/CS_BigInt/Exponentiation.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Floating Point Conversion.swift → Sources/CryptoSwift/CS_BigInt/Floating Point Conversion.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/GCD.swift → Sources/CryptoSwift/CS_BigInt/GCD.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Hashable.swift → Sources/CryptoSwift/CS_BigInt/Hashable.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Integer Conversion.swift → Sources/CryptoSwift/CS_BigInt/Integer Conversion.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Multiplication.swift → Sources/CryptoSwift/CS_BigInt/Multiplication.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Prime Test.swift → Sources/CryptoSwift/CS_BigInt/Prime Test.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Random.swift → Sources/CryptoSwift/CS_BigInt/Random.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Shifts.swift → Sources/CryptoSwift/CS_BigInt/Shifts.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Square Root.swift → Sources/CryptoSwift/CS_BigInt/Square Root.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Strideable.swift → Sources/CryptoSwift/CS_BigInt/Strideable.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/String Conversion.swift → Sources/CryptoSwift/CS_BigInt/String Conversion.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Subtraction.swift → Sources/CryptoSwift/CS_BigInt/Subtraction.swift


+ 0 - 0
Sources/CryptoSwift/CS.BigInt/Words and Bits.swift → Sources/CryptoSwift/CS_BigInt/Words and Bits.swift