diff --git a/packages/native_crypto/example/ios/Podfile.lock b/packages/native_crypto/example/ios/Podfile.lock index e1bca6a..3257d42 100644 --- a/packages/native_crypto/example/ios/Podfile.lock +++ b/packages/native_crypto/example/ios/Podfile.lock @@ -19,4 +19,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: cc1f88378b4bfcf93a6ce00d2c587857c6008d3b -COCOAPODS: 1.10.1 +COCOAPODS: 1.11.3 diff --git a/packages/native_crypto/example/ios/Runner/Info.plist b/packages/native_crypto/example/ios/Runner/Info.plist index 58d9657..8293c48 100644 --- a/packages/native_crypto/example/ios/Runner/Info.plist +++ b/packages/native_crypto/example/ios/Runner/Info.plist @@ -43,5 +43,7 @@ UIViewControllerBasedStatusBarAppearance + CADisableMinimumFrameDurationOnPhone + diff --git a/packages/native_crypto/example/lib/pages/benchmark_page.dart b/packages/native_crypto/example/lib/pages/benchmark_page.dart index e444eac..bee79bc 100644 --- a/packages/native_crypto/example/lib/pages/benchmark_page.dart +++ b/packages/native_crypto/example/lib/pages/benchmark_page.dart @@ -3,7 +3,7 @@ // ----- // File: benchmark_page.dart // Created Date: 28/12/2021 15:12:39 -// Last Modified: 24/05/2022 23:43:59 +// Last Modified: 25/05/2022 15:26:42 // ----- // Copyright (c) 2021 @@ -107,7 +107,7 @@ class BenchmarkPage extends ConsumerWidget { after.millisecondsSinceEpoch - before.millisecondsSinceEpoch; benchmarkStatus.append('[$size MB] Encryption took $benchmark ms\n'); - csv += "$benchmark"; + csv += "$benchmark;"; cryptoTime += benchmark; // Decryption @@ -188,10 +188,6 @@ class BenchmarkPage extends ConsumerWidget { () => _benchmark(ref, cipher, usePc: true), "PointyCastle", ), - Button( - _clear, - "Clear", - ), ], ), Row( @@ -201,6 +197,10 @@ class BenchmarkPage extends ConsumerWidget { () => _benchmarkEncryptionOnly(ref, cipher), "NC Persistence", ), + Button( + _clear, + "Clear", + ), ], ), ], diff --git a/packages/native_crypto/lib/src/ciphers/aes/aes.dart b/packages/native_crypto/lib/src/ciphers/aes/aes.dart index 1f175ab..f899c5c 100644 --- a/packages/native_crypto/lib/src/ciphers/aes/aes.dart +++ b/packages/native_crypto/lib/src/ciphers/aes/aes.dart @@ -3,7 +3,7 @@ // ----- // File: aes.dart // Created Date: 16/12/2021 16:28:00 -// Last Modified: 25/05/2022 10:44:25 +// Last Modified: 25/05/2022 15:40:07 // ----- // Copyright (c) 2022