Changes between Initial Version and Version 1 of jazz/19-09-24


Ignore:
Timestamp:
Sep 24, 2019, 10:19:34 PM (6 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/19-09-24

    v1 v1  
     1= 2019-09-24 =
     2
     3== base64 ==
     4
     5* Objective: create Base64 encoded "username:password" string for JIRA API
     6  * https://developer.atlassian.com/server/jira/platform/basic-authentication/
     7* Reference:
     8  * [1] https://www.base64encode.net/python-base64-b64encode
     9  * [2] https://github.com/base64encode/examples/blob/master/base64encode.py
     10  * [3] https://superuser.com/questions/120796/how-to-encode-base64-via-command-line
     11{{{
     12#!sh
     13echo -n "abc" | openssl base64
     14}}}
     15{{{
     16#!python
     17import base64
     18print base64.b64encode "abc"
     19}}}