-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
security changes #342
security changes #342
Conversation
pankinkun
commented
Sep 26, 2024
- move server keys to android-core resourcem -> allowing transport to utilize the keys
- create transport security to for key management and generation using signal EC KeyPair
- rename client security files using SecurityUtils static variables
- move server keys to android-core resourcem -> allowing transport to utilize the keys - create transport security to for key management and generation using signal EC KeyPair - rename client security files using SecurityUtils static variables
@@ -33,6 +33,7 @@ | |||
import java.util.concurrent.CompletableFuture; | |||
import java.util.logging.Logger; | |||
|
|||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove
@@ -85,6 +103,7 @@ protected void onCreate(Bundle savedInstanceState) { | |||
fragments.add(new TitledFragment(getString(R.string.logs), new LogFragment())); | |||
TabLayout tabLayout = findViewById(R.id.tabs); | |||
viewPager2 = findViewById(R.id.view_pager); | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove
@@ -411,7 +411,7 @@ public BundleExchangeCounts doExchangeWithTransport(String deviceAddress, String | |||
} | |||
|
|||
private int uploadBundle(BundleExchangeServiceGrpc.BundleExchangeServiceStub stub) throws RoutingExceptions.ClientMetaDataFileException, IOException, InvalidKeyException, GeneralSecurityException { | |||
BundleDTO toSend = generateBundleForTransmission(); | |||
BundleDTO toSend = generateBundleForTransmission(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
extra space
mysignal/app/build.gradle
Outdated
@@ -4,11 +4,11 @@ plugins { | |||
} | |||
|
|||
android { | |||
compileSdk 34 | |||
compileSdk 33 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we still want to do this?
- move server keys to android-core resourcem -> allowing transport to utilize the keys - create transport security to for key management and generation using signal EC KeyPair - rename client security files using SecurityUtils static variables