Skip to content

Commit 178321e

Browse files
committed
Inline the docs in crypto/.
It's all fairly simple one-liners, there is no benefit to keeping them separate.
1 parent bbf209b commit 178321e

File tree

6 files changed

+5
-52
lines changed

6 files changed

+5
-52
lines changed

crypto/keys/doc.go

Lines changed: 0 additions & 16 deletions
This file was deleted.

crypto/keys/handlers.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
// Package keys provides access to public and private keys for signing and verification of signatures.
1516
package keys
1617

1718
import (

crypto/keys/pkcs11/doc.go

Lines changed: 0 additions & 16 deletions
This file was deleted.

crypto/keys/pkcs11/pkcs11.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
// See the License for the specific language governing permissions and
1515
// limitations under the License.
1616

17+
// Package pkcs11 provides access to private keys using a PKCS#11 interface.
1718
package pkcs11
1819

1920
import (

crypto/keys/testonly/doc.go

Lines changed: 0 additions & 20 deletions
This file was deleted.

crypto/keys/testonly/keys.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
// Package testonly contains code and data that should only be used by tests.
16+
// Production code MUST NOT depend on anything in this package. This will be
17+
// enforced by tools where possible.
1518
package testonly
1619

1720
import (

0 commit comments

Comments
 (0)