diff options
author | Ingela Anderton Andin <[email protected]> | 2011-03-17 18:30:57 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2011-03-24 10:56:56 +0100 |
commit | fbaa5e3ddf028ba0e2b58a19609817ee17b10c6f (patch) | |
tree | ffb4a7794f04035fae98513bcb982a9476c5af82 /lib/ssl/src/ssl_handshake.hrl | |
parent | dea83e25a671b0bc2661582c3227c1728d69bfea (diff) | |
download | otp-fbaa5e3ddf028ba0e2b58a19609817ee17b10c6f.tar.gz otp-fbaa5e3ddf028ba0e2b58a19609817ee17b10c6f.tar.bz2 otp-fbaa5e3ddf028ba0e2b58a19609817ee17b10c6f.zip |
Implemented encode/decode support for ssh public key files
Diffstat (limited to 'lib/ssl/src/ssl_handshake.hrl')
-rw-r--r-- | lib/ssl/src/ssl_handshake.hrl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/ssl/src/ssl_handshake.hrl b/lib/ssl/src/ssl_handshake.hrl index 8ae4d2332e..fb0ebac7d1 100644 --- a/lib/ssl/src/ssl_handshake.hrl +++ b/lib/ssl/src/ssl_handshake.hrl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2007-2010. All Rights Reserved. +%% Copyright Ericsson AB 2007-2011. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -29,9 +29,8 @@ -include_lib("public_key/include/public_key.hrl"). -type algo_oid() :: ?'rsaEncryption' | ?'id-dsa'. --type public_key() :: #'RSAPublicKey'{} | integer(). -type public_key_params() :: #'Dss-Parms'{} | term(). --type public_key_info() :: {algo_oid(), public_key(), public_key_params()}. +-type public_key_info() :: {algo_oid(), #'RSAPublicKey'{} | integer() , public_key_params()}. -record(session, { session_id, |