src/bookofnim/deepdives/crypto

Source   Edit  

cryptography

bookmark

TLDR

  • random shouldnt be used for cryptographic purposes
  • mersenne is deprecated; use random instead
  • hashes
    • overload hash proc using !$ and !& to enable hashing of custom datatypes

TODOs

links

ssl_certs

  • scans for SSL certs in SSL_CERT_FILE and SSL_CERT_DIR
  • come back later

env vars

  • SSL_CERT_FILE
  • SSL_CERT_DIR

hashes

  • efficient 1-way hashing of nim types

hashes procs

  • !& start/mix a hash value of a new datatype
  • !$ finish the hash value of a new datatype
  • hash of x
  • hashIgnoreStyle of X
  • hashIgnoreCase of x
  • hashData X an array of bytes of size int
  • hashIdentity of X
  • hashWangYi1 of 64-bit ints

base64

  • base64 en/decoder for strings and lists of ints/chars

base64 procs

  • encode to base64; pass true for URL & filesystem safe encoding
  • decode from bas64; leading whitespace is ignored
  • encodeMime into base64 as lines; something to do with email MIME format
  • initDecodeTable dunno

Types

SomeObject = object
  
Source   Edit  

Lets

objectSome = SomeObject(first: "1st", second: "2nd")
Source   Edit  

Consts

myString = "my string"
Source   Edit  

Procs

proc hash(self: SomeObject): Hash {....raises: [], tags: [], forbids: [].}
overload hash for custom types note the use of xAtom Source   Edit  

Iterators

iterator items(self: SomeObject): Hash {....raises: [], tags: [], forbids: [].}
each field of SomeObject that should be used to compute the hash value Source   Edit