Skip to content
View glides's full-sized avatar
🌮
Eating tacos...
🌮
Eating tacos...
  • Glitchware, Inc.
  • Your EIP register

Block or report glides

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. Encrypt AES-256 in Boo Encrypt AES-256 in Boo
    1
    # AES-256 with key encryption function Boo Lang
    2
    
                  
    3
    public static def encrypt(cleartext as (byte), key as string) as (byte):
    4
            using aesAlg = Aes.Create():
    5
                salt = array(byte,[0x12,0x35,0x56,0x78,0x90,0xAB,0xAD,0xEF,0xDD,0x31])
  2. Decrypt AES-256 in Boo Decrypt AES-256 in Boo
    1
    # AES-256 with key decryption function Boo Lang
    2
    
                  
    3
    public static def decrypt(ciphertext as (byte), key as string) as (byte):
    4
            using aesAlg = Aes.Create():
    5
                salt = array(byte,[0x12,0x35,0x56,0x78,0x90,0xAB,0xAD,0xEF,0xDD,0x31])