Recherche…


Syntaxe

  • func (enc * base64.Encoding) Encode (dst, src [] byte)
  • func (enc * base64.Encoding) Decode (dst, src [] octet) (n int, erreur err)
  • func (enc * base64.Encoding) EncodeToString (src [] byte) chaîne
  • func (enc * base64.Encoding) DecodeString (s string) ([] byte, error)

Remarques

Le package encoding/base64 contient plusieurs encodeurs intégrés . La plupart des exemples de ce document utiliseront base64.StdEncoding , mais tout encodeur ( URLEncoding , RawStdEncodign , votre propre encodeur personnalisé, etc.) peut être remplacé.

Codage

const foobar = `foo bar`
encoding := base64.StdEncoding
encodedFooBar := make([]byte, encoding.EncodedLen(len(foobar)))
encoding.Encode(encodedFooBar, []byte(foobar))
fmt.Printf("%s", encodedFooBar)
// Output: Zm9vIGJhcg==

Cour de récréation

Encodage d'une chaîne

str := base64.StdEncoding.EncodeToString([]byte(`foo bar`))
fmt.Println(str)
// Output: Zm9vIGJhcg==

Cour de récréation

Décodage

encoding := base64.StdEncoding
data := []byte(`Zm9vIGJhcg==`)
decoded := make([]byte, encoding.DecodedLen(len(data)))
n, err := encoding.Decode(decoded, data)
if err != nil {
    log.Fatal(err)
}

// Because we don't know the length of the data that is encoded
// (only the max length), we need to trim the buffer to whatever
// the actual length of the decoded data was.
decoded = decoded[:n]

fmt.Printf("`%s`", decoded)
// Output: `foo bar`

Cour de récréation

Décoder une chaîne

decoded, err := base64.StdEncoding.DecodeString(`biws`)
if err != nil {
    log.Fatal(err)
}

fmt.Printf("%s", decoded)
// Output: n,,

Cour de récréation



Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow