KeyPair represents PEM encoded RSA key pair.
| 16 | |
| 17 | // KeyPair represents PEM encoded RSA key pair. |
| 18 | type KeyPair struct { |
| 19 | Public []byte |
| 20 | Private []byte |
| 21 | } |
| 22 | |
| 23 | // KiteKey represents JWT token used in kite authentication, |
| 24 | // also known as kite.key. |
nothing calls this directly
no outgoing calls
no test coverage detected