Skip to content
View angel-tech1's full-sized avatar
  • México City
  • 09:39 (UTC -06:00)

Block or report angel-tech1

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. sdm-portable sdm-portable Public

    StrongDM desktop gui for linux

    Kotlin

  2. GameOfLife GameOfLife Public

    Rust

  3. algorithms-rs algorithms-rs Public

    Rust

  4. Matrix rain effect in Rust Matrix rain effect in Rust
    1
    use std::io::{stdout, Write};
    2
    use std::thread;
    3
    use std::time::Duration;
    4
    
                  
    5
    const SYMBOLS: &str = "ハミヒーウシナモニサワツオリアホテマケメエカキムユラセネスタヌヘ";
  5. Signing and verifying signatures wit... Signing and verifying signatures with RSA-256 public/private PEM key pairs in Scala
    1
    ## How to generate the RSA keys
    2
    
                  
    3
    1. `openssl genrsa -out rsakey.pem 2048`
    4
    2. `openssl pkcs8 -in rsakey.pem -topk8 -nocrypt -out private.pem`
    5
    3. `openssl pkey -in private.pem -pubout -out public.pem`