mirror of
https://github.com/go-i2p/go-i2p.git
synced 2025-07-05 06:05:16 -04:00
44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
package common
|
|
|
|
import (
|
|
"github.com/bounce-chat/go-i2p/lib/common/base32"
|
|
"github.com/bounce-chat/go-i2p/lib/common/base64"
|
|
"github.com/bounce-chat/go-i2p/lib/crypto"
|
|
"strings"
|
|
)
|
|
|
|
//
|
|
// A Destination is a KeysAndCert with functionallity
|
|
// for generating base32 and base64 addresses.
|
|
//
|
|
type Destination []byte
|
|
|
|
func (destination Destination) PublicKey() (crypto.PublicKey, error) {
|
|
return KeysAndCert(destination).PublicKey()
|
|
}
|
|
|
|
func (destination Destination) SigningPublicKey() (crypto.SigningPublicKey, error) {
|
|
return KeysAndCert(destination).SigningPublicKey()
|
|
}
|
|
|
|
func (destination Destination) Certificate() (Certificate, error) {
|
|
return KeysAndCert(destination).Certificate()
|
|
}
|
|
|
|
//
|
|
// Generate the I2P base32 address for this Destination.
|
|
//
|
|
func (destination Destination) Base32Address() (str string) {
|
|
hash := crypto.SHA256(destination)
|
|
str = strings.Trim(base32.EncodeToString(hash[:]), "=")
|
|
str = str + ".b32.i2p"
|
|
return
|
|
}
|
|
|
|
//
|
|
// Generate the I2P base64 address for this Destination.
|
|
//
|
|
func (destination Destination) Base64() string {
|
|
return base64.EncodeToString(destination)
|
|
}
|