This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vue.js 2 hrs 44 mins βββββββββββββββββββββ 40.2% | |
Go 1 hr 10 mins βββββββββββββββββββββ 17.3% | |
XML 33 mins βββββββββββββββββββββ 8.1% | |
PHP 31 mins βββββββββββββββββββββ 7.8% | |
TypeScript 30 mins βββββββββββββββββββββ 7.5% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-08-28T03:50:07.943Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# !!!!! run as sudo first | |
#Code reference by https://github.com/laravel/homestead/issues/610#issuecomment-430679914 | |
PHP_MSSQL_DRIVERS=Ubuntu18-7.2 | |
PDO_SQLSRV_VER=v5.6.1 | |
# Download and extract phpmysql drivers | |
cd ~/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"crypto/aes" | |
"crypto/cipher" | |
"crypto/md5" | |
"encoding/hex" | |
"fmt" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright 2013 The Go Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style | |
// license that can be found in the LICENSE file. | |
// ECB AES test vectors. | |
// See U.S. National Institute of Standards and Technology (NIST) | |
// Special Publication 800-38A, ``Recommendation for Block Cipher | |
// Modes of Operation,'' 2001 Edition, pp. 24-29. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright 2013 The Go Authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style | |
// license that can be found in the LICENSE file. | |
// Electronic Code Book (ECB) mode. | |
// ECB provides confidentiality by assigning a fixed ciphertext block to each | |
// plaintext block. | |
// See NIST SP 800-38A, pp 08-09 |
NewerOlder