summaryrefslogtreecommitdiff
path: root/src/pkg/crypto/des/example_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/crypto/des/example_test.go')
-rw-r--r--src/pkg/crypto/des/example_test.go25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/pkg/crypto/des/example_test.go b/src/pkg/crypto/des/example_test.go
deleted file mode 100644
index 336b59375..000000000
--- a/src/pkg/crypto/des/example_test.go
+++ /dev/null
@@ -1,25 +0,0 @@
-// Copyright 2013 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package des_test
-
-import "crypto/des"
-
-func ExampleNewTripleDESCipher() {
- // NewTripleDESCipher can also be used when EDE2 is required by
- // duplicating the first 8 bytes of the 16-byte key.
- ede2Key := []byte("example key 1234")
-
- var tripleDESKey []byte
- tripleDESKey = append(tripleDESKey, ede2Key[:16]...)
- tripleDESKey = append(tripleDESKey, ede2Key[:8]...)
-
- _, err := des.NewTripleDESCipher(tripleDESKey)
- if err != nil {
- panic(err)
- }
-
- // See crypto/cipher for how to use a cipher.Block for encryption and
- // decryption.
-}