-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathdoc.go
More file actions
25 lines (19 loc) · 674 Bytes
/
doc.go
File metadata and controls
25 lines (19 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright 2017, Project ArteMisc
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
/*
Package Godium provides implementations for the primitives present in the
Libsodium library.
The library is fully written in Go (or go-assembly), and based on interfaces
found in Go's standard library.
*/
package godium // import "go.artemisc.eu/godium"
// Version information, represents the latest libsodium version that this build
// is compatible with.
const (
VersionMajor = 10
VersionMinor = 0
Version = "1.0.15"
)