mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 13:47:39 +03:00
Update deps
This commit is contained in:
parent
acc25fcefb
commit
96ffb21228
15 changed files with 124 additions and 85 deletions
2
vendor/github.com/jedisct1/dlog/LICENSE
generated
vendored
2
vendor/github.com/jedisct1/dlog/LICENSE
generated
vendored
|
@ -1,6 +1,6 @@
|
|||
BSD 2-Clause License
|
||||
|
||||
Copyright (c) 2018-2021, Frank Denis
|
||||
Copyright (c) 2018-2023, Frank Denis
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
|
|
18
vendor/github.com/jedisct1/dlog/dlog.go
generated
vendored
18
vendor/github.com/jedisct1/dlog/dlog.go
generated
vendored
|
@ -28,15 +28,13 @@ type globals struct {
|
|||
occurrences uint64
|
||||
}
|
||||
|
||||
var (
|
||||
_globals = globals{
|
||||
logLevel: SeverityLast,
|
||||
appName: "-",
|
||||
lastMessage: "",
|
||||
lastOccurrence: time.Now(),
|
||||
occurrences: 0,
|
||||
}
|
||||
)
|
||||
var _globals = globals{
|
||||
logLevel: SeverityLast,
|
||||
appName: "-",
|
||||
lastMessage: "",
|
||||
lastOccurrence: time.Now(),
|
||||
occurrences: 0,
|
||||
}
|
||||
|
||||
const (
|
||||
SeverityDebug Severity = iota
|
||||
|
@ -209,7 +207,7 @@ func createFileDescriptor() {
|
|||
} else {
|
||||
mode |= os.O_APPEND
|
||||
}
|
||||
outFd, err := os.OpenFile(*_globals.fileName, mode, 0644)
|
||||
outFd, err := os.OpenFile(*_globals.fileName, mode, 0o644)
|
||||
if err == nil {
|
||||
_globals.outFd = outFd
|
||||
}
|
||||
|
|
1
vendor/github.com/jedisct1/dlog/sysdeps_others.go
generated
vendored
1
vendor/github.com/jedisct1/dlog/sysdeps_others.go
generated
vendored
|
@ -1,3 +1,4 @@
|
|||
//go:build !windows
|
||||
// +build !windows
|
||||
|
||||
package dlog
|
||||
|
|
2
vendor/github.com/jedisct1/go-clocksmith/LICENSE
generated
vendored
2
vendor/github.com/jedisct1/go-clocksmith/LICENSE
generated
vendored
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2018-2021 Frank Denis
|
||||
Copyright (c) 2018-2023 Frank Denis
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
2
vendor/github.com/jedisct1/go-dnsstamps/LICENSE
generated
vendored
2
vendor/github.com/jedisct1/go-dnsstamps/LICENSE
generated
vendored
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2018-2021 Frank Denis
|
||||
Copyright (c) 2018-2023 Frank Denis
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
2
vendor/github.com/jedisct1/go-hpke-compact/LICENSE
generated
vendored
2
vendor/github.com/jedisct1/go-hpke-compact/LICENSE
generated
vendored
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* ISC License
|
||||
*
|
||||
* Copyright (c) 2020-2021
|
||||
* Copyright (c) 2020-2023
|
||||
* Frank Denis <j at pureftpd dot org>
|
||||
*
|
||||
* Permission to use, copy, modify, and/or distribute this software for any
|
||||
|
|
2
vendor/github.com/jedisct1/go-minisign/LICENSE
generated
vendored
2
vendor/github.com/jedisct1/go-minisign/LICENSE
generated
vendored
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2018-2021 Frank Denis
|
||||
Copyright (c) 2018-2023 Frank Denis
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
2
vendor/github.com/jedisct1/xsecretbox/LICENSE
generated
vendored
2
vendor/github.com/jedisct1/xsecretbox/LICENSE
generated
vendored
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2018-2021 Frank Denis
|
||||
Copyright (c) 2018-2023 Frank Denis
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
2
vendor/github.com/jedisct1/xsecretbox/sharedkey.go
generated
vendored
2
vendor/github.com/jedisct1/xsecretbox/sharedkey.go
generated
vendored
|
@ -7,7 +7,7 @@ import (
|
|||
"golang.org/x/crypto/curve25519"
|
||||
)
|
||||
|
||||
// SharedKey computes a shared secret compatible with the one used by `crypto_box_xchacha20poly1305``
|
||||
// SharedKey computes a shared secret compatible with the one used by `crypto_box_xchacha20poly1305`
|
||||
func SharedKey(secretKey [32]byte, publicKey [32]byte) ([32]byte, error) {
|
||||
dhKey, err := curve25519.X25519(secretKey[:], publicKey[:])
|
||||
var subKey []byte
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue