1. Список говнокодов пользователя morph

    Всего: 2

  2. Java / Говнокод #20122

    −4

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    8. 8
    9. 9
    Maven
    
    <dependency>
        <groupId>javax.validation</groupId>
        <artifactId>validation-api</artifactId>
        <version>1.0.0.GA</version>
        <classifier>sources</classifier>
        <scope>provided</scope>
    </dependency>

    Кто-то изобретательный прицепил исходники библиотеки к проекту таким способом, чтобы переходить к ним при разработке.

    morph, 02 Июня 2016

    Комментарии (5)
  3. Java / Говнокод #20104

    −26

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    36. 36
    37. 37
    public String encrypt(String str) {
        try {
            CertificateFactory certificateFactory = CertificateFactory.getInstance("X.509");
            ClassPathResource cpr = new ClassPathResource("beeline_cert.cer");
            FileInputStream certFile = new FileInputStream(cpr.getFile());
            java.security.cert.Certificate certificate = certificateFactory.generateCertificate(certFile);
            certFile.close();
            ecipher = Cipher.getInstance("RSA/ECB/PKCS1Padding");
            ecipher.init(Cipher.ENCRYPT_MODE, certificate);
            // Encode the string into bytes using utf-8
            byte[] utf8 = str.getBytes("UTF8");
            // Encrypt
            byte[] enc = ecipher.doFinal(utf8);
    
            // Encode bytes to base64 to get a string
            logger.debug("Base64.encodeBase64URLSafeString " + Base64.encodeBase64URLSafeString(enc));
            return Base64.encodeBase64URLSafeString(enc);
        } catch (FileNotFoundException e) {
            logger.error("FileNotFoundException", e);
        } catch (CertificateException e) {
            logger.error("CertificateException", e);
        } catch (NoSuchAlgorithmException e) {
            logger.error("NoSuchAlgorithmException", e);
        } catch (NoSuchPaddingException e) {
            logger.error("NoSuchPaddingException", e);
        } catch (BadPaddingException e) {
            logger.error("BadPaddingException", e);
        } catch (IllegalBlockSizeException e) {
            logger.error("IllegalBlockSizeException", e);
        } catch (InvalidKeyException e) {
            logger.error("InvalidKeyException", e);
        } catch (IOException e) {
            logger.error("IOException", e);
        }
    
        return null;
    }

    Нашел такой кладезь в одном из legacy-проектов. Книжку можно писать с таких примеров.

    morph, 31 Мая 2016

    Комментарии (7)