Skip to content

Instantly share code, notes, and snippets.

View raffis's full-sized avatar
🍌

raffis

🍌
View GitHub Profile
@raffis
raffis / go
Created October 9, 2019 13:59
migrate file based acl pre balloon v2.7
package main
import "fmt"
import "sync"
import "net/http"
import "io/ioutil"
import "encoding/json"
import "encoding/base64"
import "bytes"
@raffis
raffis / php
Created October 8, 2019 07:50
pure md5 algorithm written in php with serialization support
<?php
namespace Hash;
/**
* PHP implementation of the MD5 algorithm according RFC-1321.
* This implementation has support for hash context serialization which the php inbuilt HashContext has not.
*/
class MD5
{
/**