mirror of
https://github.com/jeremyd/ergo.git
synced 2026-08-03 12:43:05 -07:00
eb43ff69c4
Rebuilt the nostr registration feature cleanly on top of current ergo mainline (origin/master), dropping the stale ergo reversions that were entangled in the original squashed branch. - New irc/nostr package: NIP-04/NIP-17 DMs, NIP-05 resolution, relay connect/auth, and identifier helpers. - Registration/verification via nostr: parseCallback auto-detects nostr identifiers (NIP-05, npub, hex pubkey) and dispatches a verification DM. - Nostr-based cloaked hostnames for accounts (opt-in via ip-cloaking.nostr-hostnames), applied at the account-cloak sites. - Config: accounts.registration.nostr-verification and the nostr-hostnames cloak option, with matching default.yaml and help text. - Adds github.com/nbd-wtf/go-nostr and vendored dependencies.
27 lines
874 B
Go
27 lines
874 B
Go
//go:build amd64 || arm64
|
|
|
|
package websocket
|
|
|
|
func mask(b []byte, key uint32) uint32 {
|
|
// TODO: Will enable in v1.9.0.
|
|
return maskGo(b, key)
|
|
/*
|
|
if len(b) > 0 {
|
|
return maskAsm(&b[0], len(b), key)
|
|
}
|
|
return key
|
|
*/
|
|
}
|
|
|
|
// @nhooyr: I am not confident that the amd64 or the arm64 implementations of this
|
|
// function are perfect. There are almost certainly missing optimizations or
|
|
// opportunities for simplification. I'm confident there are no bugs though.
|
|
// For example, the arm64 implementation doesn't align memory like the amd64.
|
|
// Or the amd64 implementation could use AVX512 instead of just AVX2.
|
|
// The AVX2 code I had to disable anyway as it wasn't performing as expected.
|
|
// See https://github.com/nhooyr/websocket/pull/326#issuecomment-1771138049
|
|
//
|
|
//go:noescape
|
|
//lint:ignore U1000 disabled till v1.9.0
|
|
func maskAsm(b *byte, len int, key uint32) uint32
|