Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. # Start with a SEQUENCE
  2. asn1=SEQUENCE:pubkeyinfo
  3.  
  4. # pubkeyinfo contains an algorithm identifier and the public key wrapped
  5. # in a BIT STRING
  6. [pubkeyinfo]
  7. algorithm=SEQUENCE:rsa_alg
  8. pubkey=BITWRAP,SEQUENCE:rsapubkey
  9.  
  10. # algorithm ID for RSA is just an OID and a NULL
  11. [rsa_alg]
  12. algorithm=OID:rsaEncryption
  13. parameter=NULL
  14.  
  15. # Actual public key: modulus and exponent
  16. [rsapubkey]
  17. n=INTEGER:29129463609326322559521123136222078780585451208149138547799121083622333250646678767769126248182207478527881025116332742616201890576280859777513414460842754045651093593251726785499360828237897586278068419875517543013545369871704159718105354690802726645710699029936754265654381929650494383622583174075805797766685192325859982797796060391271817578087472948205626257717479858369754502615173773514087437504532994142632207906501079835037052797306690891600559321673928943158514646572885986881016569647357891598545880304236145548059520898133142087545369179876065657214225826997676844000054327141666320553082128424707948750331
  18.  
  19. e=INTEGER:3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement