Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for Encrypt_key (0.1 sec)

  1. internal/kms/kes.go

    	return c.client.ImportKey(ctx, keyID, &kes.ImportKeyRequest{
    		Key: bytes,
    	})
    }
    
    // EncryptKey Encrypts and authenticates a (small) plaintext with the cryptographic key
    // The plaintext must not exceed 1 MB
    func (c *kesConn) EncryptKey(keyID string, plaintext []byte, ctx Context) ([]byte, error) {
    	ctxBytes, err := ctx.MarshalText()
    	if err != nil {
    		return nil, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/crypto/aes/asm_ppc64x.s

    // https://github.com/dot-asm/cryptogams/blob/master/ppc/aesp8-ppc.pl
    
    // Some function names were changed to be consistent with Go function
    // names. For instance, function aes_p8_set_{en,de}crypt_key become
    // set{En,De}cryptKeyAsm. I also split setEncryptKeyAsm in two parts
    // and a new session was created (doEncryptKeyAsm). This was necessary to
    // avoid arguments overwriting when setDecryptKeyAsm calls setEncryptKeyAsm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top