tobiaskaminsky 7 жил өмнө
parent
commit
ff7cf4ad12

+ 1 - 1
src/androidTest/java/com/owncloud/android/util/EncryptionTestIT.java

@@ -153,7 +153,7 @@ public class EncryptionTestIT {
         keyGen.initialize(2048, new SecureRandom());
         KeyPair keyPair = keyGen.generateKeyPair();
 
-        assertFalse(CsrHelper.generateCsrPemEncodedString(keyPair).isEmpty());
+        assertFalse(CsrHelper.generateCsrPemEncodedString(keyPair, "").isEmpty());
         assertFalse(EncryptionUtils.encodeBytesToBase64String(keyPair.getPublic().getEncoded()).isEmpty());
     }
 

+ 1 - 1
src/main/java/com/owncloud/android/ui/dialog/SetupEncryptionDialogFragment.java

@@ -290,7 +290,7 @@ public class SetupEncryptionDialogFragment extends DialogFragment {
                 PrivateKey privateKey = keyPair.getPrivate();
 
                 // create CSR
-                String urlEncoded = CsrHelper.generateCsrPemEncodedString(keyPair);
+                String urlEncoded = CsrHelper.generateCsrPemEncodedString(keyPair, account.name);
 
                 SendCSROperation operation = new SendCSROperation(urlEncoded);
                 RemoteOperationResult result = operation.execute(account, getContext());

+ 6 - 4
src/main/java/com/owncloud/android/utils/CsrHelper.java

@@ -34,13 +34,14 @@ public class CsrHelper {
      * Create the certificate signing request (CSR) from private and public keys
      *
      * @param keyPair the KeyPair with private and public keys
+     * @param userId
      * @return PKCS10CertificationRequest with the certificate signing request (CSR) data
      * @throws IOException thrown if key cannot be created
      * @throws OperatorCreationException thrown if contentSigner cannot be build
      */
-    private static PKCS10CertificationRequest generateCSR(KeyPair keyPair) throws IOException,
+    private static PKCS10CertificationRequest generateCSR(KeyPair keyPair, String userId) throws IOException,
     OperatorCreationException {
-        String principal = "CN=www.nextcloud.com, O=Nextcloud, L=Stuttgart, ST=Baden-Wuerttemberg, C=DE";
+        String principal = "CN=" + userId + ", O=Nextcloud, L=Stuttgart, ST=Baden-Wuerttemberg, C=DE";
         AsymmetricKeyParameter privateKey = PrivateKeyFactory.createKey(keyPair.getPrivate().getEncoded());
         AlgorithmIdentifier signatureAlgorithm = new DefaultSignatureAlgorithmIdentifierFinder().find("SHA1WITHRSA");
         AlgorithmIdentifier digestAlgorithm = new DefaultDigestAlgorithmIdentifierFinder().find("SHA-1");
@@ -55,8 +56,9 @@ public class CsrHelper {
         return csrBuilder.build(signer);
     }
 
-    public static String generateCsrPemEncodedString(KeyPair keyPair) throws IOException, OperatorCreationException {
-        PKCS10CertificationRequest csr = CsrHelper.generateCSR(keyPair);
+    public static String generateCsrPemEncodedString(KeyPair keyPair, String userId) 
+            throws IOException, OperatorCreationException {
+        PKCS10CertificationRequest csr = CsrHelper.generateCSR(keyPair, userId);
         byte[] derCSR = csr.getEncoded();
         return "-----BEGIN CERTIFICATE REQUEST-----\n" + android.util.Base64.encodeToString(
                 derCSR, android.util.Base64.NO_PADDING | android.util.Base64.NO_WRAP)