mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-08-31 21:44:03 +03:00
FILE / ScuroNeko/mtg
wrappers/streamcipher_pool.go
Исходный файл и его история в репозитории.
17 lines
200 B
Go
17 lines
200 B
Go
package wrappers
|
|
|
|
import (
|
|
"bytes"
|
|
"sync"
|
|
)
|
|
|
|
var streamCipherBufferPool sync.Pool
|
|
|
|
func init() {
|
|
streamCipherBufferPool = sync.Pool{
|
|
New: func() interface{} {
|
|
return &bytes.Buffer{}
|
|
},
|
|
}
|
|
}
|