Giter Site home page Giter Site logo

sdosenvironment's People

Contributors

gabriel-oriaderueda avatar rafaelfernandezalv avatar sdosrafaelfernandez avatar

Watchers

 avatar  avatar

Forkers

ajpallares

sdosenvironment's Issues

Wrong encoding/decoding of default encryption password

Hello,

I found an issue in the code of SDOSEnvironment when using the -b flag in the SDOSEnvironment Build Phases script. The problem seems to be that the function generateDefaultPassword() returns an empty string, what causes a crash in the RNCryptor dependency.

This is the code where the error occurs:

private func generateDefaultPassword(bundle: Bundle = Bundle.main) -> String {
     let bundle = bundle.bundleIdentifier
     var password = ""
     var bytes = [UInt8]()
     if let bundle = bundle {
         let characters = Array(bundle)
         characters.forEach { (character) in
             var char = character.asciiValue ?? 0
             char += 7
             bytes.append(char)
         }
     }
     if let string = String(bytes: bytes, encoding: .utf8) {
         password = string
     }
        
     return password
 }

I believe the problem is that this code encodes using ascii but decodes using utf8. Changing the utf8 decoding to ascii should resolve the problem but I am not sure whether this is the intended behaviour.

Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.