]>
zdv2.bktei.com Git - BK-2020-03.git/blob - unitproc/bktemp-checkAgePubkey
   2 # Desc: Checks if string is an age-compatible public key string 
   4     # Desc: Checks if string is an age-compatible pubkey 
   5     # Usage: checkAgePubkey [str pubkey] 
   8     # Output: return code 0: string is age-compatible pubkey 
   9     #         return code 1: string is NOT an age-compatible pubkey 
  10     #         age stderr (ex: there is stderr if invalid string provided) 
  11     # Depends: age (v0.1.0-beta2; https://github.com/FiloSottile/age/releases/tag/v1.0.0-beta2 ) 
  15     if echo "test" | age 
-a -r "$argPubkey" 1>/dev
/null
; then 
  22 #==BEGIN sample code== 
  23 myKey
="age18nnr0nm9fg44elkhrrcn3uhalvug04swas6su464k2kx92l05v6s4exfcz"; 
  24 if checkAgePubkey 
"$myKey"; then echo "Is an age-compatible public key:$myKey"; else echo "Is NOT an age-compatible public key:$myKey"; fi 
  25 myKey2
="blahblahblah"; 
  26 if checkAgePubkey 
"$myKey2"; then echo "Is an age-compatible public key:$myKey2"; else echo "Is NOT an age-compatible public key:$myKey2"; fi 
  29 # Author: Steven Baltakatei Sandoval