X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=src%2Fnncp.go;h=b56be2958d2cd811e06ddbf9ac59d62bedee0cc7;hb=55b235efb2f86748c0466d50cdfecf685b72ab71;hp=93e4446aa6e87425fd09764a719219ef2d84970b;hpb=271870ad4f56253e0918f673b90615e4749cf201;p=nncp.git diff --git a/src/nncp.go b/src/nncp.go index 93e4446..b56be29 100644 --- a/src/nncp.go +++ b/src/nncp.go @@ -1,6 +1,6 @@ /* NNCP -- Node to Node copy, utilities for store-and-forward data exchange -Copyright (C) 2016-2020 Sergey Matveev +Copyright (C) 2016-2021 Sergey Matveev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -19,6 +19,7 @@ along with this program. If not, see . package nncp import ( + "encoding/base32" "runtime" ) @@ -36,8 +37,12 @@ You should have received a copy of the GNU General Public License along with this program. If not, see .` ) +const Base32Encoded32Len = 52 + var ( - Version string = "UNKNOWN" + Version string = "8.0.1" + + Base32Codec *base32.Encoding = base32.StdEncoding.WithPadding(base32.NoPadding) ) func VersionGet() string { @@ -46,7 +51,7 @@ func VersionGet() string { func UsageHeader() string { return VersionGet() + ` -Copyright (C) 2016-2020 Sergey Matveev +Copyright (C) 2016-2021 Sergey Matveev License GPLv3: GNU GPL version 3 This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.