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
| ; file saved with utf8-with-BOM | |
| ; | |
| ; NSIS Installer Script for OBS Studio, https://obsproject.com/ | |
| ; | |
| ; This installer script is designed only for the release process | |
| ; of OBS Studio. It requires a lot of files to be in exactly the | |
| ; right places. If you're making a fork, it's strongly suggested | |
| ; that you make your own installer. | |
| ; | |
| ; If you choose to use this script anyway, be absolutely sure you |
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 "fmt" | |
| import "unicode/utf16" | |
| import "unicode/utf8" | |
| import "bytes" | |
| func main() { | |
| b := []byte{ |
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 ( | |
| "context" | |
| "fmt" | |
| "net" | |
| "net/http" | |
| ) | |
| func server1() { |
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/cipher" | |
| ) | |
| type ecb struct { | |
| b cipher.Block | |
| blockSize int | |
| } |