コード例 #1
0
ファイル: evp_cipher_context.go プロジェクト: partkyle/gossl
func (self *CipherCtx) Cipher() *Cipher {
	return newCipher(C.EVP_CIPHER_CTX_cipher(self.evp_cipher_ctx))
}
コード例 #2
0
ファイル: evp_cipher_context.go プロジェクト: runcom/gossl
func (ctx *CipherCtx) Cipher() *Cipher {
	return newCipher(C.EVP_CIPHER_CTX_cipher(ctx.evp_cipher_ctx))
}