Skip to content
View reuniware's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report reuniware

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Forex-Rates-Viewer Public

    Send rates from Metatrader 5 to Dot Net C# Application !

    C# 1

  2. Kotlin-LocaleManager Public

    LocaleManager converted from Java to Kotlin

    Kotlin 4 2

  3. Android Kotlin : SHA-1 Hash and AES ...
    1
    fun hashAndSavePasswordHash(context: Context, clearPassword: String) {
    2
        val digest = MessageDigest.getInstance("SHA-1")
    3
        val result = digest.digest(clearPassword.toByteArray(Charsets.UTF_8))
    4
        val sb = StringBuilder()
    5
        for (b in result) {
  4. (Android/Kotlin) Encrypt and Decrypt...
    1
    
                  
    2
    fun encrypt(context:Context, strToEncrypt: String): ByteArray {
    3
        val plainText = strToEncrypt.toByteArray(Charsets.UTF_8)
    4
        val keygen = KeyGenerator.getInstance("AES")
    5
        keygen.init(256)
  5. Log UDP and TCP requests (Python/Net...
    1
    # apt-get install build-essential python-dev libnetfilter-queue-dev
    2
    # pip install NetfilterQueue
    3
    # sudo apt-get install python-netfilterqueue
    4
    # iptables -F
    5
    # iptables -F -t nat
  6. Google Oboe Audio Recorder
    1
    //
    2
    // Created by Reuniware on 29/06/2020.
    3
    //
    4
    #include <jni.h>
    5
    #include <string>