Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExampleNewTripleDESCipher (0.16 sec)

  1. src/crypto/des/example_test.go

    // 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 697 bytes
    - Viewed (0)
Back to top