crypto

package
v3.9.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 31, 2021 License: MIT Imports: 14 Imported by: 0

Documentation

Overview

Package crypto contains functions to help perform hashing and simple encryption operations

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func PBKDF2

func PBKDF2(password, salt []byte, iter, keylen int, hashFunc crypto.Hash) ([]byte, error)

PBKDF2 - Run the Password-Based Key Derivation Function #2 as defined in RFC 8018 (PKCS #5 v2.1)

func RSADecrypt

func RSADecrypt(key string, in []byte) ([]byte, error)

RSADecrypt - decrypt the ciphertext with the given private key. The key must be a PEM-encoded RSA private key in PKCS#1, ASN.1 DER form, typically beginning with "RSA PRIVATE KEY". The input text must be plain ciphertext, not base64-encoded.

func RSADerivePublicKey

func RSADerivePublicKey(privateKey []byte) ([]byte, error)

RSADerivePublicKey -

func RSAEncrypt

func RSAEncrypt(key string, in []byte) ([]byte, error)

RSAEncrypt - use the given public key to encrypt the given plaintext. The key should be a PEM-encoded RSA public key in PKIX, ASN.1 DER form, typically beginning with "PUBLIC KEY". PKCS#1 format is also supported as a fallback. The output will not be encoded, so consider base64-encoding it for display.

func RSAGenerateKey

func RSAGenerateKey(bits int) ([]byte, error)

RSAGenerateKey -

func StrToHash

func StrToHash(hash string) (crypto.Hash, error)

StrToHash - find a hash given a certain string

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL